/s registerapp ?
(μ± μ΅μ΄ λ±λ‘ λ° ν ν° λ°κΈ)/s enableapp ?
(μ±μ νΉμ μ±λμμ μ¬μ© κ°λ₯νλλ‘ νμ±ν)/s disableapp ?
/s unregisterapp ?
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 41 commits βββββββββββββββββββββ 9.0% | |
π Daytime 205 commits βββββββββββββββββββββ 45.0% | |
π Evening 182 commits βββββββββββββββββββββ 39.9% | |
π Night 28 commits βββββββββββββββββββββ 6.1% |
This file contains hidden or 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
Dart +547/ -571 βββββββββββββββββββββ 88.5% | |
JSON +92/ -90 βββββββββββββββββββββ 11.3% | |
GraphQL +2/ -2 βββββββββββββββββββββ 0.2% |
This file contains hidden or 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, |