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 |
@license WTFPL – Do What the Fuck You Want to Public License - http://www.wtfpl.net | |
@author keinwort - https://github.com/keinwort | |
# on newer Kali releases the Xmodmap option won't work anymore for every window # | |
# "xmodmap ~/.Xmodmap" (for reloading) | |
<.Xmodmap | |
# pointer = 1 2 3 5 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | |
/.Xmodmap> | |
# so we must use other methods |
#!/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 |
# @linux debian | |
# ~/.bashrc: executed by bash(1) for non-login shells. | |
# "source ./.bashrc" or ". ~/.bashrc" (for reloading the shell) | |
# If not running interactively, don't do anything | |
case $- in | |
*i*) ;; | |
*) return;; | |
esac |
# @mac | |
# ~/.bashrc: executed by bash(1) for non-login shells. | |
# source ./.bashrc (for reloading) | |
export PATH=/usr/local/sbin:/opt/local/bin:/opt/local/sbin:/usr/local/php5/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/opt/X11/bin:/usr/X11/bin | |
test -e ${HOME}/.iterm2_shell_integration.bash && source ${HOME}/.iterm2_shell_integration.bash | |
# export PS1='\u@\h: \w\$ ' | |
export PS1='\[\033[0;34m\][\t]>\[\033[01;31m\]\u@\h\[\033[00m\]: \[\033[01;34m\]\w\[\033[00m\]\n└╼ \$ ' |
#!/usr/bin/env bash | |
## https://superuser.com/questions/722461/how-can-you-remove-duplicates-from-bash-history | |
## It is possible to remove duplicated lines which are already in .bash_history by running | |
echo bash_history - remove duplicated lines | |
echo -------------------------------------- | |
echo first back it up | |
date_now=$(date +"%Y-%m-%d-%H%M%S") | |
cp ~/.bash_history ~/bash_history.old_$date_now | |
echo removing duplicate lines | |
nl ~/.bash_history | sort -k 2 -k 1,1nr| uniq -f 1 | sort -n | cut -f 2 > ~/unduped_history |
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 |