- 8 Posts
- 21 Comments
TBH, I thought I’d see the opposite. Good design for war games require access to secret documents, while events in the public space get documents leaked and published all the time, or even documentaries being released. For example, I would expect events like the 2008 market crash or Brexit to have enough content for a simple board game at this point. I mean, I’m not expecting Campaign For North Africa level of details ;-)
I agree development time is necessary though.
TBH, I see events in the public space get documents leaked and published all the time, or even documentaries being released. I would expect events like the 2008 market crash or Brexit to have enough content for a simple board game at this point. I mean, I’m not expecting Campaign For North Africa level of details ;-)
I agree development time is necessary though.
deleted by creator
It is cumbersome to discover all these places on lemmy :/ Honestly, by the list of communities my instance shows, this one looks the most active. Thank you!
liori@lemm.eeOPto
Programming@programming.dev•Tool for instantiating a C++ template at runtime?
1·2 years agoPersonally I think child processes are the right approach for this. Launch a new process* for each query and it can (if you choose to go that route) dynamically load in compiled code. Exit when you’re done, and the dynamically loaded code is gone. A side benefit of that is memory leaks are contained, since all memory you allocate is about to be removed anyway.
I’d probably be fine with hundreds or thousands of these hanging in memory. I suspect the generated code for a single query would be in hundreds of kilobytes, maybe a megabyte. But yeah, this is one of those technical details I’d worry about.
Honestly, I wonder if you could just use an actual HTTP server for this? They can handle hundreds or even thousands of simultaneous requests. They can handle requests that complete in a fraction of a millisecond or ones that run for several hours. And they have good tools to catch/deal with code that segfaults, hits an endless loop, attempts to allocate terabytes of swap, etc. HTTP also has wonderful tools to load balance across multiple servers if you do need to scale to massive numbers of requests.
Not sure how a HTTP server would solve the CPU bottleneck of scanning terabytes of data per query?
liori@lemm.eeOPto
Programming@programming.dev•Tool for instantiating a C++ template at runtime?
2·2 years agoI somehow didn’t think a regular JIT solution might be applicable here, but it is. Thank you! There seems to be a number of projects doing JIT for C++, will look at them.
Plenty of them on various sites, like this one I found yesterday.
Try dmraid, it’s been designed to take over various formats of hardware RAID cards.
liori@lemm.eeOPto
Programming@programming.dev•Linux file system developer: we're severely under-resourced
51·2 years agoKernel is not a monolithic application, and you cannot develop it like one. There are tons of actors: independent developers, small support companies (like Collabora), corporations, all with different priorities. There is a large number of independent forks (e.g. for obscure devices), that will never be merged, but need to merge e.g. security patches from the mainline. A single project management tool won’t do, not your typical business grade tracking&reporting tool.
CI is already there. Not a central one—again, distributed across different organizations. Different organizations have different needs for CI, e.g. supporting weird architectures that they need to develop against.
There is a reason Torvalds created git—existing tools just wouldn’t work. There might be a place for a similar revolution regarding a bugtracker…
liori@lemm.eeOPto
Programming@programming.dev•Linux file system developer: we're severely under-resourced
23·2 years agoThis plea for help is specifically for non-coding, but still deeply technical work.
liori@lemm.eeOPto
Programming@programming.dev•Linux file system developer: we're severely under-resourced
2·2 years agoThe thread is an attempt to merge a new file system,
bcachefs. This is a large change, requiring a lot of review from experienced developers, and getting anyone to do this work turned out to be difficult. Darrick here started talking how, in general, all development of file systems in Linux is troubled by lack of manpower.
liori@lemm.eeOPto
Programming@programming.dev•Linux file system developer: we're severely under-resourced
8·2 years agoI guess the best start would be to have a person to organize volunteers.
liori@lemm.eeto
boardgames@feddit.de•How do you store your bigger games that don't fit your shelf?English
6·2 years agoI’m pretty sure just like transport containers were standardized by ISO to make transport easier, game boxes should be standardized to fit in Kallax.
Another idea that just occurred to me. Maybe position: absolute; both the real content and the gibberish content with the same top, left, width, and height attributes so that the real content and the gibberish overlap and occupy the same location on the page. Make sure both the real and gibberish content elements have no background so that remains clear. Put the gibberish content in the DOM before the real content. (I think that will ensure that the gibberish appears behind the real content even without setting the z-index.) And then make JS set the color of the text in the gibberish element the same color as the background so humans can’t see it.
Be aware that these techniques can affect accessibility for people using screen readers.
liori@lemm.eeto
World News@lemmy.world•Refugees overqualified and underpaid in GermanyEnglish
7·2 years agoAs of May 2023, 65% of the Ukrainian refugees that left Ukraine starting February 2022 and decided to stay in Poland found a job—so, within around a year, as opposed to 5-6 years as in the article. Cultural similarity here is likely making it much, much simpler. For those who want to read more about the situation of Ukrainian refugees in Poland, this report by Polish National Bank (Narodowy Bank Polski, NBP) might be useful: https://nbp.pl/wp-content/uploads/2023/05/Raport_Imigranci_EN.pdf (in English!), there is a lot of interesting details.
liori@lemm.eeOPto
Programming@programming.dev•Asynchronous cross-organizational APIs—any available tooling?English
5·3 years agoYep, thank you, that’s pretty close to what I imagined!
liori@lemm.eeto
Ask Lemmy@lemmy.world•Is it possible to have Wikipedia sources in a cycle?
1·3 years agoI do not have notes from that time anymore, sorry. I do recall though that after following a chain of citations I ended up at the paper in the center of this controversy. Nobody sane would cite in now except to point out its flaws, but if there’s a modern paper that cites a 10 year old paper that cites a 30 year old paper that cites it—people usually won’t notice.
liori@lemm.eeto
Ask Lemmy@lemmy.world•Is it possible to have Wikipedia sources in a cycle?
7·3 years agoFrom my experience, despite all the citogenesis described in other comments here, Wikipedia citations are still better vetted than in many, many scientific papers, let alone regular journalism :/ I recall spending days following citation links in already well-cited papers to basically debunk basic statements in the field.
liori@lemm.eeto
Programming@programming.dev•Is anyone migrating from Java to Kotlin at work?English
1·3 years agoLast job, we started writing mixing bits of Kotlin in an otherwise mostly-Java in a monolithic Spring-based service. Good experience.

https://jasone.github.io/2025/06/12/jemalloc-postmortem/