/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 25 commits βββββββββββββββββββββ 4.4% | |
| π Daytime 215 commits βββββββββββββββββββββ 38.1% | |
| π Evening 267 commits βββββββββββββββββββββ 47.3% | |
| π Night 58 commits βββββββββββββββββββββ 10.3% |
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
| JSON +11.5k/ -3 βββββββββββββββββββββ 28.3% | |
| TypeScript +5.5k/ -264 βββββββββββββββββββββ 23.6% | |
| Dart +3.5k/ -3.0k βββββββββββββββββββββ 22.4% | |
| Svelte +5.6k/ -0 βββββββββββββββββββββ 17.0% | |
| YAML +2.3k/ -8 βββββββββββββββββββββ 6.8% | |
| Markdown +143/ -2 βββββββββββββββββββββ 0.7% | |
| SQL +112/ -0 βββββββββββββββββββββ 0.6% | |
| Kotlin +74/ -6 βββββββββββββββββββββ 0.3% | |
| Swift +62/ -4 βββββββββββββββββββββ 0.2% | |
| GraphQL +19/ -22 βββββββββββββββββββββ 0.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
| 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, |