[-] JATtho@sopuli.xyz 5 points 6 months ago

Lettme introduce you to ackermann's function:

int ack(int m, int n) {
    if (m == 0) {
        return n+1;
    } else if((m > 0) && (n == 0)){
        return ack(m-1, 1);
    } else if((m > 0) && (n > 0)) {
        return ack(m-1, ack(m, n-1));
    }
}

You won't run out of stackoverflows any time soon.

[-] JATtho@sopuli.xyz 6 points 7 months ago

std::chrono::neutronstar_clock

[-] JATtho@sopuli.xyz 7 points 8 months ago

I think the difference with Dolphin is that it now emulates an extinct system(s), so it cannot possibly compete with the actual thing. They did have a close call last year, if I remember, and they pretty quickly went into "jettison all illegal shit out of the code base NOW." -mode.

[-] JATtho@sopuli.xyz 4 points 8 months ago

The day I configured git to use Geany for commit messages with a separate config specifically tuned for this, it improved my life by 300%

~$ cat ~/bin/gitedit
#!/bin/sh
exec /usr/bin/geany -i -s -t -c ~/.config/gitgeany $@

Then in git config: git config --global core.editor "gitedit"

[-] JATtho@sopuli.xyz 6 points 8 months ago

Bugs that have existed for +3 years in a component and are nearly immediately visible to the end user. Oldest source line I touched was from before 2010.

[-] JATtho@sopuli.xyz 7 points 8 months ago

It's a FOSS project, so wish me luck, as you can now get it in the mail eventually.

I had to run a makepkg today, which now includes my self-written pieces of code in master. So I'm eating my own dog food now, and it's good. Also, the itch from before has somehow relieved.

[-] JATtho@sopuli.xyz 6 points 8 months ago

This cannot be an coincidence. I may actually finished something this time.

[-] JATtho@sopuli.xyz 5 points 10 months ago

X Y problems are absolutely crud when you have to ask first the stupid version to be able to ask the actual question about X.

[-] JATtho@sopuli.xyz 5 points 1 year ago

The video link was surprisingly SFW. My expectation was piercing a nail through my skull make me UwU.

[-] JATtho@sopuli.xyz 5 points 1 year ago

Vielä tällä hetkellä teoreettinen "akku" jolla olisi jotain vaikutusta kantaverkon tasolla:

  • Tee vetyä aina kun halpaa nollahinta sähköä saatavilla
  • Sähkö halpaa + vetyä + hiilidioksidia: Syntetisoi jotain hiilivetyä (mm. metaani, metanoli) hiilidioksidista ja (hankalasti) varastoidusta vedystä. Tarvittaessa polta ylijäämä vetyä prosessi lämmöksi.
  • Kun sähkö on kallista ala polttamaan varastoituja hiilivetyjä voimalaitoksessa tuottaen sähköä. Tuotettu hiilidioksidi otetaan talteen ja käytetän uudestaan hiilivetysynteesissä.
  • Jos varastoituja eli. "vihreää" hiilivetyä, tai edes vetyä ei ole saatavilla: Paniikki. ^Jatka kuolleiden dinosauruksien ja tähtien lapioimista voimalaitoksiin.^

Energian kierrättäminen näin hiilivetyjen kautta tietty sisältää isoja häviöitä. Hiilivetyjä tosin pystyy varastoimaan loputtomasti mitättömillä häviöillä, toisin kun vetyä joka karkaa lopulta paksuimmakin metalliseinän läpi. On siis avoin kysymys tulisiko tämä koskaan olemaan taloudellisesti kanttavaa, ennen kuin ensimmäistäkään barrelia vihreää hiilivetyä saadaan varastoitua.

Ainoat käytettävissä olevat primääri energian lähteet ovat tosin:

  • Fissio-reaktio suoraan (mm. OL3) ja epäsuorasti. (geoterminen lämpö on osin perua radionuklidien hajoamisesta)
  • Fuusio-reaktio ainoastaan epäsuorasti: aurinko. (aurinkohan siis tarjoaa vesi ja tuulivoiman sekä fotonit aurinkopaneeleille)
  • Varastoidut auringon fotonit: fossiiliset polttoaineet. (hyödyntäminen uhkaa tuhota ihmiskunnan)
[-] JATtho@sopuli.xyz 5 points 1 year ago

I recently switched my default search from Google to DuckDuckGo: Google has begun refusing to find anything while exact same search on DuckDuckGo just works. Google is slower because I have to think+ignore first half of the page due to Ads/SEO crud.

[-] JATtho@sopuli.xyz 5 points 1 year ago

On 1st gen ryzen cpu (until rzen3), don't have branch recording with "perf record -b" So no way to make your program +15% faster with profile data/PGO/FDO without effort. 😞

view more: ‹ prev next ›

JATtho

joined 1 year ago