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
| <?xml version="1.0" encoding="utf-8"?><?xml-stylesheet type="text/xsl" href="../../../stylesheets/log.xsl"?><log> | |
| <record> | |
| <date>2015-09-01T15:45:33</date> | |
| <millis>1441115133535</millis> | |
| <sequence>365007</sequence> | |
| <logger>org.dbpedia.extraction.mappings.MappingsLoader$</logger> | |
| <level>WARNING</level> | |
| <class>org.dbpedia.extraction.mappings.MappingsLoader$</class> | |
| <method>org$dbpedia$extraction$mappings$MappingsLoader$$log</method> | |
| <thread>18462</thread> |
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 | |
| xinput set-prop "TPPS/2 IBM TrackPoint" "Evdev Wheel Emulation" 1 | |
| xinput set-prop "TPPS/2 IBM TrackPoint" "Evdev Wheel Emulation Button" 2 | |
| xinput set-prop "TPPS/2 IBM TrackPoint" "Evdev Wheel Emulation Timeout" 200 | |
| xinput set-prop "TPPS/2 IBM TrackPoint" "Evdev Wheel Emulation Axes" 6 7 4 5 |
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/bash | |
| id=$(xinput | grep TouchPad | grep -E -o "id=[[:digit:]]+" | grep -E -o "[[:digit:]]+") | |
| if [ "$id" = "" ] | |
| then | |
| echo "no touchpad found." | |
| exit 0 | |
| fi |
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/bash | |
| langs=('eng' 'eng-1M' 'eng-us' 'eng-gb' 'eng-fiction' 'chi-sim' 'fre' 'ger' 'heb' 'ita' 'rus' 'spa') | |
| if [ $# -le 1 ] | |
| then | |
| echo "Usage: $0 [LANGUAGE] [N]" >&2 | |
| exit 1 | |
| fi |
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
| au FileType svg map <leader>ll <CR>:!inkscape -D -z --file="%" --export-pdf="%:r".pdf --export-latex<CR><CR> |