Skip to content

Instantly share code, notes, and snippets.

View geekwolverine's full-sized avatar

Blaze geekwolverine

View GitHub Profile
@geekwolverine
geekwolverine / README.md
Created February 16, 2017 17:08 — forked from agnoster/README.md
My ZSH Theme

agnoster.zsh-theme

A ZSH theme optimized for people who use:

  • Solarized
  • Git
  • Unicode-compatible fonts and terminals (I use iTerm2 + Menlo)

For Mac users, I highly recommend iTerm 2 + Solarized Dark

@geekwolverine
geekwolverine / README.md
Created February 16, 2017 17:08 — forked from agnoster/README.md
My ZSH Theme

agnoster.zsh-theme

A ZSH theme optimized for people who use:

  • Solarized
  • Git
  • Unicode-compatible fonts and terminals (I use iTerm2 + Menlo)

For Mac users, I highly recommend iTerm 2 + Solarized Dark

@geekwolverine
geekwolverine / iterm2-solarized.md
Created February 16, 2017 17:08 — forked from kevin-smets/iterm2-solarized.md
iTerm2 + Oh My Zsh + Solarized color scheme + Meslo powerline font + [Powerlevel9k] - (macOS)

Default

Default

Powerlevel9k

Powerlevel9k

@geekwolverine
geekwolverine / style.less
Created June 9, 2017 09:23 — forked from Tehnix/style.less
Cleaner Atom UI
/*
* Your Stylesheet
*
* This stylesheet is loaded when Atom starts up and is reloaded automatically
* when it is changed.
*
* If you are unfamiliar with LESS, you can read more about it here:
* http://www.lesscss.org
*/
@geekwolverine
geekwolverine / frontendDevlopmentBookmarks.md
Created July 11, 2018 21:11 — forked from dypsilon/frontendDevlopmentBookmarks.md
A badass list of frontend development resources I collected over time.
@geekwolverine
geekwolverine / countries.sql
Created July 11, 2018 21:11 — forked from adhipg/countries.sql
Sql dump of all the Countries, Country Codes, Phone codes.
CREATE TABLE IF NOT EXISTS `country` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`iso` char(2) NOT NULL,
`name` varchar(80) NOT NULL,
`nicename` varchar(80) NOT NULL,
`iso3` char(3) DEFAULT NULL,
`numcode` smallint(6) DEFAULT NULL,
`phonecode` int(5) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
@geekwolverine
geekwolverine / dns-flush.sh
Created November 22, 2022 07:52 — forked from franciscocpg/dns-flush.sh
Arch Linux - Force DNS flush
sudo nscd -K
@geekwolverine
geekwolverine / add_capslock_ctrl.sh
Created January 16, 2023 08:38 — forked from zw963/add_capslock_ctrl.sh
A script which change Capslock to Ctrl, and change rightAlt to Capslock for GNOME + Wayland for Arch linux.
#! /bin/bash
if ! fgrep -qs 'ctrl:new_ctrl = +new_ctrl(new_ctrl)' /usr/share/X11/xkb/rules/evdev; then
sudo sed -i.bak '/ctrl:nocaps[[:blank:]]*=[[:blank:]]*+ctrl(nocaps)/a\
ctrl:new_ctrl = +new_ctrl(new_ctrl)
' /usr/share/X11/xkb/rules/evdev
fi
cat <<'HEREDOC' |sudo tee /usr/share/X11/xkb/symbols/new_ctrl
partial modifier_keys
@geekwolverine
geekwolverine / android_on_arch.md
Created February 1, 2023 09:34 — forked from dianjuar/android_on_arch.md
install android SDK on arch linix

Install Android SDK on Arch Linux

1. Download Android SDK on your computer

yaourt android-sdk-platform-tools
yaourt android-udev
yaourt android-sdk

2. Create global variables on system

@geekwolverine
geekwolverine / youtube_decrypt_cipher.php
Created March 7, 2023 16:49 — forked from WolfgangKurz/youtube_decrypt_cipher.php
Youtube - Decrypt cipher signature
<?php
// 2017-02-28
function decrypt_signature($s){
$nF = function(&$a, $b){
$c = $a[0];
$a[0] = $a[$b % count($a)];
$a[$b] = $c;
};
$fj = function(&$a, $b){
array_splice($a, 0, $b);