How to use:
- Install Python
- Install Python Watchdog:
pip install watchdog
- Put
undertailer.py
next toundertale.ini
- Run it from the commandline:
python undertailer.py
- Play undertale and watch the commandline output
How to use:
pip install watchdog
undertailer.py
next to undertale.ini
python undertailer.py
$ gulp watch | |
module.js:338 | |
throw err; | |
^ | |
Error: Cannot find module 'orchestrator' | |
at Function.Module._resolveFilename (module.js:336:15) | |
at Function.Module._load (module.js:278:25) | |
at Module.require (module.js:365:17) | |
at require (module.js:384:17) | |
at Object.<anonymous> (/Users/nick/aurelia/navigation-app/node_modules/gulp/index.js:4:20) |
---- Primary Entities | |
-- You search by these | |
create table tag ( | |
id serial primary key, | |
name varchar not null, | |
unique (name) | |
); | |
-- The primary post type |
function to_char(number){ | |
return [ | |
(number & 0xff000000) >>> 24, | |
(number & 0x00ff0000) >>> 16, | |
(number & 0x0000ff00) >>> 8, | |
(number & 0x000000ff) >>> 0 | |
]; | |
} | |
function to_char_array(wordarray){ |
builder.js:43 Uncaught TypeError: Cannot read property 'title' of null | |
builder.js:43 buildDocspreview.js:30 update | |
local-storage.js:17 (anonymous function) | |
local-storage.js:16 LocalStorage.save | |
editor.js:24 onAceChange | |
lodash.js:6879 delayed |
swagger: '2.0' | |
info: | |
version: "0.0.0" | |
title: Example | |
paths: | |
/test: | |
get: | |
responses: | |
200: | |
description: OK |
db.session.query(MyTable).filter( | |
db.or_( | |
db.text("(my_table.json_field ->> key)::text = :value").bindparams(value=value1), | |
db.text("(my_table.json_field ->> key)::text = :value").bindparams(value=value2), | |
) | |
) |
package main | |
import ( | |
"github.com/jmoiron/sqlx" | |
_ "github.com/lib/pq" | |
) | |
type Result struct { | |
Testhex string | |
} |
openssl genrsa -out private.pem 4096 | |
openssl spkac -key private.pem > public.spkac | |
echo "CN=test" >> public.spkac | |
openssl ca -config openssl.conf -extensions client -spkac public.spkac -out signed.pem -batch | |
openssl pkcs12 -nodes -export -inkey private.pem -in signed.pem -out cert.p12 | |
# No certificate matches private key |
package main | |
import ( | |
"net/http" | |
"code.google.com/p/gogoprotobuf/proto" | |
"path/to/protobufs" | |
"io/ioutil" | |
) | |
func read_protobuf(request *http.Request) *protobufs.MyMessage { | |
body, err := ioutil.ReadAll(request.Body) |