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
<html> | |
<head> | |
<script type="text/javascript" src="http://maps.google.com/maps/api/js?libraries=geometry&sensor=false"></script> | |
<script type="text/javascript"> | |
function initialize() { | |
var cntr = new google.maps.LatLng(-34.397, 150.644); | |
var myOptions = { | |
zoom: 14, |
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
// -*- mode: c++; compile-command: "g++ -g -o haf haf.cpp"; -*- | |
// hand and foot scoring program by Joseph Mickelson | |
#include <iostream> | |
#include <stdio.h> //for printf | |
#include <vector> | |
#include <numeric> //for accumulate | |
#ifdef __linux__ | |
#include <stdlib.h> | |
#endif |
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 86f6bf9bb1f833b6b1a853b438ec82a3e0bfc864 Mon Sep 17 00:00:00 2001 | |
From: Mitchel Humpherys <[email protected]> | |
Date: Fri, 24 Jun 2011 16:33:03 -0700 | |
Subject: [PATCH] bogus tab key and copyright | |
--- | |
src/client.c | 3 ++- | |
1 files changed, 2 insertions(+), 1 deletions(-) | |
diff --git a/src/client.c b/src/client.c |
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
diff -c /home/mgalgs/abs/neercs-git/PKGBUILD.orig /home/mgalgs/abs/neercs-git/PKGBUILD | |
*** /home/mgalgs/abs/neercs-git/PKGBUILD.orig 2011-06-24 17:01:37.858847642 -0700 | |
--- /home/mgalgs/abs/neercs-git/PKGBUILD 2011-06-24 16:59:40.155520196 -0700 | |
*************** | |
*** 35,40 **** | |
--- 35,41 ---- | |
rm -rf "$_gitname"-build | |
git clone "$_gitname" "$_gitname"-build | |
cd "$_gitname"-build | |
+ git apply "${startdir}/0001-bogus-tab-key-and-copyright.patch" |
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
<html> | |
<head> | |
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script> | |
<script type="text/javascript"> | |
$(function() { | |
$('a.toggler').click(function() { | |
var $this = $(this); | |
console.log($this.next(".hidden")); | |
$this.next(".hidden").slideToggle("fast", function() { |
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
(defun ido-completing-read-multiple (prompt choices &optional predicate require-match initial-input hist def sentinel) | |
"Read multiple items with ido-completing-read. Reading stops | |
when the user enters SENTINEL. By default, SENTINEL is | |
\"*done*\". SENTINEL is disambiguated with clashing completions | |
by appending _ to SENTINEL until it becomes unique. So if there | |
are multiple values that look like SENTINEL, the one with the | |
most _ at the end is the actual sentinel value. See | |
documentation for `ido-completing-read' for details on the | |
other parameters." | |
(let |
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
# Maintainer: Mitchel Humpherys <[email protected]> | |
pkgname=python-matplotlib-git | |
pkgver=20111116 | |
pkgrel=1 | |
pkgdesc="matplotlib python library (including python3 support)" | |
url="https://github.com/matplotlib/matplotlib" | |
arch=('any') | |
license=('custom') | |
depends=('python-numpy' 'python3-dateutil' 'python-pytz' 'freetype2' 'libpng') |
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
# Maintainer: Marcin Skory <armitage at gfreedom dot org> | |
# Contributor: Arkham <arkham at archlinux dot us> | |
# Contributor: Christoph Zeiler <archNOSPAM_at_moonblade.dot.org> | |
# Contributor: Jacek Poplawski <jacekpoplawski__gmail> | |
# Contributor: Mitchel Humpherys <[email protected]> | |
pkgname=alephone | |
pkgver=20111201 | |
pkgrel=1 | |
pkgdesc='A free, enhanced port of the classic FPS "Marathon 2" by Bungie Software' |
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
# Maintainer: Marcin Skory <armitage at gfreedom dot org> | |
# Contributor: Christoph Zeiler <rabyte*gmail> | |
# Contributor: Mitchel Humpherys <[email protected]> | |
pkgname=alephone-marathon | |
pkgver=20111201 | |
pkgrel=2 | |
pkgdesc="Marathon 1 scenario data files" | |
arch=('any') | |
url="http://trilogyrelease.bungie.org/" |
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/python2 | |
import sys | |
import signal | |
from threading import Thread,Lock | |
from scapy.all import sniff,IP,sendp,srp1,Ether,ARP,get_if_list,get_if_hwaddr | |
def usage(): | |
print 'Usage: scapy_throuput.py host1_interface host1_ip host2_interfcae host2_ip' |
OlderNewer