Put flip somewhere in your $PATH and chmod a+x it.
Copy fuck into ~/.bashrc.
| #!/bin/bash | |
| # vi: ts=4:sw=4:et | |
| # | |
| # NINETEEN.SH | |
| # This script allows you to install/update Enlightenment 19 git version on | |
| # Ubuntu 14.04 LTS or Debian wheezy/sid, or remove E19 git from your system. | |
| # Originally from: http://ubuntuforums.org/showthread.php?t=2203190 | |
| # By: Philippe J. Guillaumie (batden AT sfr DOT fr). | |
| # Additional updates by: Bryan Hundven (bryanhundven AT gmail DOT com). | |
| # |
| # | |
| # Varnish VCL file for Ghost blogging platform. | |
| # http://ghost.org/ | |
| # | |
| # Written for Ghost v0.3.0. | |
| # | |
| # This is a low-hanging-fruit type of VCL. TTL of objects are overridden to 2 | |
| # minutes, and everything below /ghost/ is pass()-ed so the user sessions | |
| # work. | |
| # |
| #!/usr/bin/ruby | |
| # encoding: utf-8 | |
| # | |
| # Updated 2017-10-25: | |
| # - Defaults to large size (512) | |
| # - If ImageMagick is installed: | |
| # - rounds the corners (copped from @bradjasper, https://github.com/bradjasper/Download-iTunes-Icon/blob/master/itunesicon.rb) | |
| # - replace original with rounded version, converting to png if necessary | |
| # | |
| # Retrieve an iOS app icon at the highest available resolution |
| <?php | |
| /* | |
| Usage: | |
| $frag = new CWS_Fragment_Cache( 'unique-key', 3600 ); // Second param is TTL | |
| if ( !$frag->output() ) { // NOTE, testing for a return of false | |
| functions_that_do_stuff_live(); | |
| these_should_echo(); | |
| // IMPORTANT | |
| $frag->store(); | |
| // YOU CANNOT FORGET THIS. If you do, the site will break. |