sudo vim /private/var/db/launchd.db/com.apple.launchd/overrides.plist
Add the following code,as entries like:
<key>com.macpaw.CleanMyMac-setapp.HealthMonitor</key>
<dict>
<key>Disabled</key>
<true/>
| console.error | |
| [Vue warn]: Unknown custom element: <fa> - did you register the component correctly? For recursive components, make sure to provide the "name" option. | |
| found in | |
| ---> <PictureGallery> | |
| <Index> | |
| <Root> | |
| at warn (node_modules/vue/dist/vue.common.dev.js:630:15) |
| Markdown 13 mins βββββββββββββββββββββ 97.4% | |
| TypeScript 0 secs βββββββββββββββββββββ 2.6% |
| // Before | |
| export default { | |
| build: { | |
| extend(config, { isDev, isClient }) { | |
| if (isDev && isClient) { | |
| config.module.rules.push({ | |
| enforce: 'pre', | |
| test: /\.(js|vue)$/, | |
| loader: 'eslint-loader', |
| ''' | |
| author: | |
| @tangjeff0 | |
| https://www.notion.so/tangjeff0/Public-Home-0e2636bd409b454ea64079ad8213491f | |
| inspired by: https://praxis.fortelabs.co/p-a-r-a-iii-building-an-idea-generator-400347ef3bb6/ | |
| with help from: https://medium.com/@jamiealexandre/introducing-notion-py-an-unofficial-python-api-wrapper-for-notion-so-603700f92369 | |
| credits: | |
| @jamiealexandre |
| $ kubectl get all # 1 | |
| β°β kubectl get all | |
| NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE | |
| service/kubernetes ClusterIP 10.96.0.1 <none> 443/TCP 4d18h | |
| $ kubectl create deployment hello-minikube --image=k8s.gcr.io/echoserver:1.10 # 2 | |
| β°β kubectl create deployment hello-minikube --image=k8s.gcr.io/echoserver:1.10 | |
| deployment.apps/hello-minikube created | |
| $ kubectl get all # 3 |
sudo vim /private/var/db/launchd.db/com.apple.launchd/overrides.plist
Add the following code,as entries like:
<key>com.macpaw.CleanMyMac-setapp.HealthMonitor</key>
<dict>
<key>Disabled</key>
<true/>
| <template> | |
| <div> | |
| <div> | |
| <div v-for="(panel, index) in panelList" :key="index" class="panel"> | |
| <img class="" :src="panel.imagePath" /> /// Approach 1 | |
| <img class="" :src="require(panel.imagePath2)" /> /// Approach 2 WRONG!!! WEBPACK HATES YOU | |
| <div class=""> | |
| <div class=""> | |
| {{ panel.title }} | |
| </div> |
| <template> | |
| <div> | |
| <p class="blue_text">{{ msg }}</p> | |
| </div> | |
| </template> | |
| <script> | |
| export default { |
| *.ipa | |
| *.app.dSYM.zip |
| default_platform(:ios) | |
| platform :ios do | |
| before_all do |lane| | |
| increment_build_number | |
| end | |
| # Beta TestFlight Lane | |
| lane :testflight do |