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 |
// 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 |
// 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 |
I hereby claim:
To claim this, I am signing this object:
Homebrew build logs for mkvtoolnix on macOS 10.14.2 | |
Build date: 2018-12-16 13:55:52 |
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 |