Put flip somewhere in your $PATH and chmod a+x it.
Copy fuck into ~/.bashrc.
| # | |
| # Himawari-8 Downloader | |
| # | |
| # | |
| # | |
| # This script will scrape the latest image from the Himawari-8 satellite, recombining the tiled image, | |
| # converting it to a JPG which is saved in My Pictures\Himawari\ and then set as the desktop background. | |
| # | |
| # http://himawari8.nict.go.jp/himawari8-image.htm | |
| # |
| Sid Meier's 10 Rules of Game Design | |
| 1. Choose a topic you have a passion for. Game Design is about creativity. | |
| 2. Do research after the game is done. Tap into the player’s brain. | |
| 3. Define your axioms, refine your axioms. Prototype, prototype, prototype; sit in all the chairs. | |
| 4. Double it or cut it in half. You are more wrong than you think. |
| #!/usr/bin/env ruby | |
| # SEE YOU SPACE COWBOY by DANIEL REHN (danielrehn.com) | |
| # Displays a timeless message in your terminal with cosmic color effects | |
| # Usage: add `ruby ~/seeyouspacecowboy.rb; sleep 2` to .bash_logout (or similar) in your home directory | |
| # (adjust the sleep variable to display the message for more seconds) | |
| class String | |
| def colorize(color_code) |
| public class ImportedFilePathResolver : IPathResolver | |
| { | |
| private string currentFileDirectory; | |
| private string currentFilePath; | |
| /// <summary> | |
| /// Initializes a new instance of the <see cref="ImportedFilePathResolver"/> class. | |
| /// </summary> | |
| /// <param name="currentFilePath">The path to the currently processed file.</param> | |
| public ImportedFilePathResolver(string currentFilePath) |
| ⨀_⨀ | |
| ⨂_⨂ | |
| (/◔ ◡ ◔)/ | |
| °ﺑ° | |
| (¬_¬) | |
| (´・ω・`) | |
| (ʘ_ʘ) | |
| (ʘ‿ʘ) | |
| (๏̯͡๏ ) | |
| (◕_◕) |
| var suffix = function(n) { | |
| var d = (n|0)%100; | |
| return d > 3 && d < 21 ? 'th' : ['th', 'st', 'nd', 'rd'][d%10] || 'th'; | |
| }; | |
| // suffix(1) => "st" | |
| // suffix(102) => "nd" | |
| // suffix(113) => "th" |
| # Rename an email address in all old commits. | |
| # WARNING: Will change all your commit SHA1s. | |
| # Based off of the script from here: | |
| # http://coffee.geek.nz/how-change-author-git.html | |
| git filter-branch -f --commit-filter ' | |
| if [ "$GIT_COMMITTER_EMAIL" = "joern.zaefferer@googlemail.com" ]; | |
| then | |
| GIT_AUTHOR_EMAIL="joern.zaefferer@gmail.com"; | |
| GIT_COMMITTER_EMAIL="joern.zaefferer@gmail.com"; | |
| git commit-tree "$@"; |
| <!-- | |
| scaling background, as seen on normative.com | |
| --> | |
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | |
| <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> | |
| <head> | |
| <title>Scaling Background</title> | |
| <meta name="warning" content="HC SVNT DRACONES" /> | |
| <link rel="stylesheet" type="text/css" href="http://yui.yahooapis.com/2.6.0/build/reset/reset-min.css" /> |
| <!-- | |
| sliding frames, as seen on normative.com | |
| --> | |
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | |
| <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> | |
| <head> | |
| <title>Sliding Frames</title> | |
| <meta name="warning" content="HC SVNT DRACONES" /> | |
| <link rel="stylesheet" type="text/css" href="http://yui.yahooapis.com/2.6.0/build/reset/reset-min.css" /> |