Error: The following directories are not writable by your user:
/usr/local/bin
You should change the ownership of these directories to your user.
sudo chown -R $(whoami) /usr/local/bin
| name: remote ssh command | |
| on: [push] | |
| jobs: | |
| build: | |
| name: Build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Deploy | |
| run: | |
| https://github.com/milooy/remote-or-flexible-work-company-in-korea |
| git diff HEAD --shortstat |
Error: The following directories are not writable by your user:
/usr/local/bin
You should change the ownership of these directories to your user.
sudo chown -R $(whoami) /usr/local/bin
| # rancher desktop 설치시 오류나면 | |
| sudo ln -s "/Applications/Rancher Desktop.app/Contents/Resources/resources/darwin/bin/nerdctl" nerdctl |
| git update-index --assume-unchanged file |
| function Person(name){ this.name = name; } | |
| Person.prototype.say = function(){ console.log(this.name); } | |
| var creco = new Person("creco") | |
| creco.say() | |
| class Person2 { | |
| constructor(name) { | |
| this.name = name; | |
| } |
| <meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" /> | |
| <meta http-equiv="Expires" content="0" /> | |
| <meta http-equiv="Pragma" content="no-cache" /> |
| /* Large desktops and laptops */ | |
| @media (min-width: 1200px) { | |
| } | |
| /* Landscape tablets and medium desktops */ | |
| @media (min-width: 992px) and (max-width: 1199px) { | |
| } |
| export default class Scaler { | |
| constructor(el) { | |
| this.zoom_size = 1; | |
| this.zoom_pos = {}; | |
| this.touches_length = 0; | |
| this.image_top = 0; | |
| this.scale = 1; | |
| this.init_distance = null; |