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
| - install lts kernel | |
| sudo pacman -S linux-lts | |
| -or- | |
| sudo pacman -S linux-lts linux-lts-headers | |
| - (optional) check if kernel, ramdisk and fallback are available | |
| ls -lsha /boot | |
| - (optional) remove the standard kernel |
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
| sudo grub-mkconfig -o /boot/grub/grub.cfg |
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
| Windows note | |
| On Windows the environment variable is set using the set command. | |
| set DEBUG=*,-not_this | |
| Note that PowerShell uses different syntax to set environment variables. | |
| $env:DEBUG = "*,-not_this" | |
| Then, run the program to be debugged as usual. |
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
| sudo pacman -Rcns lightdm | |
| sudo pacman --needed -S gdm | |
| sudo systemctl -f enable gdm | |
| Reboot Your System |
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
| $ gsettings set org.gnome.desktop.wm.preferences button-layout 'close,minimize,maximize:' | |
| $ gsettings set org.gnome.settings-daemon.plugins.xsettings overrides "{'Gtk/DecorationLayout':<'close,minimize,maximize:'>}" | |
| https://askubuntu.com/questions/656084/gnome-3-14-changing-window-icons-to-the-left |
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
| Enter ↵, ~, . | |
| Supported escape sequences: | |
| ~. - terminate session | |
| ~B - send a BREAK to the remote system | |
| ~R - Request rekey (SSH protocol 2 only) | |
| ~# - list forwarded connections | |
| ~? - this message | |
| ~~ - send the escape character by typing it twice | |
| (Note that escapes are only recognized immediately after newline.) |
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
| ... | |
| .use(bodyParser.json({ limit: '50mb'})) | |
| .use(bodyParser.urlencoded({ limit: '50mb', extended: 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
| use this command to launch: | |
| nm-connection-editor |
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
| SUBSYSTEM=="usb" MODE="0666" ATTR{idProduct}=="c246" ATTR{idVendor}=="046d" ATTR{ltm_capable}=="no" ATTR{manufacturer}=="Logitech" ATTR{maxchild}=="0" ATTR{product}=="G300s Optical Gaming Mouse" |
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
| { | |
| "e4x": true, | |
| "brace_style": "collapse", | |
| "break_chained_methods": true, | |
| "end_with_newline": true, | |
| "eval_code": false, | |
| "indent_char": " ", | |
| "indent_level": 0, | |
| "indent_size": 2, | |
| "indent_with_tabs": false, |