- Navigate to Device Manager | Network adapters.
- Right click on your Netowrk Adapter (mine is Realtek PCle FE Family controller).
- Right click on Properties, and choose Advanced.
- Under Property click on Speed & Duplex
- Under Value you will probably find Auto Negotiation, replace it with 100 Mbps Half Duplex
- Click OK, and close Device Manager
Based on this question
{
"key": "ctrl+up",
"command": "editor.action.smartSelect.grow",
"when": "editorTextFocus"
},
- Change key binding by pressing Cmd K S
- Find Command list.select
- Keybinding, select Enter
- When, enter
explorerViewletVisible && filesExplorerFocus
Useful resources to help you up and running Linux
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<title>VueJS Demo</title> | |
<link | |
rel="stylesheet" | |
href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" | |
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" |
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
## Ignore Permissions change | |
git config --global core.fileMode false | |
## Credentials | |
git config --global user.name "Gary Lamp" | |
git config --global user.email "[email protected]" |
By default, the Application key does nothing, for heavy keyboard users like me, the context key is really useful. I know that we can use Shift + F10 do achieve that but these buttons take more time to press than a context key.
This is the Karabiner configuration file to do that.
{
"global": {
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
Create a volume to persist the Mongo database: | |
```sh | |
docker volume create --name=mongodata | |
``` | |
The run a MongoDB instance: | |
```sh | |
docker run -d -p 27017:27017 -v mongodata:/data/db mongo |
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
server { | |
listen 80; | |
root /var/www/code/wp; | |
index index.php index.html index.htm index.nginx-debian.html; | |
server_name wp.test; | |
location / { | |
try_files $uri $uri/ /index.php?$query_string; | |
} |