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
# Maintainer: c0nd0r <[email protected]> | |
# Contributor: Thomas Dziedzic < gostrc at gmail > | |
# Contributor: webjdm <[email protected]> | |
# Contributor: Scott W. Dunlop <[email protected]> | |
pkgname=bin32-firefox | |
pkgver=34.0 | |
pkgrel=1 | |
pkgdesc="bin32-firefox for Arch x86_64 (en-US)" | |
arch=('x86_64') |
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
// You can edit this code! | |
// Click here and start typing. | |
package main | |
import "fmt" | |
import "runtime" | |
import "strings" | |
func identifyPanic() string { | |
var name, file string |
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
# Maintainer: fnord0 <fnord0 AT riseup DOT net> | |
# Hacked by swdunlop for yara2 and removed spurious .install <[email protected]> | |
pkgname=('yara2') | |
pkgver=2.0.0 | |
pkgrel=1 | |
epoch= | |
pkgdesc="yara - A malware identification and classification tool" | |
arch=('x86' 'x86_64') | |
url="https://github.com/plusvic/yara/archive/v${pkgver}.tar.gz" | |
license=('APACHE') |
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
/* plyml converts Apple plists into YAML, and vice-versa. This is used to make it easier to hack on TextMate and Sublime Text themes. It depends on Apple's "plutil" utility, meaning it is only useful on OSX. */ | |
package main | |
import ( | |
"encoding/json" | |
"fmt" | |
"io/ioutil" | |
"launchpad.net/goyaml" | |
"os" | |
"os/exec" |
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
FINNIX_VERSION ?= 108 | |
FINNIX_URL ?= http://www.finnix.org/releases/$(FINNIX_VERSION)/finnix-$(FINNIX_VERSION).iso | |
FINNIX_ISO = src/finnix-$(FINNIX_VERSION).iso | |
SSH_ISO ?= finnix-$(FINNIX_VERSION)-ssh.iso | |
SSH_PASSWORD ?= applypasswordhereplease | |
BOOT_KERNEL ?= boot/x86/linux | |
BOOT_INITRD ?= boot/x86/initrd.xz | |
BOOT_VGA ?= normal |
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
# Maintainer: Alex Chamberlain <[email protected]> | |
name=jq | |
pkgname=$name-git | |
pkgver=1.1 | |
pkgrel=3 | |
epoch= | |
pkgdesc="Command-line JSON processor" | |
arch=('i686' 'x86_64') | |
url="http://stedolan.github.com/jq/" | |
license=('custom') |
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
package main | |
import ( | |
"encoding/json" | |
"os" | |
"text/scanner" | |
) | |
type Token struct { | |
Position scanner.Position `json:"pos"` |
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 python | |
import sys | |
import re | |
import subprocess | |
RULES = [ | |
#'[javac] foo.java:6: cannot find symbol' | |
[r'^ *\[javac\] ([^:]+:[^:]):(.*)$', '{0}: {1}'], | |
] |
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
# our application server | |
app = require('express').createServer() | |
app.msgs = [] # a history of posted messages | |
app.defers = [] # a list of deferred responses | |
# / redirects to /q | |
app.get '/', (req, res) => | |
res.redirect('/q') | |
# /q[/<xxx>] query messages from the wall; may block for a protracted period |