Elektrine lite

← Feed

Mårten Åsberg

89netram@hachyderm.io

Posts

  • Post #4504262

    I found this quote from a diary of a Swedish 12 year old in 1973, seems familiar. "Speaking of oil, there is currently an "oil war" between Israel and the oil-countries in the Middle East. The US supports Israel. The oil-countries are threatening to cut off oil supplies to the US if the US continues to support Israel." Source in Swedish: https://mittliv.nordiskamuseet.se/min-dag-1973/anders-12-ar-24-oktober-1973/ #usa #israel #oil #war

  • Post #4504261

    I just finished the game, and I was very happy to see Chloe again and so glad Max and Chloe got a happy ending together. But for a while there I was worried it would all come undone. Towards the end when Safi talks to Chloe in Moses’ lab, I realized this is the first time they meet. When Chloe steals the mask from Safi, they’re suspiciously out of view, from both the player and Max. What if whatever time shenanigans Max pulled to save Safi at the end of Double Exposure messed with Safis mind so...

  • Post #4504260

    #LifeIsStrange #LifeIsStrangeReunion #meme

  • Post #4504259

    I just saw Steve Sanderson's vibeOS https://youtu.be/zh6fMtL_cSM and rememberd I did sort of the same thing last year! Mine was a webserver that "live" generated the website whenever anyone visited it https://github.com/89netraM/ai-website. Great minds think alike? This happens so often to me, I "invent" something that already exists or someone else does it better than me after. There's a great bible quote for it, Ecclesiastes 1:9: &quot...

  • Post #4504258

    I'm writing a C# app with ONNX for facial detection and in part of it doing `tensor[0, 2, y, x] = r`. After running the app for a day it used almost 8 GB memory. I coudldn't really find any obvious memory leaks, but found that the indexer actually created a temporary `int[]`. I refactored the indexer to `tensor[2 * width * height + y * width + x] = r`, and did some other (unrelated changes). And now a day later it's at 0.4 GB. Is that how this works? To pharaphrase the H...

  • Post #4504257

    I've been looking at Gaussian Splatting for a while and now I've finally tried it myself. One of my first splatts is of this "monument" near my grandparents that turned out pretty decent after all. With just 79 pictures and half an hour of computation I'm amazed at how easy this can be! https://superspl.at/scene/b21f47e4 #GaussianSplatting #Photogrammetry