This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"extends": [ | |
"eslint:recommended", | |
"plugin:react/recommended", | |
"plugin:react/jsx-runtime", | |
"prettier" | |
], | |
"plugins": ["react-hooks"], | |
"env": { | |
"browser": true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"extends": [ | |
"eslint:recommended", | |
"plugin:react/recommended", | |
"plugin:react/jsx-runtime", | |
"prettier" | |
], | |
"env": { | |
"browser": true | |
}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"extends": [ | |
"eslint:recommended", | |
"plugin:react/recommended", | |
"plugin:react/jsx-runtime", | |
"prettier" | |
], | |
"env": { | |
"browser": true | |
}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"trailingComma": "none", | |
"tabWidth": 2, | |
"semi": true, | |
"singleQuote": true, | |
"arrowParens": "always" | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
// security trust window, open = not shown | |
"security.workspace.trust.untrustedFiles": "open", | |
// configure git-bash (windows-only for git-bash users) | |
"terminal.integrated.profiles.windows": { | |
"Git Bash": { | |
"path": "C:\\Program Files\\Git\\bin\\bash.exe", | |
"args": ["-l", "-i"] | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-------HYPER-V---------- | |
Make sure HYPER-V is enabled. | |
1. Go to Control Panel\Programs\Programs and Features -> Turn Windows features on or off | |
2. Check Windows Hypervisor Platform | |
3. Launch BIOS | |
4. Enable Virtualization Technology in BIOS and Hardware Enforced Data Execution Prevention | |
5. Restart PC | |
-----JDK----- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function addkey() { | |
# path to agent file with env vars | |
env=~/.ssh/agent.env | |
# path to RSA private key | |
key=~/id_rsa | |
agent_load_env () { test -f "$env" && . "$env" >| /dev/null ; } | |
agent_start () { (umask 077; ssh-agent >| "$env") && . "$env" >| /dev/null ; } | |
# ssh-add return value: 0=running w/ key; 1=running w/o key; 2=not running |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* smartphones, iPhone, portrait 480x320 phones */ | |
/* portrait e-readers (Nook/Kindle), smaller tablets @ 600 or @ 640 wide. */ | |
/* portrait tablets, portrait iPad, landscape e-readers, landscape 800x480 or 854x480 phones */ | |
/* tablet, landscape iPad, lo-res laptops ands desktops */ | |
/* big landscape tablets, laptops, and desktops */ | |
/* hi-res laptops and desktops */ | |
@media (min-width:320px) {} | |
@media (min-width:481px) {} | |
@media (min-width:641px) {} | |
@media (min-width:961px) {} |