How to fix Razer Synapse in Mac OSX 10.0 Yosemite
Start Terminal.app and type:
sudo nvram boot-args="kext-dev-mode=1"
Verify that command works by typing:
sudo nvram -p | grep -i boot-args
| # Print status for all fail2ban jails. a little bit more space between | |
| f2stall() { JAILS=($(fail2ban-client status | grep "Jail list" | sed -E 's/^[^:]+:[ \t]+//' | sed 's/,//g')) | |
| for JAIL in ${JAILS[@]} | |
| do | |
| echo " " | |
| echo "--------------- 👀 JAIL STATUS: $JAIL ... ---------------" | |
| fail2ban-client status $JAIL | |
| echo "### --------- ### ... ### --------- ### ... ### --------- ###" | |
| echo " " | |
| done |
| #!/bin/bash | |
| read -e -p "Please insert file: " file | |
| if test -e $file | |
| then pdf2ps $file tmp.ps && ps2pdf tmp.ps $file-small.pdf && rm tmp.ps | |
| else echo "File not found!" | |
| fi |
| ## Kali light xfce4 root autologin (works after lightdm update) | |
| # @author intrd - http://dann.com.br/ | |
| # @license Creative Commons Attribution-ShareAlike 4.0 International License - http://creativecommons.org/licenses/by-sa/4.0/ | |
| After lighdtdm update root autologin is broken fix doing this: | |
| nano /etc/lightdm/lightdm.conf | |
| at [Seat:*] group uncomment/edit: | |
| autologin-user=root | |
| autologin-user-timeout=0 |
How to fix Razer Synapse in Mac OSX 10.0 Yosemite
Start Terminal.app and type:
sudo nvram boot-args="kext-dev-mode=1"
Verify that command works by typing:
sudo nvram -p | grep -i boot-args
| # SYNTAX: | |
| var pattern = new RegExp(pattern, attributes); # attributes: g (global); i (case-sensitive); m (multiline matches) | |
| var pattern = /pattern/attributes; # same as above | |
| # BRACKETS: | |
| [...]: Any one character between the brackets. | |
| [^...]: Any one character not between the brackets. |
| #!/bin/bash | |
| ##################################################### | |
| # Name: Bash CheatSheet for Mac OSX | |
| # | |
| # A little overlook of the Bash basics | |
| # | |
| # Usage: | |
| # | |
| # Author: J. Le Coupanec | |
| # Date: 2014/11/04 |
| ### possible include this | |
| # include /put_path_here/nginx_errors.conf | |
| error_page 500 /500.html; | |
| location /500.html{ | |
| return 500 '{"error": {"status_code": 500,"status": "Internal Server Error"}}'; | |
| } | |
| error_page 502 /502.html; | |
| location /502.html{ |