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 python3 | |
import os | |
import lupa | |
DATA_PATH = "/Users/crisher/Library/Application Support/Steam/steamapps/common/Factorio/factorio.app/Contents/data" | |
lua = lupa.LuaRuntime(unpack_returned_tuples=True) | |
def lua_run_file(file): |
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
{ | |
"rows": [ | |
{ | |
"panels": [ | |
{ | |
"datasource": "$awsAccount", | |
"targets": [ | |
{ | |
"dimensions": { | |
"LoadBalancerName": "$product-$environment-$role-01" |
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
MMOGs: | |
Everquest - Disc 1/4 - EQ & Kunark | |
Everquest - Disc 2/4 - Velious & Luclin | |
Everquest - Disc 4/4 - LDoN & GoD | |
Everquest - Scars of Velious | |
Everquest - Ruins of Kunark | |
Everquest - Shadows of Luclin - Discs 1, 2, 3 | |
Everquest - Planes of Power - Discs 1, 2, 3 | |
Everquest - GamePlay Hobby Game Demo CD Disc #5 | |
World of Warcraft - Discs 1,2,3,4,5 |
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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> | |
<html> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
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
0eNrt3VuvZrlxoOm/YtRVD0bbTQbJCFJX4z6fT+7zoGGUPIXpQsuSIJWMNhr6712SXTsT6M3FiM235MxSXNkuq0KZOxdXft8in/X+ry9+8tNff/WLX379s2/+7Cc///n/+OLH/+vDP/nVFz/+fz/6P3/7//v6z3/+s7/+x7/6+v//2Zc//e0/++avfvHVFz/+4i+//uU3v/72n/zoi599+Re//Qd//Z94KV/85kdffP2z/++r//nFj+tv/tuPvvjqZ998/c3XX/31mN/9H3/1Zz/79V/85Ktffvsf+PBv//ynX/7y5Rdf/uyr3478xc9/9e2/8/Of/fa/79s5L9V+9MVf/e5//uY3P/o/poh3Sn+a0rxT6tOU7pwyn4YM55DxNESdQ+RpiPmGPP5Ipm/G4x/O8s14vExqcf5myuMU5zVb2+MU5zVb9XFKi66f/uaYHl1Ab48Z0RX09hgNLqG3p1hwDb09ZQYX0dtTVmwVvTlESmwZvT2kxtbR20MkuI7entKC6+jtKT24jt6eMqLrqL45RqPr6O0xHy7dL//8z3/9F7/+6Zff/PyXb4yxP/7u4q1/PN6cNJ2TxnHSck5qp0mtOCfV46Tqm1SOg8Q3SI6Dmm9QPw7qvkF6HDSCq+zNK7JpcJW9PeWjW/Kvf/Krb7783b/5f/7Br+9+U2vze5rR9bEbtKLLYzOol+jq2A2q0cWxGyTBtbGb04JLYzenB1fGbs4ILozdHHVdi/M0xoJ/ccw3p8zg3xtvT/FezfX14rG3f1fDezmv06AaXam7QRJdqbtBLbpSd4N6dKXuBo3gSt3N0eBK3c2x4ErdzZnBlbqb47ys52GOOi/qevpBa/AL4JuLVYPf/94eEv369/bvJ/rt7+0pI3z3GZufr0bvPrtB4c/Ru0Ez9l3y7SEr9lXyzSFWgjeLze/IavBmsZsjwZvFbk4L3ix2c3rwZrGbM6I3i90gjd0s3h5isZvF20NmeIG2ze9pRRfoZtAs0QW6GxT9JribI8HLcDenBS/ |
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
def convert(value) | |
case value | |
when Symbol, '' # can't intern an empty string | |
value | |
when String | |
value.intern | |
when true | |
:true | |
when false | |
:false |
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
// Token: 0x06004343 RID: 17219 RVA: 0x001F8464 File Offset: 0x001F6864 | |
.method public hidebysig specialname | |
instance float32 get_TickRateMultiplier () cil managed | |
{ | |
// Header Size: 12 bytes | |
// Code Size: 172 (0xAC) bytes | |
// LocalVarSig Token: 0x1100113E RID: 4414 | |
.maxstack 1 | |
.locals init ( | |
[0] valuetype Verse.TimeSpeed |
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
I am trying to transpile a new conditional code path into an existing method. | |
Here is the original code that I am targeting, as output by the Harmony library's CodeInstruction class: | |
ldarg.0 | |
ldflda Verse.IntVec3 startDragCell | |
Here is my new code that replaces it: | |
ldobj DraggableCorners.DraggableCorners |
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
% npm install | |
dyld: Library not loaded: /usr/local/opt/icu4c/lib/libicui18n.61.dylib | |
Referenced from: /usr/local/bin/node | |
Reason: image not found | |
zsh: abort npm install | |
% brew uninstall node | |
Uninstalling /usr/local/Cellar/node/10.1.0... (5,301 files, 51.4MB) | |
% brew install node |
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
[ 4.627] (--) Log file renamed from "/var/log/Xorg.pid-972.log" to "/var/log/Xorg.0.log" | |
[ 4.629] | |
X.Org X Server 1.20.1 | |
X Protocol Version 11, Revision 0 | |
[ 4.629] Build Operating System: Linux 4.4.0-138-generic x86_64 Ubuntu | |
[ 4.629] Current Operating System: Linux sparr-granular-7490 4.18.0-13-generic #14-Ubuntu SMP Wed Dec 5 09:04:24 UTC 2018 x86_64 | |
[ 4.629] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-4.18.0-13-generic root=UUID=4c05e8f0-b9b0-4bad-a652-b3e41bc5b240 ro quiet splash vt.handoff=1 | |
[ 4.629] Build Date: 25 October 2018 02:53:34PM | |
[ 4.629] xorg-server 2:1.20.1-3ubuntu2.1 (For technical support please see http://www.ubuntu.com/support) | |
[ 4.629] Current version of pixman: 0.34.0 |