(with a mildly condescending tone)
You can enable fancy optimizations by creating a config.site file. To do this, open your favorite text editor and type:
| interface Fish { int getNumberOfScales(); } | |
| interface Piano { int getNumberOfScales(); } | |
| class Tuna implements Fish, Piano { | |
| // You can tune a piano, but can you tuna fish? | |
| int getNumberOfScales() { return 91; } | |
| } |
| #!/usr/bin/env python | |
| """Epic script to rename scary uppercase extensions (like .JPG) to | |
| more friendly lowercase (like .jpg). | |
| How to use | |
| ========== | |
| Recursively rename all files in the current directory:: | |
| fixext |
| #!/bin/sh | |
| # Suspend, hibernate, restart or shutdown the computer without sudo! | |
| # by Chris Wong | |
| # Released to the public domain. | |
| NAME=$0 | |
| usage() { | |
| echo "Usage: $NAME suspend|hibernate|restart|shutdown" |
| object Frangipani { | |
| // Add path to native libraries | |
| val jarName = getClass.getProtectionDomain.getCodeSource.getLocation.getPath | |
| val nativeDir = new File(new File(jarName).getParent, "natives").getPath | |
| System.setProperty("org.lwjgl.librarypath", nativeDir) | |
| def start() { | |
| // Initialize the display | |
| try { | |
| Display.setDisplayMode(new DisplayMode(800, 600)) |
| yes_letters = set('yt') | |
| no_letters = set('nf') | |
| def read_bool(prompt): | |
| '''Read a boolean value from standard input.''' | |
| answer = None | |
| while answer not in yes_letters and answer not in no_letters: | |
| answer = raw_input(prompt).strip()[0].lower() | |
| return answer in yes_letters |
| // Duck.java | |
| class Duck { | |
| public static void quack(Integer num) { | |
| System.out.println(num); | |
| } | |
| } | |
| // Main.java | |
| class Main { | |
| public static void main(String[] args) { |
| module BirdTree where | |
| import Control.Monad.Maybe | |
| import Control.Monad.State | |
| import Data.ByteString.Char8 ( ByteString ) | |
| import qualified Data.ByteString.Char8 as B | |
| import Data.Char ( isSpace ) | |
| import Data.Functor ( (<$>) ) |
| import Data.ByteString.Char8 ( ByteString ) | |
| import qualified Data.ByteString.Char8 as B | |
| import Data.Char ( isSpace ) | |
| import Data.Functor ( (<$>) ) | |
| import Data.List ( intercalate, unfoldr ) | |
| import Data.Maybe ( fromJust ) | |
| import Data.Ratio ( (%) ) | |
| {- |
| import Data.ByteString.Char8 ( ByteString ) | |
| import qualified Data.ByteString.Char8 as B | |
| import Control.Applicative ( (<$>), (<*>) ) | |
| import Data.Char ( isSpace ) | |
| import Data.List ( intercalate ) | |
| import Data.Maybe ( catMaybes ) | |
| import Data.Ratio ( (%), numerator, denominator ) | |
| {- |