- 63 Posts
- 676 Comments
taaz@biglemmowski.winto
Showerthoughts@lemmy.world•What's if instead of a dead internet we end up with a dark forest internet
13·9 天前thinking about this, wouldn’t the best way to hide a modern websie be something along getting a wildcard domain cert (can be done with LE with DNS challenge), cnaming the wildcard to the root domain and then hosting the website on a random subdomain string ? am I missing something
taaz@biglemmowski.winto
Showerthoughts@lemmy.world•What's if instead of a dead internet we end up with a dark forest internet
4·9 天前crt.sh and certificate transparency
taaz@biglemmowski.winto
Games@lemmy.world•Starbound Fans: New Dedicated Server Open to LemmyEnglish
5·9 天前weren’t chucklefish the ones that strangled this game in the first place?
now take this with a big chunk of salt, I do not remember at all if this is any true but feel like I read it somewhere
taaz@biglemmowski.winto
Technology@lemmy.world•Google Revisits JPEG XL in Chromium After Earlier RemovalEnglish
214·10 天前have not hear anything bad about webp, whats up with that
taaz@biglemmowski.winto
Technology@lemmy.world•Google Revisits JPEG XL in Chromium After Earlier RemovalEnglish
33·10 天前fyi you have toggled the setting that marks you as a bot account, as such your content will not show for some percent of people that have bots hidden
taaz@biglemmowski.winto
Linux@programming.dev•Someone ran a modern Linux OS on a 30-year-old CPU, and it's surprisingly usable
4·18 天前don’t know the details but my general IT knowledge says that: single unicode character/
glyphcan take up to 4 bytes instead of 1 (ascii).
I mean I might have a laughing pikachu tattooed, from my side you are good
taaz@biglemmowski.winto
Programming@programming.dev•Elixir v1.19 released: enhanced type checking, broader type inference, and up to 4x faster compilation for large projects
2·2 个月前have been eyeing elixir for a while, should give it another try. the whole beam/otp/erlang is a bit scary though
taaz@biglemmowski.winto
Firefox@lemmy.ml•Firefox's New Profile Manager Goes Live For Everyone Next Week
2·2 个月前hopefully it’s good, don’t want to mix work and personal stuff
taaz@biglemmowski.winto
movies@piefed.social•Disney Reportedly Pulls the Plug on TRON 4 After TRON: ARES Crashes at the Box Office, Is Jared Leto to Blame?
61·2 个月前according to internet, it’s shit
taaz@biglemmowski.winto
Open Source@lemmy.ml•what are your biggest contributions to open source software?
3·2 个月前Little bits and pieces but mostly bug fixes - I like my shit working but maintenance is not my strong suit, more of a traveling contributor or drive-thru fixer.
I believe I fixed calling in one electron messenger.com wrapper before - that was fun but these days I usually try to help the game BAR whenever I have extra time.Edit: Keep forgetting but I am also maintaining few apps on AUR, nothing big except for maybe one helper tool/calculator for EVE online
taaz@biglemmowski.winto
Science Memes@mander.xyz•The Problem of Writing Poems in the Shape of Deciduous TreesEnglish
1·2 个月前unsure if the translations work well in english but checkout Christian Morgenstern, he made similar “silly” poems
I believe most modules there are open-source, so you could check something like the pf2e module on gh to see how stuff works
taaz@biglemmowski.winto
Hunt Showdown@lemmy.world•What is 'playing the objective' to you?English
3·2 个月前Back when we actively played it was “whatever will give us a good fight”, which mostly meant objectives or a close gunfight.
Getting jumped by bush camping sniper rat has always been the worst especially when it’s later in the match.
Linux has kind of two forms of memory pages (entries in RAM), one is a file cache (page cache) and the other is “memory allocated by programs for work” (anonymous pages).
When you look at memory consumed by a process you are looking at RSS, page/file cache is part of kernel and for example in btop corresponds to
Cached.Page cache can never be moved into swap - that would be the same as duplicating the file from one place on a disk to another place on a (possibly different) disk.
If more memory is needed, page cache is evicted (written back into the respective file, if changed). Only anonymous pages (not backed by anything permanent) can be moved into swap.So what does “PostgreSQL heavily relies on the OSs disk cache” mean? The more free memory there is, the more files can be kept cached in RAM and the faster postgres can then retrieve these files.
When you add zram, you dedicate part of actual RAM to a compressed swap device which, as I said above, will never contain page cache.
In theory this still increases the total available memory but in reality that is only true if you configure the kernel to aggressively “swap” anonymous pages into the zram backed swap.Notes: I tried to simplify this a bit so it might not be exact, also if you look at a process, the memory consumed by it is called RSS and it contains multiple different things not just memory directly allocated by the code of the program.
taaz@biglemmowski.winto
Programming@programming.dev•How do I design a multi-language database?
4·3 个月前Had to solve the same problem few months ago, user provided content and so, user provided translations.
We use postgres everywhere and we had to support 3 languages initially with one more eventually, so we decied to use json fields for anything that could be translated (which wasn’t too much). Mind you, this was basically a (temporarily permanent) prototype project but (fresh) postgres has a good support and operators for json so it worked alright.EDIT: I remembered that hstore might be a good alternative too, I think it was slightly less “heavy” and had better operators for the kind of access we needed




















before getting a pocketbook I was using ReadEra and it worked alright (for basic reading)