- Noto Sans CJK 폰트 설치
- mactype 다운로드후 설치
- 아래의 내용을
C:\Program Files\MacType\ini\NotoSansCJK.ini
에 텍스트 파일로 저장
[Preview]
Font=Noto Sans Mono CJK
Color=$000000
Text=This is Noto Sans Mono CJK 01234567890!@#$%^&*
Size=10
import sys | |
import time | |
import argparse | |
from tqdm import tqdm | |
parser = argparse.ArgumentParser(description='Set time of timer. It shoud be minute') | |
parser.add_argument('-t', '--time', type=int, default=25, help='Set pomodoro interval.') | |
parser.add_argument('-b', '--break_time', type=int, default=5, help='Set pomodoro interval.') | |
parser.add_argument('-r', '--repeat', type=int, default=3, help='Set round of pomodoro.') |
import click | |
pi = 3.14 | |
@click.group() | |
def cli(): | |
pass | |
@cli.command() | |
@click.option( |
C:\Program Files\MacType\ini\NotoSansCJK.ini
에 텍스트 파일로 저장[Preview]
Font=Noto Sans Mono CJK
Color=$000000
Text=This is Noto Sans Mono CJK 01234567890!@#$%^&*
Size=10
{ "version": 1, | |
"notes": "My awesome keymap", | |
"documentation": "\"This file is a QMK Configurator export. You can import this at <https://config.qmk.fm>. It can also be used directly with QMK's source code.\n\nTo setup your QMK environment check out the tutorial: <https://docs.qmk.fm/#/newbs>\n\nYou can convert this file to a keymap.c using this command: `qmk json2c {keymap}`\n\nYou can compile this keymap using this command: `qmk compile {keymap}`\"\n", | |
"keyboard": "ferris/0_1", | |
"keymap": "default", | |
"layout": "LAYOUT_split_3x5_2", | |
"layers": [ | |
["KC_Q" , "KC_W" , "KC_E" , "KC_R" , "KC_T", | |
"KC_Y" , "KC_U" , "KC_I" , "KC_O" , "KC_P", |
Linux - Open your terminal and type: (For Debian based distros)
$ apt-get remove vim-tiny
$ apt-get update
$ apt-get install vim
import time | |
import sys | |
time_start = time.time() | |
seconds = 0 | |
minutes = 0 | |
while True: | |
try: | |
sys.stdout.write("\r{minutes} Minutes {seconds} Seconds".format(minutes=minutes, seconds=seconds)) |