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
enclaved 08/09/17 (Wed) 22:15:51 No.5568 >>5569>>5570>>5573>>5762>>5813 | |
I know I'm about to spew forth a technical tirade that little of you will be able to comprehend or care to read at all, but I just can't keep my boiling hatred inside anymore, my pain of dealing with vichan imageboard software is overwhelming. So, I have rewritten major portions of current GUROchan codebase after some profiling to speed up the whole thing. I know that I promised you all a brand new imageboard software, but it isn't going well enough due to my perma-apathetic mood and lack of motivation. It will happen someday, that's the most I can promise right now. Nevertheless, I've reached my boiling point with the current code in production: vichan. No words can describe just how bad it is technically. I'll give you this: 50% of my reasoning was ideological, running this software actually hurts my feelings, literally, just thinking about our hardware executing its incredibly poorly written code insults me and pisses me off. I am asha |
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 bash by HABR (modified by Dundee & Finwe) | |
export PSORIG="$PS1" | |
function gitbranch() { | |
branch="$(git branch 2>/dev/null | grep '*' | cut -d" " -f2-)" | |
dirty="$(git status -s 2>/dev/null)" | |
if [ -n "$dirty" ] ; then | |
color="1;33m" | |
else | |
color="0;33m" |