Peter Naur's classic 1985 essay "Programming as Theory Building" argues that a program is not its source code. A program is a shared mental construct (he uses the word theory) that lives in the minds of the people who work on it. If you lose the people, you lose the program. The code is merely a written representation of the program, and it's lossy, so you can't reconstruct
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
| // URL for Jira's REST API for issues | |
| var getIssueURL = "https://[Your Jira host]/rest/api/2/issue/"; | |
| // Personally I prefer the script to handle request failures, hence muteHTTPExceptions = true | |
| var fetchArgs = { | |
| contentType: "application/json", | |
| headers: {"Authorization":"Basic [Your BASE64 Encoded user:pass]"}, | |
| muteHttpExceptions : 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
| #import <Foundation/Foundation.h> | |
| @interface DebugUtils : NSObject | |
| /** | |
| * Dump view hierarchy to NSLog | |
| */ | |
| + (void) dumpViews:(UIView*)view; | |
| @end |
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
| gunvor:~ konryd$ cd /tmp | |
| gunvor:tmp konryd$ mkdir someenv | |
| gunvor:tmp konryd$ cd someenv | |
| gunvor:someenv konryd$ virtualenv . | |
| New python executable in ./bin/python | |
| Installing setuptools............done. | |
| gunvor:someenv konryd$ bin/pip install mock | |
| Downloading/unpacking mock | |
| Downloading mock-0.7.0b4.zip (310Kb): 310Kb downloaded | |
| Running setup.py egg_info for package mock |
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
| // | |
| // EGOCache.h | |
| // enormego | |
| // | |
| // Created by Shaun Harrison on 7/4/09. | |
| // Copyright 2009 enormego. All rights reserved. | |
| // | |
| #import <Foundation/Foundation.h> |