This file contains 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
using System.IO; | |
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
class Program | |
{ | |
static void Main() | |
{ | |
int[] elements = { 1, 8, 9, 13, 2, 7 }; |
This file contains 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 fabric.api import local | |
import jinja2 | |
import sys | |
import os | |
import os.path | |
import webbrowser | |
proj_base_path = sys.path[0] | |
pages_path = os.path.join(proj_base_path, 'pages') | |
build_path = os.path.join(proj_base_path, 'build') |
This file contains 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 sys = require("sys"), | |
http = require("http"), | |
querystring = require("querystring"), | |
htmlparser = require("htmlparser"), | |
soupselect = require("soupselect"), | |
irc = require("irc"); | |
/** | |
* Wrapper for making an HTTP request, reading the data, instantiating a htmlparser.Parser | |
* and parsing the page. htmlparserHandlerFunction will be passed to htmlparser.DefualtHandler. |
NewerOlder