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 GPG | |
gpg --full-generate-key | |
# Your selection? 1 | |
# Key is valid for? (0) 0 | |
# Is this correct? (y/N) y | |
# Real name: Aam Surganda | |
# Email address: [email protected] (sesuaikan dengan alamat email ketika commit) | |
# Comment: Professional Identity |
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/bash | |
# xrandr only works in X11 sessions, not Wayland | |
[ "$XDG_SESSION_TYPE" = x11 ] || exit 0 | |
xrandr --newmode "1600x900_60.00" 118.25 1600 1696 1856 2112 900 903 908 934 -hsync +vsync | |
xrandr --verbose --addmode eDP-1 "1600x900_60.00" | |
sleep 10; | |
xrandr --output eDP-1 --mode "1600x900_60.00" |
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
{"lastUpload":"2020-11-21T01:49:03.405Z","extensionVersion":"v3.4.3"} |
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
Visual Studio Code: | |
opensource, with many updates, and package for almost anything, in laravel development I use this plugins: | |
Laravel 5 Snippets. | |
Blade Snippets. | |
Blade Spacer. | |
PHP DOCBlocker. | |
Laravel Artisans. (execute commands by the command pallete). | |
terminal (to get a button to open the terminal from VS code). |
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
package main | |
import ( | |
"bytes" | |
"fmt" | |
"io/ioutil" | |
"net/http" | |
"net/url" | |
) |