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
Server Software: lighttpd/1.4.28 | |
Server Hostname: 10.0.1.16 | |
Server Port: 80 | |
Document Path: /run.php | |
Document Length: 50335 bytes | |
Concurrency Level: 5 | |
Time taken for tests: 3.931 seconds | |
Complete requests: 1000 |
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/env ruby | |
## Config | |
SCP_HOST = "96.44.143.82" | |
SCP_USER = "phelps" | |
SCP_PATH = "public_html/s.64bits.co/" | |
WWW_BASE = "http://s.64bits.co/" | |
IMG_PATH = '/Desktop/' | |
IMG_GLOB = 'Screen Shot*.png' | |
LEN_RAND = 4 |
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
#include <iostream> | |
#include <string> | |
#include <sstream> | |
using namespace std; | |
struct statsBase { | |
int stamina; | |
int agility; | |
int defence; | |
int intellect; |
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 https://github.com/mxcl/homebrew/pull/3601 - Thanks krono | |
require 'formula' | |
def universal? | |
ARGV.flag? '--universal' | |
end | |
class Libnoise <Formula |
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
local _table = { | |
target = { | |
health = (function()return 20 end) | |
}, | |
player = { | |
health = (function()return 20 end) | |
}, | |
} | |
local table = { |
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
ProbablyEngine.rotation.register(71 --[[ Arms Warrior ]]-- , { | |
{ "Battle Shout" }, | |
{ "Recklessness", { | |
"cooldowns", | |
"target.health > 20", | |
"target.debuff(Colossus Smash).duration > 5" | |
}}, | |
{ "Berserker Rage", "cooldowns" }, | |
{ "Deadly Calm", { | |
"cooldowns", |
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
-- SPEC ID 66 | |
ProbablyEngine.rotation.register(66, { | |
{ "Blessing of Kings", "!player.buff(Blessing of Kings)" }, | |
{ "Avenging Wrath", "cooldowns" }, | |
{ "Sacred Shield", "!player.buff(Sacred shield)" }, | |
{ "Hammer of the Righteous", "!target.debuff(Weakened Blows)" }, | |
{ "Shield of the Righteous", { | |
"player.holypower = 3", | |
"player.health > 90" | |
}}, |
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
-- SPEC ID 258 | |
ProbablyEngine.rotation.register(258, { | |
{ "Power Word: Fortitude", "!player.buff(Power Word: Fortitude)" }, | |
{ "Inner Fire", "!player.buff(Inner Fire)" }, | |
{ "Shadow Form", "!player.buff(Shadowform)" }, | |
{ "Shadow Word: Pain", "target.debuff(Shadow Word: Pain).duration < 3" }, | |
{ "Vampiric Touch", "target.debuff(Vampiric Touch).duration < 4" }, | |
{ "Devouring Plague", "player.shadoworbs = 3" }, | |
{ "Mind Blast" }, | |
{ "Mind Spike", "player.buff(Surge of Darkness)" }, |
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
-- SPEC ID 103 | |
ProbablyEngine.rotation.register(103, { | |
{ "Faerie Fire", "!target.debuff(Faerie Fire)" }, | |
{ "Savage Roar", { | |
"!player.buff(Savage Roar)", | |
"player.combopoints = 0" | |
}}, | |
{ "Savage Roar", { | |
"player.buff(Savage Roar).duration < 3", | |
"player.combopoints = 5" |
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
#include <stdlib.h> | |
#include <mach/mach.h> | |
#include <Security/Authorization.h> | |
int acquireTaskportRight() | |
{ | |
OSStatus stat; | |
AuthorizationItem taskport_item[] = {{"system.privilege.taskport:"}}; | |
AuthorizationRights rights = {1, taskport_item}, *out_rights = NULL; | |
AuthorizationRef author; |