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 pull | |
fatal: mark :399671 not declared | |
fast-import: dumping crash report to .git/fast_import_crash_4248 | |
fatal: Error while running fast-import | |
Traceback (most recent call last): | |
File "/usr/bin/git-remote-bzr", line 952, in <module> | |
sys.exit(main(sys.argv)) | |
File "/usr/bin/git-remote-bzr", line 936, in main | |
do_import(parser) | |
File "/usr/bin/git-remote-bzr", line 398, in do_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 | |
function die() { | |
echo "Error: ${@}!" >&2 | |
exit 1 | |
} | |
: "${INPUT_DATA_PATH:=~/develop/hermsk/mpauli/}" | |
input= |
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
// Quick C++11 Quiz | |
typedef istreambuf_iterator<char> iter; | |
stringstream ss("a"); | |
iter const i(ss); | |
iter j(i); | |
iter const end; | |
++j; | |
cout << boolalpha << (j == end) << " " << (i == end) << endl; |
OlderNewer