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
| title: pokemon-emerald | |
| emojis: | |
| - name: bulbasaur | |
| src: http://pkmn.net/sprites/emerald/1.gif | |
| - name: ivysaur | |
| src: http://pkmn.net/sprites/emerald/2.gif | |
| - name: venusaur | |
| src: http://pkmn.net/sprites/emerald/3.gif | |
| - name: charmander | |
| src: http://pkmn.net/sprites/emerald/4.gif |
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
| // ==UserScript== | |
| // @name Comic Rocket Sandbox Fix | |
| // @namespace http://rummik.com/ | |
| // @version 1.0 | |
| // @description Add sandbox attributes to embedded comic iframes to prevent escaping | |
| // @author rummik | |
| // @match http://www.comic-rocket.com/* | |
| // @grant Public Domain / WTFPL | |
| // ==/UserScript== |
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 Registry Editor Version 5.00 | |
| [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Windows Search] | |
| "AllowCortana"=dword:00000000 |
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 mysql; | |
| update user set authentication_string=password(''), plugin='mysql_native_password' where user='root'; | |
| flush privileges; | |
| exit; |
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/sh | |
| # /etc/update-motd.d/11-lain | |
| sed -e 's/1/ [0;34m/g' -e 's/2/ [1;34m/g' <<'LAIN' | |
| 2.+h-` | |
| `-:`1 | |
| ` ``.--..` `` | |
| ./yh-``-ohdmNNmdhs:` -hh+-` |
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
| with import <nixpkgs> {}; | |
| stdenv.mkDerivation { | |
| name = "shellcast-web"; | |
| buildInputs = [ | |
| nodejs-8_x | |
| (yarn.override { nodejs = nodejs-8_x; }) | |
| ]; |
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
| { | |
| pkgs ? import <nixpkgs> {}, | |
| unstable ? import (fetchTarball https://nixos.org/channels/nixos-unstable/nixexprs.tar.xz) {}, | |
| buildFHSUserEnv ? opt: (unstable.buildFHSUserEnv opt).env, | |
| }: | |
| buildFHSUserEnv rec { | |
| name = "electron-env"; | |
| targetPkgs = p: (with pkgs; |
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
| # Configuration for Alacritty, the GPU enhanced terminal emulator. | |
| # Any items in the `env` entry below will be added as | |
| # environment variables. Some entries may override variables | |
| # set by alacritty itself. | |
| #env: | |
| # TERM variable | |
| # | |
| # This value is used to set the `$TERM` environment variable for | |
| # each instance of Alacritty. If it is not present, alacritty will |
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
| // ==UserScript== | |
| // @name Jira Column Toggle | |
| // @namespace https://gist.github.com/rummik/f34ab0165cdd2aa34d8cdf3adb16082f | |
| // @version 0.7 | |
| // @description toggle single columns with a click | |
| // @author Patric Wilms, *Kim Zick | |
| // @match */secure/RapidBoard.jspa* | |
| // @updateURL https://gist.github.com/rummik/f34ab0165cdd2aa34d8cdf3adb16082f/raw/jiraColumnToggle.user.js | |
| // @downloadURL https://gist.github.com/rummik/f34ab0165cdd2aa34d8cdf3adb16082f/raw/jiraColumnToggle.user.js | |
| // @grant none |
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
| { stdenv ? import <nixpkgs> {} }: | |
| let | |
| inherit (stdenv) pkgs mkShell; | |
| inherit (stdenv.lib) flatten; | |
| in | |
| mkShell rec { |