Skip to content

Instantly share code, notes, and snippets.

View pmrowla's full-sized avatar

Peter Rowlands (변기호) pmrowla

View GitHub Profile
@pmrowla
pmrowla / autoexec.cfg
Last active December 16, 2015 22:59
numpad
// Author: Peter "Astroman" Rowlands
// CS:GO autoexec.cfg
// misc junk
cl_autowepswitch "0" // don't use autoswitch!
hud_showtargetid "1"
cl_autohelp "0"
cl_showhelp "0"
cl_disablefreezecam "1"
// turn this back on for esea stats
http://www.twitch.tv/bazza87
http://www.twitch.tv/kuvosa
http://www.twitch.tv/emalde
http://www.twitch.tv/testrunner
http://www.twitch.tv/cosmowright
http://www.twitch.tv/clumsyyoukai
http://www.twitch.tv/mexiricanbassmonkey
http://www.twitch.tv/srkfunkdoc
http://www.twitch.tv/eg_floe
http://www.twitch.tv/teamsp00ky
@pmrowla
pmrowla / autoexec.cfg
Last active May 18, 2023 21:16
DOTA 2 autoexec
// dota 2 autoexec.cfg file
con_enable "1" //Enables Console
//cl_cmdrate "60" //Amount of updates sent to server per second
//cl_updaterate "60" //Amount of updates received from server per second
//rate "80000" //Total amount of bandwith dota may use
//cl_interp "0" //More network stuff below...
//cl_interp_ratio "1"
//cl_smooth "1"
//cl_smoothtime "0.01"
//cl_lagcompensation "1"

This Week in KPOP (151025 to 151031)

 

Releases

Group Release Type Date (KST)
f(x) 4Walls Album 10/27
Kisum and Hwasa Love Talk Single 10/29
#!/usr/bin/env python
from __future__ import unicode_literals
def check_cipher(plaintexts):
winner = None
winner_count = 0
winner_shift = 0
for plaintext, shift in plaintexts:
#!/usr/bin/env python
# -*- coding: utf-8 -*-
'''FizzBuzz library'''
from __future__ import unicode_literals
class FizzBuzzError(Exception):
pass

Keybase proof

I hereby claim:

  • I am pmrowla on github.
  • I am pmrowla (https://keybase.io/pmrowla) on keybase.
  • I have a public key whose fingerprint is 2E02 AF19 BD0D B788 62C1 14EA F5CD CFCE 344E DABF

To claim this, I am signing this object:

  • Best Artist:
  • Best Rookie Artist:
  • Best Album:
  • Best Comeback (Song):
  • Best Debut (Song):
  • Best Choreography/Dance:
  • Best M/V:
  • Best Album B-Side:
  • Best (Individual) Vocalist:
  • Best (Individual) Rapper:
@pmrowla
pmrowla / # mkvtoolnix - 2018-12-16_13-55-52.txt
Created December 16, 2018 05:03
mkvtoolnix on macOS 10.14.2 - Homebrew build logs
Homebrew build logs for mkvtoolnix on macOS 10.14.2
Build date: 2018-12-16 13:55:52
@pmrowla
pmrowla / dash.py
Last active January 24, 2019 07:30
segmentBase with stream=True
import itertools
import logging
import datetime
import os.path
import requests
from streamlink import StreamError, PluginError
from streamlink.compat import urlparse, urlunparse
from streamlink.stream.http import valid_args, normalize_key
from streamlink.stream.stream import Stream