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
{ | |
"_cmd_old": "C:\\Program Files (x86)\\BYOND\\bin\\dm.exe", | |
"cmd": "F:\\PATH\\TO\\vgstation13\\byond\\bin\\dm.exe", | |
"args": [ "vgstation13.dme" ], | |
"sh": false, | |
"errorMatch": | |
[ | |
"\n(?<file>[\\\\\/0-9a-zA-Z\\._]+):(?<line>\\d+).*" | |
] | |
} |
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
@command(r"testmerge\s*\[?(\d+)\]?$") | |
async def test_merger(content, match, message): | |
if not isowner(message.author): | |
await output(message.channel, "No") | |
return | |
id = int(match.group(1)) | |
async with aiohttp.ClientSession() as session: | |
# GET /repos/:owner/:repo/pulls/:number | |
url = github_url("/repos/{}/{}/pulls/{}".format(get_config("github.repo.owner"), get_config("github.repo.name"), id)) |
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
# pg2mysql SQL Fixer | |
# (c)2015 Rob "N3X15" Nelson <[email protected]> | |
# | |
# Available under the MIT Open-Source License | |
# | |
import os | |
import sys | |
import re |
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
''' | |
Spengies Assembler Blueprint Generator | |
Copyright (c) 2015 Rob "N3X15" Nelson <[email protected]> | |
Permission is hereby granted, free of charge, to any person obtaining a copy | |
of this software and associated documentation files (the "Software"), to deal | |
in the Software without restriction, including without limitation the rights | |
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
copies of the Software, and to permit persons to whom the Software is |
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
<?php | |
/* MIT license, (c) 2008-2015 Rob Nelson. | |
This is older than Christ, so may or may not work. | |
Older than composer, so you need ADODB and Savant2 for the verbatim version. | |
*/ | |
include_once('adodb/adodb.inc.php'); | |
include_once('Savant2.php'); | |
class DNSBL | |
{ |
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
import os, sys, re, argparse | |
REG_ADMIN_PM = re.compile('ADMIN: (HELP|PM)') | |
REG_ADMIN_CHAT = re.compile('ADMIN: MOD') # msay | |
argp = argparse.ArgumentParser() | |
argp.add_argument('filename', type=str, help="Filename to grep") | |
argp.add_argument('outfile', type=str, help="Report filename") | |
argp.add_argument('-s', '--start', type=int, default=0, nargs='?', help='Line number to start at') | |
argp.add_argument('-e', '--end', type=int, default=None, nargs='?', help='Line number to end at') |
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
--TEST-- | |
Bug #68156 (pg_query_params Sets Boolean False to Blank String) | |
--SKIPIF-- | |
<?php | |
include("skipif.inc"); | |
skip_server_version('7.4', '<'); | |
?> | |
--FILE-- | |
<?php | |
error_reporting(E_ALL); |
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
--- C:/Users/Rob/Documents/Projects/vgstation13/code/game/dna/dna_modifier-a10e760.dm Mon Dec 16 20:53:20 2013 | |
+++ C:/Users/Rob/Documents/Projects/vgstation13/code/game/dna/dna_modifier.dm Mon Dec 16 06:33:31 2013 | |
@@ -14,7 +14,7 @@ | |
var/locked = 0 | |
var/mob/living/carbon/occupant = null | |
var/obj/item/weapon/reagent_containers/glass/beaker = null | |
- var/opened = 0.0 | |
+ var/opened = 0 | |
/obj/machinery/dna_scannernew/New() |
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
/datum/construction/reversible/mecha/phazon | |
result = "/obj/mecha/combat/phazon" | |
steps = list( | |
//1 | |
list("key"=/obj/item/weapon/weldingtool, | |
"backkey"=/obj/item/weapon/wrench, | |
"desc"="External armor is wrenched."), | |
//2 | |
list("key"=/obj/item/weapon/wrench, |
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
package net.llamaslayers.minecraft.biome; | |
import java.lang.reflect.Field; | |
import java.util.List; | |
import java.util.Random; | |
import java.util.logging.Logger; | |
import net.minecraft.server.BiomeBase; | |
import net.minecraft.server.BiomeCache; | |
import net.minecraft.server.ChunkPosition; |
NewerOlder