Skip to content

Instantly share code, notes, and snippets.

View finwe's full-sized avatar

Matěj Humpál finwe

View GitHub Profile
@finwe
finwe / rant.txt
Created March 25, 2023 07:21 — forked from ECHibiki/rant.txt
Vichan Rant
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
@finwe
finwe / gist:4205225
Created December 4, 2012 15:36 — forked from dundee/.bashrc
Shows current git branch&status on command prompt
#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"