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/bash | |
| # | |
| # ██ ██ ██ ██ ████ ██ | |
| # ░██ ░██ ░██ ░██ ░██░ ░██ | |
| # ░██ █████ ██████░██ ██████ ██████ ░██ ██ ██ ██████ ██████ | |
| # ░██████ ██░░░██░░██░░█░██████ ██░░░░ ░░░██░ ░██░██ ░██░░░██░ ░░░██░ | |
| # ░██░░░██░███████ ░██ ░ ░██░░░██░░█████ ░██ ░██░██ ░██ ░██ ░██ | |
| # ░██ ░██░██░░░░ ░██ ░██ ░██ ░░░░░██ ░██ ░██░██ ░██ ░██ ░██ | |
| # ░██ ░██░░██████░███ ░██████ ██████ ░░██ ███░░██████ ░██ ░░██ | |
| # ░░ ░░ ░░░░░░ ░░░ ░░░░░ ░░░░░░ ░░ ░░░ ░░░░░░ ░░ ░░ |
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
| background "#101010" | |
| decorations none | |
| dockapp_mode none | |
| fuzzy_edges 0 | |
| geometry 1x1+333 # position x:333 y:0 | |
| grow_gravity NW | |
| icon_gravity NW | |
| icon_size 16 | |
| log_level err | |
| kludges force_icons_size |
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
| <html> | |
| <head> | |
| <title>monokai color scheme hacking</title> | |
| <style type="text/css"> | |
| body { | |
| background: #272822; | |
| color: #f8f8f2; | |
| font-family: "Lucida Console", Monaco, monospace; | |
| } |
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
| var ꐓ = [ | |
| "<pre style='font-family: monospace; font-size: 50px;'>", | |
| "write", | |
| " OH HAI<br>", | |
| " .\"\";._ _.---._ _.-\"\".<br>", | |
| " /_.'_ '-' /`-` _ \\<br>", | |
| " .' / `\\ \\ /` \\ '.<br>", | |
| " .' / ; _ _ '-; \\ ;'.<br>", | |
| " _.' ; / / \\ \\ / \\ ; '._;._<br>", | |
| " .-'.--. | / | \\0|0/ \\ | '-.<br>", |
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
| Verifying that +xero is my blockchain ID. https://onename.com/xero |
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
| #fyi %x20 is a space. | |
| [alias] | |
| graph = log --graph --color --pretty=format:"%C(yellow)%H%C(green)%d%C(reset)%n%x20%cd%n%x20%cn%x20(%ce)%n%x20%s%n" |
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 | |
| @echo "Making docs" | |
| git ls-files | grep php | while read line; do filename=$(basename $line); newfile=docs/$filename; echo $newfile; doxphp | |
| < $line | doxphp2sphinx > ${newfile/%.php/.rst}; done | |
| @echo "deleting empty files" | |
| rm -f $(find . -empty) |
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
| xxx | |
| xxx | |
| xxxxxxxxxxxxx | |
| xxxxxxxxxxxxx | |
| xxx | |
| xxx | |
| xxxxxxxxxxxxx | |
| xxxxxxxxxxxxx |
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 | |
| echo -e "\e[01;33m[username]\e[00m" | |
| read user | |
| echo -e "\e[01;33m[password]\e[00m" | |
| read pass | |
| echo -e "\e[01;33m[database]\e[00m" | |
| read db | |
| echo -e "\e[01;33m[sql file]\e[00m" | |
| read file | |
| mysql> mysql -u $user -p $pass $db < ~/Downloads/$file |
OlderNewer