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
| var http = require("http"); | |
| var url = require("url"); | |
| var fs = require("fs"); | |
| var sys = require('sys'); | |
| var config = require('./config'); | |
| var emailer = require('./emailer').emailer; | |
| var appLogger = require('./logger').appLogger; | |
| var downloadDirSuffix = config.downloadDirSuffix; | |
| var downloadDir = config.downloadDir; |
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
| <?php | |
| class Foo { | |
| public static function name() { | |
| echo __CLASS__; | |
| } | |
| } |
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
| /* This is a template command. */ | |
| CmdUtils.CreateCommand({ | |
| name: "example", | |
| icon: "http://example.com/example.png", | |
| homepage: "http://example.com/", | |
| author: {name: "Your Name", email: "you@example.com"}, | |
| license: "GPL", | |
| description: "A short description of your command", | |
| help: "How to use your command", | |
| takes: {"input": /.*/}, |
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
| <?php | |
| /** | |
| * Brightkite PHP Object to do basic things such as checkin, post a note, and search | |
| * for location. | |
| * | |
| * This object is chain-able. | |
| * Ex: | |
| * Brightkite::factory()->current_location()->note('new note'); | |
| * Brightkite::factory()->address('San Francisco, CA')->checkin()->note('new note'); |
NewerOlder