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) |
Python 17 hrs 41 mins βββββββββββββββββββββ 63.6% | |
YAML 3 hrs 39 mins βββββββββββββββββββββ 13.2% | |
JavaScript 2 hrs 4 mins βββββββββββββββββββββ 7.5% | |
Docker 1 hr 32 mins βββββββββββββββββββββ 5.6% | |
JSON 42 mins βββββββββββββββββββββ 2.5% |
// 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 |