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
MANDARIN CHINESE LEARNING RESOURCES + GUIDE | |
ฅ(ミ꒡⋏꒡ミ)∫ʕ¯ᴥ¯oʔ (ง`_´)ง | |
意思 | |
||' ,, | |
'''''|'''''''||''''' ||''''''||''''''|| | |
|, ,|' ,, || || || | |
'''''''''''''''''''''''' || || || | |
,,,,,,,,,,,,,,,,, ||''''''||''''''|| |
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
(function () -- ensure we run in a clean scope | |
-- Prepare globals | |
local my_ENV, globfuncs = {}, {} | |
for k,v in pairs(_ENV) do | |
my_ENV[k] = v | |
if (type(v) == "function") globfuncs[k] = true | |
end |
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
/** | |
Excerpted from https://github.com/mourner/tinyqueue | |
Copyright (c) 2017, Vladimir Agafonkin | |
Permission to use, copy, modify, and/or distribute this software for any purpose | |
with or without fee is hereby granted, provided that the above copyright notice | |
and this permission notice appear in all copies. | |
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH |
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 { TOAST_NOTIFICATION_TRIGGERED } from '../../../constants/ActionTypes' | |
import { NotificationKind, ToastNotification } from './types' | |
import { normalizeToastNotification } from './schema' | |
export interface Action { | |
type: TOAST_NOTIFICATION_TRIGGERED | |
entities: object | |
id: ToastNotification['notificationId'] | |
} |
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
" Jacob Stern - vimrc | |
call pathogen#infect('bundle') | |
call pathogen#helptags() | |
set nocompatible | |
"lets backspace actually work in insert mode | |
set backspace=indent,eol,start |
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/python | |
import csv | |
import inspect | |
__pcs_export = set() | |
def pcs_function(f): | |
__pcs_export.add(f) |