-
Types and Type Checking
- Motivation
- Type Systems
-
Modules
-
Object-oriented Programming
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
/* base view template */ | |
var ViewTemplate = Backbone.View.extend({ | |
// containing element | |
el: $('body'), | |
// events | |
events: {}, | |
// initialize |
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
global: | |
env: | |
- LARAVEL_ENV: production | |
web1: | |
name: hipsta2 | |
shared_writable_dirs: | |
- /storage/cache | |
- /storage/database | |
- /storage/logs | |
- /storage/sessions |
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
from: | |
adapter: | |
database: | |
port: | |
username: | |
password: | |
host: | |
to: | |
adapter: |
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
<!doctype html> | |
<head> | |
<style> | |
.meter { | |
width: 300px; | |
height: 30px; | |
background: #eff; | |
position: relative; | |
} | |
.amt { |
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
# include <iostream> | |
int main() | |
{ | |
std::cout << "Hello, world!\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
// Generated by CoffeeScript 1.4.0 | |
(function() { | |
var KeyValue; | |
KeyValue = (function() { | |
function KeyValue() {} | |
KeyValue.prototype.hello = function() { | |
return alert("Hello world..."); |
Dan's Wish List
- New Programmer's Survival Manual
- The Passionate Programmer
- Metaprogramming Ruby: Program Like the Ruby Pros
- The RSpec Book: Behaviour-Driven Development with RSpec, Cucumber, and Friends
- Practical Vim: Edit Text at the Speed of Thought
- Pragmatic Thinking and Learning: Refactor Your Wetware
- Seven Databases in Seven Weeks: A Guide to Modern Databases and the NoSQL Movement
- Programming Concurrency on the JVM: Mastering Synchronization, STM, and Actors
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 | |
@x = 0 | |
def self.give_list | |
{ | |
'blah' => :x | |
} | |
end | |
def self.run_it(obj) |
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
14: syntax error: unexpected semicolon or newline, expecting ) |
OlderNewer