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 readchar | |
class Parser: | |
def __init__(self): | |
self.lookahead = readchar.readchar() | |
def expr(self): | |
self.term() | |
while True: | |
if self.lookahead == b'+': |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
; Original script xlr-space.ahk (https://sspai.com/post/57157) | |
; Modified by amorphobia (https://github.com/amorphobia) | |
; Space | |
Space::Send {Space} | |
^Space::Send ^{Space} | |
#Space::Send #{Space} | |
^#Space::Send ^#{Space} | |
!Space::Send !{Space} |
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
\documentclass[preview]{standalone} | |
\usepackage{tikz} | |
\usetikzlibrary{calc} | |
\usetikzlibrary{arrows} | |
\tikzset{default/.style={draw,inner sep=10pt}} | |
\tikzset{else master/.style={draw=gray!60,inner sep=10pt}} | |
\tikzset{feature/.style={draw,inner sep=10pt,fill=gray}} | |
\tikzset{master/.style={draw,inner sep=10pt,fill=blue!20}} | |
\tikzset{rect/.style={rectangle,minimum height=25pt,minimum width=60pt}} |
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
# 小鹤音形 9.7_20190709 build 378 系统词库 | |
# 删除了词库中的《静夜思》 | |
# $ddcmd( 静夜思·李白 | |
# | |
# 床前明月光,疑是地上霜。 | |
# 举头望明月,低头思故乡。 | |
# ,『静夜思·李白』) jysi | |
--- |
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
var dict = [1: [11, 13, 15], 2: [23, 24]] | |
dict[3, default: []].append(39) |
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
BEGIN:VCALENDAR | |
PRODID:-//Chen Wei//Chinese Lunar Calendar//EN | |
VERSION:2.0 | |
CALSCALE:GREGORIAN | |
METHOD:PUBLISH | |
X-WR-CALNAME:农历 | |
X-WR-TIMEZONE:Asia/Shanghai | |
X-WR-CALDESC:中国农历2017-2023, 包括节气. | |
BEGIN:VEVENT | |
DTSTAMP:20200102T054544Z |
This file has been truncated, but you can view the full file.
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
BEGIN:VCALENDAR | |
PRODID:-//Chen Wei//Chinese Lunar Calendar//EN | |
VERSION:2.0 | |
CALSCALE:GREGORIAN | |
METHOD:PUBLISH | |
X-WR-CALNAME:农历 | |
X-WR-TIMEZONE:Asia/Shanghai | |
X-WR-CALDESC:中国农历1901-2100, 包括节气. | |
BEGIN:VEVENT | |
DTSTAMP:20180227T141148Z |
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
nginx: | |
container_name: ghost_blog_nginx | |
image: nginx | |
ports: | |
- "80:80" | |
- "443:443" | |
volumes: | |
- ~/Developer/Docker/ghost_blog/html:/usr/share/nginx/html | |
- ~/Developer/Docker/ghost_blog/nginx:/etc/nginx | |
links: |