Problem 1: Nothing but the Truth [Elementary]
trueProblem 2: Simple Math [Elementary]
4| #!/bin/bash | |
| # | |
| # Author: Coder of Salvation /Leon van Kammen | |
| # Website: www.playterm.org | |
| # Date: 2012-05-15 | |
| # Function: console frontend to playterm.org (wrapper around ttyrec) | |
| # | |
| # Copyright (C) 2012, Coder of Salvation / Leon van Kammen | |
| # | |
| # This program is free software: you can redistribute it and/or modify |
| This playbook has been removed as it is now very outdated. |
| ;SMBDIS.ASM - A COMPREHENSIVE SUPER MARIO BROS. DISASSEMBLY | |
| ;by doppelganger ([email protected]) | |
| ;This file is provided for your own use as-is. It will require the character rom data | |
| ;and an iNES file header to get it to work. | |
| ;There are so many people I have to thank for this, that taking all the credit for | |
| ;myself would be an unforgivable act of arrogance. Without their help this would | |
| ;probably not be possible. So I thank all the peeps in the nesdev scene whose insight into | |
| ;the 6502 and the NES helped me learn how it works (you guys know who you are, there's no |
| user=> (concat '(1 2 3) '(4 5 6)) | |
| (1 2 3 4 5 6) | |
| user=> (conj '(1 2 3) '(4 5 6)) | |
| ((4 5 6) 1 2 3) | |
| user=> (cons '(1 2 3) '(4 5 6)) | |
| ((1 2 3) 4 5 6) | |
| user=> (list '(1 2 3) '(4 5 6)) |
| ; Comments start with semicolons. | |
| ; Clojure is written in "forms", which are just | |
| ; lists of things inside parentheses, separated by whitespace. | |
| ; | |
| ; The clojure reader assumes that the first thing is a | |
| ; function or macro to call, and the rest are arguments. | |
| ; | |
| ; Here's a function that sets the current namespace: | |
| (ns test) |
| " copy all this into a vim buffer, save it, then... | |
| " source the file by typing :so % | |
| " Now the vim buffer acts like a specialized application for mastering vim | |
| " There are two queues, Study and Known. Depending how confident you feel | |
| " about the item you are currently learning, you can move it down several | |
| " positions, all the way to the end of the Study queue, or to the Known | |
| " queue. | |
| " type ,, (that's comma comma) |
Find it here: https://github.com/bitemyapp/learnhaskell
| # ClojureHelpers.py for Sublime Text 3 | |
| # originally by James MacCaulley | |
| # https://gist.github.com/jamesmacaulay/5457344 | |
| import re | |
| import sublime | |
| import sublime_plugin | |
| import SublimeREPL.sublimerepl | |
| import SublimeREPL.text_transfer |