| ⌘T | go to file |
| ⌘⌃P | go to project |
| ⌘R | go to methods |
| ⌃G | go to line |
| ⌘KB | toggle side bar |
| ⌘⇧P | command prompt |
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
| Mary Oliver: The Gift | |
| I wanted to thank the mockingbird for the vigor of his song. | |
| Every day he sang from the rim of the field, while I picked | |
| blueberries or just idled in the sun. | |
| Every day he came fluttering by to show me, and why not, | |
| the white blossoms in his wings. | |
| So one day I went there with a machine, and played some songs of | |
| Mahler. | |
| The mockingbird stopped singing, he came close and seemed |
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
| _ = require('lodash'); | |
| x = {a: 1, b: {c: 2}, d: {e: 3, f: {g:4}}}; | |
| function nestedHas(object, attrib) { | |
| if (_.has(object, attrib)) { | |
| return true; | |
| } | |
| for (let key in _.pickBy(object, _.isObject)) { | |
| if (nestedHas(object[key], attrib)) { | |
| return true; |
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
| ' QBASIC TETRIS PROGRAM | |
| ' TYPE 'QBASIC TETRIS' AT THE DOS PROMPT TO RUN | |
| ' ONCE IN QBASIC PRESS F5 TO START | |
| ' TO QUIT FROM QBASIC TO DOS PRESS ALT-F THEN E | |
| ' ORIGINALLY CREATED BY ALEXEY PAJITNOV | |
| ' SHS Programming Class, Spring 1996, midd9354@uidaho.edu | |
| ' AUTHORS: | |
| ' Larry Cragun Kai Middleton Mary Tormey | |
| ' Lyf Gildersleeve Dalton Paull Ryan Turner |
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
| 1 mole of X weighs ... (Avogadro's constant is 6.0221 x 10^23) | |
| hydrogen 1.00797 g | |
| carbon 12.0107 g | |
| iron 55.845 g | |
| cellulose 162.14 g C6H10O5 | |
| uranium 238.02891 g | |
| ATP 507.18 g C10H16N5O13P3 Adenosine Triphosphate | |
| Buckeyball 720.66 g C60 | |
| Botox 150000 g C6760H10447N1743O2010S32 |
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
| ∀m ∃N ∀a,b ∃c,d,A,X ∀x,y ∃B,C,F ∀f,g ∃h,i,l,n,r,p,q | |
| x * (y + B - x) * (A + m + B - y) | |
| * [(((f - A)^2 + (g - 1)^2) * (f - B)^2 + (g - x)^2) | |
| * ((f - C)^2 + (g - y)^2 - h - 1) | |
| * (d * g * i + i - c + f)^2 | |
| + (f + h - d * g)^2 | |
| + (B + l + 1 - C)^2 | |
| + (C + n - N)^2 | |
| + (F + r - b * (B + C^2))^2 | |
| + (b * p * (B + C^2) + p - a + F)^2 |
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
| BOOKKEEPING AND EVALUATION TOTALS (Functions 1-7) | |
| ================================================= | |
| 1. In game over mode, set switch to AUTO-UP and depress ADVANCE. The CRT | |
| indicates Function 1 and total left chute coins. | |
| 2. Record audit totals and depress ADVANCE for functions 1-7. To review a | |
| total that has been advanced past, set switch to MANUAL-DOWN and depress | |
| ADVANCE. Functions are displayed one at a time as follows:- | |
| Function Total Description | |
| -------------------------------- |
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
| ♪ Another brother wants to win the hustler-of-the-year award ♪ | |
| ♪ HOW MANY BENZES AND BMs can one man afford? ♪ | |
| ♪ it ain't just him -- it's also you and you and that guy ♪ | |
| ♪ who won't be satisfied ♪ | |
| ♪ 'til all of us is gettin' high ♪ | |
| ♪ one hit for her, she's pullin' down your drawers ♪ | |
| ♪ one hit for him, his welfare check is yours ♪ | |
| ♪ it ain't nothing but a small thing in a big city, see ♪ | |
| ♪ you're living for the money, B ♪ | |
| ♪ don't let money change you ♪ |
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
| **************************************************************************** | |
| * | |
| * Program: al_adhoc.prg | |
| * | |
| * Authors: Kai Middleton | |
| * | |
| * Written: 8-87 | |
| * | |
| * | |
| * Function: generate a report on up to eleven fields |
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
| require 'dictionary' | |
| describe Dictionary do | |
| before do | |
| @d = Dictionary.new | |
| end | |
| it "should be empty when created" do | |
| @d.words.should == [] | |
| end |