/s registerapp ?
(앱 최초 등록 및 토큰 발급)/s enableapp ?
(앱을 특정 채널에서 사용 가능하도록 활성화)/s disableapp ?
/s unregisterapp ?
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
~모그님 디도스 쏘신다~ | |
디도스 디도스 모그님 쏘신다 | |
유선번쩍 무선번쩍 전산망을 쥐락펴락 | |
좀비들을 한대모아 디도스 쏘신다 | |
브레인 쏘시던 디도스 오늘은 선관위 쏘신다 | |
TCP(티씨피) 패킷 UDP(유디피) 패킷 | |
디도스 쏘신다 |
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
--- src_old/fe-gtk/menu.c 2013-12-06 10:07:24.153513364 +0900 | |
+++ src_new/fe-gtk/menu.c 2013-12-06 10:07:09.105417417 +0900 | |
@@ -1562,11 +1562,13 @@ | |
static struct mymenu mymenu[] = { | |
{N_("_XChat"), 0, 0, M_NEWMENU, 0, 0, 1}, | |
- {N_("Network Li_st..."), menu_open_server_list, (char *)&pix_book, M_MENUPIX, 0, 0, 1, GDK_s}, | |
+ //{N_("Network Li_st..."), menu_open_server_list, (char *)&pix_book, M_MENUPIX, 0, 0, 1, GDK_s}, --20131206 devunt | |
+ {N_("Network Li_st..."), menu_open_server_list, (char *)&pix_book, M_MENUPIX, 0, 0, 1}, | |
{0, 0, 0, M_SEP, 0, 0, 0}, |
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 python | |
# -*- coding: utf-8 -*- | |
from threading import Thread | |
import subprocess | |
import logging | |
import os | |
SCREEN_LOCK = ["sudo", "-u", "devunt", "/usr/bin/gnome-screensaver-command", "-a"] | |
SCREEN_UNLOCK = ["sudo", "-u", "devunt", "/usr/bin/gnome-screensaver-command", "-d"] |
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 python | |
# -*- coding: utf-8 -*- | |
import atexit | |
import bluetooth._bluetooth as bluez | |
import struct | |
import subprocess | |
from time import time | |
from threading import Timer |
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
import re | |
import requests | |
RE_AUTHENTICITY_TOKEN = re.compile(r'<input.*value="(?P<token>[a-z0-9]{40})".*>') | |
class Twitter: | |
def __init__(self, username, password): | |
self.session = requests.Session() |
I hereby claim:
- I am devunt on github.
- I am devunt (https://keybase.io/devunt) on keybase.
- I have a public key whose fingerprint is 6319 6E84 D527 B115 7313 FC91 C9E4 965E 901B 88E7
To claim this, I am signing this object:
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
🌞 Morning 35 commits ██▊░░░░░░░░░░░░░░░░░░ 13.6% | |
🌆 Daytime 121 commits █████████▉░░░░░░░░░░░ 47.1% | |
🌃 Evening 84 commits ██████▊░░░░░░░░░░░░░░ 32.7% | |
🌙 Night 17 commits █▍░░░░░░░░░░░░░░░░░░░ 6.6% |
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
Svelte +4.0k/ -1.2k ███████████▎░░░░░░░░░ 54.1% | |
TypeScript +1.3k/ -708 ████▌░░░░░░░░░░░░░░░░ 21.9% | |
JSON +545/ -286 ████░░░░░░░░░░░░░░░░░ 19.4% | |
JavaScript +257/ -61 ▌░░░░░░░░░░░░░░░░░░░░ 3.0% | |
GraphQL +110/ -0 ▏░░░░░░░░░░░░░░░░░░░░ 0.7% | |
CSS +11/ -18 ░░░░░░░░░░░░░░░░░░░░░ 0.4% | |
YAML +35/ -0 ░░░░░░░░░░░░░░░░░░░░░ 0.2% | |
HTML +17/ -4 ░░░░░░░░░░░░░░░░░░░░░ 0.2% | |
Markdown +1/ -1 ░░░░░░░░░░░░░░░░░░░░░ 0.0% |
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
import { ESLintUtils } from '@typescript-eslint/utils'; | |
export default ESLintUtils.RuleCreator((name) => name)({ | |
name: 'no-excessive-whitespace', | |
meta: { | |
type: 'layout', | |
fixable: 'whitespace', | |
docs: { | |
description: 'Find excessive whitespace in classnames', | |
recommended: false, |