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
// ==UserScript== | |
// @name RefreshPdf | |
// @namespace [email protected] | |
// @description Refresh pdf in current view | |
// @include *.pdf* | |
// @version 1 | |
// @grant none | |
// ==/UserScript== | |
(function () { | |
document.addEventListener('keydown', function (e) { |
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
diff -ru mintty-2.7.0/src/term.h mintty-2.7.0-modified/src/term.h | |
--- mintty-2.7.0/src/term.h 2016-11-11 08:27:15.000000000 -0500 | |
+++ mintty-2.7.0-modified/src/term.h 2016-11-22 00:01:05.582947600 -0500 | |
@@ -462,6 +462,9 @@ | |
termresults results; | |
termimgs imgs; | |
+ | |
+ bool even_line_highlight_mode; | |
+ bool even_line_highlight_toggle; |
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
.PHONY: all clean | |
-include dep.mk | |
OUT ?= out | |
dep.mk: | |
@latexmk -silent -xelatex -dependents main.tex -MF dep.mk -outdir=${OUT} | |
clean: |
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 | |
from six.moves import range | |
import alist | |
import sys | |
def main(param): | |
print(param) | |
if __name__ == '__main__': |
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
/*INV{ | |
{ | |
# text at the begining of the file | |
prelude : """ | |
""" | |
module_name : module_name | |
# text at the beginning of the module definition | |
module_prelude : """ |
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
#!/bin/sh | |
# Consolas family has been rendered weirdly on Linux. | |
# Use fontforge to modify vertical metric fix the issue, | |
# but I am not complete sure since it's my first time to do it. | |
# It requires fontforge to be installed. | |
for ttf in consola*; do | |
fontforge -lang=ff -script <<EOF |
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 | |
import zipfile | |
import os | |
import subprocess | |
import argparse | |
parser = argparse.ArgumentParser() | |
parser.add_argument("-f", type = str, dest = "filename", help = "filename") | |
parser.add_argument("-e", action = "store_true", dest = "to_extract", help = "To extract") |
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
GEN coverdata-clean | |
make[1]: Entering directory '/home/xinhaoyuan/morpheus-workspace/morpheus-app-test/ra_test_f775c65/deps/ra' | |
make[2]: Entering directory '/home/xinhaoyuan/morpheus-workspace/morpheus-app-test/ra_test_f775c65/deps/elvis_mk' | |
make[2]: Nothing to be done for 'noop'. | |
make[2]: Leaving directory '/home/xinhaoyuan/morpheus-workspace/morpheus-app-test/ra_test_f775c65/deps/elvis_mk' | |
make[2]: Entering directory '/home/xinhaoyuan/morpheus-workspace/morpheus-app-test/ra_test_f775c65/deps/aten' | |
make[2]: Leaving directory '/home/xinhaoyuan/morpheus-workspace/morpheus-app-test/ra_test_f775c65/deps/aten' | |
make[2]: Entering directory '/home/xinhaoyuan/morpheus-workspace/morpheus-app-test/ra_test_f775c65/deps/gen_batch_server' | |
make[2]: Leaving directory '/home/xinhaoyuan/morpheus-workspace/morpheus-app-test/ra_test_f775c65/deps/gen_batch_server' | |
make[1]: Leaving directory '/home/xinhaoyuan/morpheus-workspace/morpheus-app-test/ra_test_f775c65/deps/ra' |
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
diff --git a/lib/et/src/et_wx_contents_viewer.erl b/lib/et/src/et_wx_contents_viewer.erl | |
index 580c921139..0bc70ce22a 100644 | |
--- a/lib/et/src/et_wx_contents_viewer.erl | |
+++ b/lib/et/src/et_wx_contents_viewer.erl | |
@@ -47,9 +47,10 @@ | |
filters, % List of possible filters | |
win, % GUI: Frame object | |
frame, % GUI: Frame object | |
- panel, % GUI: Panel object | |
- width, % GUI: Window width |
OlderNewer