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
#USAGE: knife ec2 server create (options) | |
# -Z, --availability-zone ZONE The Availability Zone | |
# -A, --aws-access-key-id KEY Your AWS Access Key ID | |
# -K SECRET, Your AWS API Secret Access Key | |
# --aws-secret-access-key | |
# --user-data USER_DATA_FILE The EC2 User Data file to provision the instance with | |
# --bootstrap-version VERSION The version of Chef to install | |
# -N, --node-name NAME The Chef node name for your new node | |
# --server-url URL Chef Server URL |
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 <stdlib.h> | |
#include <cstddef> | |
class NextOnFreeList { | |
public: | |
NextOnFreeList *next; | |
}; | |
class Rational { | |
public: |
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 'formula' | |
class Mysql41 < Formula | |
homepage 'http://download.softagency.net/MySQL/Downloads/MySQL-4.1/' | |
url 'http://download.softagency.net/MySQL/Downloads/MySQL-4.1/mysql-4.1.22.tar.gz' | |
version '4.1.22' | |
md5 '37b4479951fa0cf052269d27c41ca200' | |
depends_on 'readline' |
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 <stdlib.h> | |
#include <cstddef> | |
template <typename T> | |
class MemoryPool { | |
public: | |
MemoryPool(size_t size=EXPANSION_SIZE) { | |
ExpandTheFreeList(size); | |
} |
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 'formula' | |
class Mysql40 < Formula | |
homepage 'http://mirror.provenscaling.com/mysql/community/source/4.0/' | |
url 'http://mirror.provenscaling.com/mysql/community/source/4.0/mysql-4.0.25.tar.gz' | |
version '4.0.25' | |
sha1 '65315c7659c75fcc9f3d9f749dbed26581f6da9c' | |
depends_on 'readline' |
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 <stdlib.h> | |
#include <cstddef> | |
class MemoryChunk { | |
public: | |
MemoryChunk(MemoryChunk *next_chunk, size_t req_size) | |
: next_(next_chunk), | |
chunk_size_(req_size > DEFAULT_CHUNK_SIZE ? req_size : DEFAULT_CHUNK_SIZE), | |
bytes_already_allocated_(0) { |
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> | |
#include <sstream> | |
#include <string> | |
#include <v8.h> | |
using namespace std; | |
int main(int argc, const char **argv) { | |
// Create a scope and environment | |
v8::HandleScope scope; |
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
赤 | |
うすい:#F4D6E0 [244, 214, 224] | |
こい:#DE7699 [222, 118, 153] | |
青 | |
うすい:#CCE9F9 [204, 233, 249] | |
こい:#4CBAEB [76, 186, 235] | |
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 <functional> | |
#include <iostream> | |
#include <map> | |
#include <memory> | |
#include <string> | |
typedef int EventType; | |
struct Event { | |
public: |
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
. | |
├── Gruntfile.coffee | |
├── README.md | |
├── app.coffee | |
├── component.json | |
├── lib | |
├── package.json | |
├── public | |
│ ├── css | |
│ ├── img |