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 csv | |
import os | |
import random | |
from itertools import chain | |
from graphviz import Graph | |
def local_point_crawl(points, point_count, connections, connection_count): | |
dot = Graph(comment='Area Map') |
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 <memory> | |
using namespace std; | |
class Foo { | |
public: | |
Foo(int a, int b) { | |
this->a = a; | |
this->b = b; |
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 <functional> | |
using namespace std; | |
using namespace std::placeholders; | |
int add(int a, int b) { | |
return a+b; | |
} |
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
cmake_minimum_required (VERSION 2.8) | |
add_definitions(-std=c++11) | |
project (ChaiTutorial) | |
add_library(myModule SHARED myModule.cpp) | |
list(APPEND LIBS ${READLINE_LIB}) | |
include_directories(/usr/local/include) | |
install(TARGETS myModule DESTINATION /usr/local/lib/chaiscript) |
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
#!/usr/bin/env python3 | |
from csv import reader | |
letter_template = """ | |
<html> | |
<body> | |
<p>{0} {1}</p> | |
<p>Hi,</p> |
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
#string interpolation is similar to python - be sure to import string utils | |
import strutils | |
var output = "a $1 parrot" % ["dead"] | |
echo(output) | |
for time in countUp(1,10): | |
echo("I like traffic lights $time" % ["time", intToStr(time)]) | |
echo("But only when they're green") |
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
#simple hello world in nimrod | |
echo("Hello World!") |
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
from functools import wraps | |
class Boat(object): | |
def __init__(self,color): | |
self.color = color | |
def hello(self): | |
print("I'm a {} boat".format(self.color)) |
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
------------------------------------------------------------ | |
/usr/bin/pip3 run on Sat Mar 1 09:10:17 2014 | |
Downloading/unpacking cryptography | |
Getting page https://pypi.python.org/simple/cryptography/ | |
URLs to search for versions for cryptography: | |
* https://pypi.python.org/simple/cryptography/ | |
Analyzing links from page https://pypi.python.org/simple/cryptography/ | |
Skipping link https://pypi.python.org/packages/cp26/c/cryptography/cryptography-0.2-cp26-none-win32.whl#md5=13e5c4b19520e7dc6f07c6502b3f74e2 (from https://pypi.python.org/simple/cryptography/); unknown archive format: .whl | |
Skipping link https://pypi.python.org/packages/cp26/c/cryptography/cryptography-0.2.1-cp26-none-win32.whl#md5=00e733648ee5cdb9e58876238b1328f8 (from https://pypi.python.org/simple/cryptography/); unknown archive format: .whl |
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
Getting docstrings right: | |
http://www.python.org/dev/peps/pep-0257/ | |
Getting syntastic to work on windows: | |
http://www.reddit.com/r/learnpython/comments/1bjq2g/if_you_use_vim_and_youre_using_python_or_learning/ |
NewerOlder