Skip to content

Instantly share code, notes, and snippets.

View mehlert-zz's full-sized avatar

Michael Ehlert mehlert-zz

  • Portland, OR
View GitHub Profile
@mehlert-zz
mehlert-zz / gist:bccb7c90a3497e54e23e9111a9c1f894
Last active November 23, 2017 01:53
jedi academy ...Jedi Academy\GameData\base\autoexec.cfg
seta r_customwidth 2560
seta r_customheight 1440
seta cg_fov 96.4
seta r_mode -1
seta s_kHz "44"
helpusobi 1
seta g_sabermorerealistic 3
seta g_dismemberment 3
seta g_dismemberprobabilities 100
seta g_corpseRemovalTime 0

Keybase proof

I hereby claim:

  • I am mehlert on github.
  • I am jfceugene (https://keybase.io/jfceugene) on keybase.
  • I have a public key ASAF0HkFQBCs_QgaSsyaC1c5wWPO5vLRc6clhRg80pk-Pwo

To claim this, I am signing this object:

import random
gift_exchangers = [ "nathan", "morgan", "nik", "josh", "ali", "will", "nyssa", "sean", "sharon", "mya", "ygal" ]
matched_exchangers = {}
for exchanger in gift_exchangers:
matched_exchangers[exchanger] = random.choice(gift_exchangers)
[
{
"pid": int,
"ppid": int,
"exe": "string"
},
{
"pid": int,
"ppid": int,
"exe": "string"
PIDs = ps.Processes() // slice of current Linux procsaPID = PIDs[0] // pid 1
aPID.Pid() // returns 1 cause pid 1 right
aPID.PPid() // parent pid int
aPID.Executable() // name of exe that spawned (string)