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
$(document).ready(function() { | |
$.fn.carousel.defaults = { | |
interval: false, | |
pause: 'hover' | |
}; | |
}); |
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
# | |
# First install Java 7 from Oracle | |
# | |
apt-get update | |
apt-get install python-software-properties | |
add-apt-repository ppa:webupd8team/java | |
apt-get update | |
apt-get install oracle-java7-installer |
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
class A | |
# Delete this method and it compiles! | |
def initialize | |
end | |
def initialize(@x) | |
end | |
def inspect | |
if @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
/home/farleyknight/src/crystal/deps/llvm/lib/libLLVMBitWriter.a(BitcodeWriter.o): In function `llvm::WriteBitcodeToFile(llvm::Module const*, llvm::raw_ostream&)': | |
/home/aadgrand/tmp/LLVM-3.3/final/llvm.src/lib/Bitcode/Writer/BitcodeWriter.cpp:(.text+0x384): undefined reference to `std::string::_Rep::_S_empty_rep_storage' | |
/home/aadgrand/tmp/LLVM-3.3/final/llvm.src/lib/Bitcode/Writer/BitcodeWriter.cpp:(.text+0x3d4): undefined reference to `std::string::_Rep::_M_destroy(std::allocator<char\ | |
> const&)' | |
/home/farleyknight/src/crystal/deps/llvm/lib/libLLVMBitWriter.a(BitcodeWriter.o): In function `WriteModule(llvm::Module const*, llvm::BitstreamWriter&)': | |
/home/aadgrand/tmp/LLVM-3.3/final/llvm.src/lib/Bitcode/Writer/BitcodeWriter.cpp:(.text+0x4bc): undefined reference to `operator new(unsigned long)' | |
/home/aadgrand/tmp/LLVM-3.3/final/llvm.src/lib/Bitcode/Writer/BitcodeWriter.cpp:(.text+0x5fd): undefined reference to `operator new(unsigned long)' | |
/home/aadgrand/tmp/LLVM-3.3/final/llvm.src/lib/Bitcode/Writer/BitcodeW |
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
/usr/lib/llvm-3.3/bin/llc .crystal//home/farleyknight/src/crystal/src/compiler/crystal.cr/Crystal.bc -o .crystal//home/farleyknight/src/crystal/src/compiler/crystal.cr/Crystal.s | |
/usr/bin/gcc -c .crystal//home/farleyknight/src/crystal/src/compiler/crystal.cr/Crystal.s -o .crystal//home/farleyknight/src/crystal/src/compiler/crystal.cr/Crystal.o | |
/usr/bin/gcc -o crystal .crystal//home/farleyknight/src/crystal/src/compiler/crystal.cr/main.o .crystal//home/farleyknight/src/crystal/src/compiler/crystal.cr/Pointer40Int3241.o .crystal//home/farleyknight/src/crystal/src/compiler/crystal.cr/MatchData.o .crystal//home/farleyknight/src/crystal/src/compiler/crystal.cr/GC.o .crystal//home/farleyknight/src/crystal/src/compiler/crystal.cr/LEBReader.o .crystal//home/farleyknight/src/crystal/src/compiler/crystal.cr/Pointer40UInt841.o .crystal//home/farleyknight/src/crystal/src/compiler/crystal.cr/UInt64.o .crystal//home/farleyknight/src/crystal/src/compiler/crystal.cr/Int32.o .crystal//home/farleyknight/src/crystal/src/compile |
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
# Includes Operating System name from `uname` | |
export PS1="\[\033[36m\]\u\[\033[m\]@\[\033[32m\]\h\[\033[35m\][$(uname)]\[\033[33;1m\]\w\[\033[m\]\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
<!-- saved from url=(0144)http://www.williammalone.com/articles/create-html5-canvas-javascript-sprite-animation/downloads/sprite-animation-demo/sprite-animation-demo.html --> | |
<html> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252"> | |
<title>Sprite Animation Demo</title> | |
</head> | |
<body cz-shortcut-listen="true"> | |
<canvas id="balloonAnimation" width="500" height="500" style="color: #2200ff; border: 1px solid black;"></canvas> | |
<script src="sprite-animation-demo.js"></script> |
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
;;;; Add a reasonable load path | |
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
(add-to-list 'load-path "~/.emacs.d/lisp") | |
;;;; Save desktop session | |
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
;; (desktop-save-mode 1) | |
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
export PS1="\[\033[36m\]\u\[\033[m\]@\[\033[32m\]\h\[\033[35m\][$(uname)]\[\033[33;1m\]\w\[\033[m\]\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
license: gpl-3.0 |