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
| /* | |
| Call this example as follows: | |
| $ go run flag_muh.go -muh=blahmuh -blh=muhblah | |
| {blahmuh muhblah} | |
| */ | |
| package main | |
| import ( |
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 | |
| # | |
| # sebastian - 2016-05-29 11:57 | |
| # script mount_raid.sh | |
| # | |
| # Little helper-script to mount raid array filesystem | |
| # delayed because of a little systemd/dmraid race | |
| # condition. | |
| # | |
| # |
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
| this is a little gisty test |
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
| ######## Git ######## | |
| #.gitattributes | |
| ######## bash-git-prompt ######## | |
| .bash-git-rc | |
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
| public int[] determineKey(int keylength, int depth) throws IOException { | |
| totalNumberOfKeysToTest = getNumberOfCandidateKeys(keylength, depth); | |
| numberOfKeysTested = 0; | |
| ByteFrequencyTable[] frequencyTable = getFrequencyTableForKeyLength(keylength); | |
| int[] key = null; | |
| //TODO | |
| KeyGenerator gen = new KeyGenerator(frequencyTable, depth, 0); | |
| while ((key = gen.getNextCandidateKey()) != null) { |