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
%% ETS CIDR Benchmark (nested blocks, IPv4 and IPv6) | |
%% | |
%% Written in 2015 by Adam Cammack <[email protected]> | |
%% | |
%% To the extent possible under law, the author have dedicated all copyright and | |
%% related and neighboring rights to this software to the public domain | |
%% worldwide. This software is distributed without any warranty. | |
%% | |
%% See <http://creativecommons.org/publicdomain/zero/1.0/> |
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
%% ETS CIDR Benchmark | |
%% | |
%% Written in 2015 by Adam Cammack <[email protected]> | |
%% | |
%% To the extent possible under law, the author have dedicated all copyright and | |
%% related and neighboring rights to this software to the public domain | |
%% worldwide. This software is distributed without any warranty. | |
%% | |
%% See <http://creativecommons.org/publicdomain/zero/1.0/> |
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
#!/bin/sh | |
## Usage: | |
# minihub checkout|fetch|pull|push username branchname | |
# Fetch and checkout, fetch, pull, push, or checkout a user's branch, if you | |
# have access | |
# minihub pull-request|pr username basebranch title [message] | |
# Submit a pull request for the current HEAD to the user's base branch. If | |
# successful, it will print out the URL of the new PR. | |
# |
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
% | |
% DO NOT CHANGE THIS TEMPLATE! | |
% | |
% To allow combining the lecture notes from different students in a | |
% simple way everybody must use the same header. | |
% | |
% If you think the template lack a package, then contact the lecturer, | |
% and we will probably extend the template with your favorite package. | |
% |
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
#!/usr/bin/env ruby | |
require "rubygems" | |
# require your gems as usual | |
require "nokogiri" | |
require 'open-uri' | |
doc = Nokogiri::HTML.parse open('http://cs.ecs.baylor.edu/~mia/courses/3303_201103/csi3303Review1/csi3303review1.html') | |
#this works to here |