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
echo "TURN OFF WINDOWS DEFENDER FROM CONTROL PANEL, THEN HIT SPACE." | |
pause | |
echo "TURN ON AIRPLANE MODE, THEN HIT SPACE." | |
pause | |
echo "TURN OFF NIGHT LIGHT FOR VIDEO WORK, THEN HIT SPACE." |
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
{ | |
"key": "ctrl+`", | |
"command": "workbench.action.terminal.focus", | |
"when": "!terminalFocus" | |
}, | |
{ | |
"key": "ctrl+`", | |
"command": "workbench.action.focusActiveEditorGroup", | |
"when": "terminalFocus" | |
} |
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
# Run docker without sudo | |
sudo groupadd docker | |
sudo usermod -aG docker $USER | |
# Restart pc | |
docker run hello-world | |
# Set custom docker bridge subnet | |
sudo systemctl edit docker | |
# Put his in there | |
[Service] |
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
{ | |
"type": "node", | |
"request": "launch", | |
"name": "Mocha Tests 2", | |
"program": "${workspaceRoot}/node_modules/mocha/bin/_mocha", | |
"protocol": "inspector", | |
"args": [ | |
"-u", | |
"tdd", | |
"--no-timeouts", |
#Ubuntu Chrome slowness fix Create new file:
sudo nano /usr/share/X11/xorg.conf.d/10-intel-chrome.conf
with content:
Section "Device"
Identifier "Intel Graphics"
Driver "intel"
No, seriously, don't. You're probably reading this because you've asked what VPN service to use, and this is the answer.
Note: The content in this post does not apply to using VPN for their intended purpose; that is, as a virtual private (internal) network. It only applies to using it as a glorified proxy, which is what every third-party "VPN provider" does.
(A Russian translation of this article can be found here, contributed by Timur Demin.)
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
export PS1="\h\$(smiley) \`parse_git_branch\` \e[30;1m\w\e[0m\n\$ " |
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
#!/bin/sh | |
# chkconfig: 2345 99 01 | |
# description: SoftEther VPN Server | |
### BEGIN INIT INFO | |
# Provides: my-service-name | |
# Required-Start: $all | |
# Required-Stop: | |
# Default-Start: 2 3 4 5 |