I hereby claim:
- I am krzysztofantczak on github.
- I am lockbox (https://keybase.io/lockbox) on keybase.
- I have a public key whose fingerprint is 3099 E525 812A 7971 D4D5 8AF8 0AE7 3457 99DC 579F
To claim this, I am signing this object:
-- 1. apt-get install prosody-trunk | |
-- 2. Checkout prosody-modules on Google Code | |
-- 3. Move all modules to /usr/lib/prosody/modules | |
-- 4. Move the mod_smacks module to mod_smacks2 and copy it to mod_smacks3 | |
-- 5. Move the files in mod_smacks* to match the new names | |
-- 6. In mod_smacks3/mod_smacks3.lua s/urn:xmpp:sm:2/urn:xmpp:sm:3/g | |
-- 7. Set the Prosody configuration to: | |
admins = { "ADMIN@HOST" } | |
daemonize = true |
I hereby claim:
To claim this, I am signing this object:
/* ivan(a.t)mysqlab.net */ | |
package main | |
import ( | |
"syscall" | |
"os" | |
"log" | |
) | |
func daemon(nochdir, noclose int) int { |
local_client | |
server | |
client | |
ext |
/* bling.js */ | |
window.$ = document.querySelectorAll.bind(document) | |
Node.prototype.on = window.on = function (name, fn) { | |
this.addEventListener(name, fn) | |
} | |
NodeList.prototype.__proto__ = Array.prototype |
#!/bin/bash | |
# VM launcher | |
# Jason Gerfen <[email protected]> | |
# Create new if asked | |
if [ "$1" == "install" ]; then | |
if [ -f "$3" ]; then | |
dd if=/dev/zero of=vm/$2 bs=516096 seek=9182 count=0 | |
qemu-system-x86_64 -m 2048 -boot d -cdrom $3 vm/$2 -net nic -net user |
The myprint service handles wireless printing for the MLIB PC labs. FreeBSD is the operating system that was chosen for this service primarily for its security features.
Details on the current configuration of myprint.scl.utah.edu can be found below. 07/12/2013
This first section details the various configuration options applied to the kernel, NAT & traffic passing to jailed (non routable net) env, usage of IPFW service to filter incoming & outgoing traffic to specific subnets & or targets, OS, Jail & TCP stack hardening options
package main | |
import ( | |
"encoding/json" | |
"net/http" | |
"net/url" | |
"fmt" | |
"io" | |
"regexp" |
package main | |
import ( | |
"code.google.com/p/go.net/websocket" | |
//"github.com/garyburd/go-websocket/websocket" | |
//"github.com/zhangpeihao/gowebsocket" | |
"net/http" | |
"net/rpc" | |
"net/rpc/jsonrpc" | |
) |