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
| <NotepadPlus> | |
| <UserLang name="log4j_dark" ext="log" udlVersion="2.1"> | |
| <Settings> | |
| <Global caseIgnored="yes" allowFoldOfComments="no" foldCompact="no" forcePureLC="0" decimalSeparator="0" /> | |
| <Prefix Keywords1="no" Keywords2="yes" Keywords3="no" Keywords4="yes" Keywords5="no" Keywords6="yes" Keywords7="no" Keywords8="no" /> | |
| </Settings> | |
| <KeywordLists> | |
| <Keywords name="Comments"></Keywords> | |
| <Keywords name="Numbers, prefix1"></Keywords> | |
| <Keywords name="Numbers, prefix2"></Keywords> |
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
| <NotepadPlus> | |
| <UserLang name="log4j" ext="log"> | |
| <Settings> | |
| <Global caseIgnored="yes" /> | |
| <TreatAsSymbol comment="no" commentLine="no" /> | |
| <Prefix words1="no" words2="no" words3="no" words4="yes" /> | |
| </Settings> | |
| <KeywordLists> | |
| <Keywords name="Delimiters">[(0])0</Keywords> | |
| <Keywords name="Folder+"></Keywords> |
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
| #.nanorc | |
| # logging syntax highlighting | |
| # | |
| # * initially based on log-stuff.nanorc (github.com/mattpowell/.nanorc), changed completely to adapt to log4j. | |
| syntax "logs" "\.*(out|err|log|tdump|hprof)\.*$" | |
| # markers and keywords | |
| color brightwhite "[[:punct:]]" | |
| color brightwhite start="(\[|<|\{|\()" end="(\]|>|\}|\))" | |
| color brightblack "(\[|\{|\(|<|\]|\}|\)|>)" |
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
| "zip | |
| @echo off | |
| set arg1=%* | |
| @echo on | |
| _7za.lnk a -tzip %1.zip %arg1% | |
| pause | |
| "unzip | |
| set arg1=%1 | |
| pause | |
| _7za.lnk x %arg1% -o%1_dir |
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
| import static java.lang.Math.min; | |
| import static java.lang.String.format; | |
| import static java.lang.System.getProperty; | |
| import static java.nio.charset.Charset.defaultCharset; | |
| import java.io.BufferedReader; | |
| import java.io.IOException; | |
| import java.io.InputStreamReader; | |
| import java.util.Arrays; | |
| import java.util.concurrent.Callable; |
NewerOlder