HackerTrans
TopNewTrendsCommentsPastAskShowJobs

chungy

no profile record

Submissions

86Box v6.0

86box.net
58 points·by chungy·mese scorso·6 comments

MAME 0.288

mamedev.org
4 points·by chungy·mese scorso·0 comments

Linus Torvalds Is Unhappy About the AI Influence in Linux Kernel Development

ostechnix.com
17 points·by chungy·2 mesi fa·6 comments

OpenZFS deduplication is good now and you shouldn't use it (2024)

despairlabs.com
2 points·by chungy·2 mesi fa·0 comments

MAME 0.287

mamedev.org
21 points·by chungy·3 mesi fa·0 comments

SQLite Release 3.51.3

sqlite.org
5 points·by chungy·4 mesi fa·4 comments

Fossil Version 2.28

fossil-scm.org
3 points·by chungy·4 mesi fa·1 comments

SQLite Release 3.52.0

sqlite.org
24 points·by chungy·4 mesi fa·0 comments

Lazarus Bugfix Release 4.6

forum.lazarus.freepascal.org
2 points·by chungy·5 mesi fa·0 comments

MAME 0.286

mamedev.org
6 points·by chungy·5 mesi fa·0 comments

MAME 0.285

mamedev.org
11 points·by chungy·5 mesi fa·1 comments

MAME 0.284

mamedev.org
15 points·by chungy·6 mesi fa·3 comments

86Box v5.3

86box.net
95 points·by chungy·7 mesi fa·11 comments

BSD on Windows: Things I wish I knew existed (2023)

virtuallyfun.com
3 points·by chungy·7 mesi fa·0 comments

MAME 0.283

mamedev.org
4 points·by chungy·7 mesi fa·1 comments

Linux/WASM

joelseverin.github.io
10 points·by chungy·8 mesi fa·0 comments

MAME 0.282

mamedev.org
4 points·by chungy·8 mesi fa·0 comments

MAME 0.281

mamedev.org
3 points·by chungy·10 mesi fa·0 comments

comments

chungy
·23 giorni fa·discuss
Guix solves the same problem in similar ways, though it uses Scheme as its configuration language.
chungy
·mese scorso·discuss
Different use cases than QEMU, honestly, to the point that there's not much overlap. QEMU is extremely good at running modern operating systems, and not so much at older ones (DOS and Win9x are pretty sore points in QEMU). 86Box is extremely good at running old operating systems (including DOS and Win9x!), but modern operating systems are mostly out of the question (you can run WinXP, but https://86box.readthedocs.io/en/latest/usage/faq.html#can-i-...).
chungy
·2 mesi fa·discuss
Files in Git don't have timestamps, only commits do. It got swept up when `git commit --date=...` was run.
chungy
·2 mesi fa·discuss
Funny part is, that NFSv4 supports SIDs for user authentication, but the Linux implementation leaves it out (among all the other ACL features) simply on the basis that Linux doesn't support them at all.

The FreeBSD, Solaris, Mac OS X, and Windows (yes, even Windows) implementations of NFSv4 are fully featured with this stuff.
chungy
·2 mesi fa·discuss
Related: Fossil has a `fusefs` subcommand: https://fossil-scm.org/home/help/fusefs

The DIRECTORY/checkins/ directory doesn't list out anything by itself, but you can look things up by any of the supported checkin names (hash, tag, branch, date...): https://fossil-scm.org/home/doc/trunk/www/checkin_names.wiki
chungy
·2 mesi fa·discuss
Consider Fossil[1], which packages the entire repository state—code history, wiki, tickets, forum—into a single file, and that state gets cloned.

When/if you need to change hosting providers, you get to lose zero data in Fossil because of it.

[1] https://fossil-scm.org/
chungy
·2 mesi fa·discuss
It was actually part of Microsoft Plus! for Windows 95. It wasn't directly available for Windows 98 at all, but the Windows 98 install disc does include an INF file so you can install it, provided you have a copy of Plus! for Windows 95.

It was also included with Windows NT 4.0, Windows 2000, Windows Me, and Windows XP (both the original and x64 versions). Finally removed in Vista to never return.
chungy
·2 mesi fa·discuss
Delphi and Lazarus are still kicking, the latter is free and open source.

I know you asked for "the language", but Object Pascal really ain't that bad to get around. If you were proficient in VB6, you should be fine adapting. :-)
chungy
·2 mesi fa·discuss
Too vague of a question to give you an answer you'll likely sound satisfactory :)

You probably just needed to create indexes over your data to speed things up.
chungy
·2 mesi fa·discuss
> "Right joins are just left joins in the wrong direction, you don't need that crap"

SQLite has supported all types of joins since version 3.39 in 2022.
chungy
·2 mesi fa·discuss
I have bad news for you: Zip supports storing extended attributes as well.
chungy
·2 mesi fa·discuss
Is Radicle an alternative to Fossil?
chungy
·2 mesi fa·discuss
This is a current architectural limitation, manifests (defining check-ins) and tickets are different types of artifacts and you cannot combine the card types into the same artifact. Changing this would likely break backwards compatibility with previous Fossil versions and I'd expect resistance. It may still be worth bringing up on the Fossil forum if you desire the feature.

Personally speaking though, I don't want things automagically closed GitHub-style based on parsing a check-in comment. An issue ought to be closed with intention.
chungy
·2 mesi fa·discuss
> (Of course Fossil actively opposes "pull requests", separate issue)

Not opposition, but very little incentive for the primary developers to implement the feature. Fossil's own developers happen to be the same as SQLite's developers, which doesn't accept outside contribution as a policy. It results in Fossil's features being predominantly, but not exclusively, the same features needed for SQLite and little else.

This thread discusses avenues for implementation: https://fossil-scm.org/forum/forumpost/ce238fccfd6b124d
chungy
·2 mesi fa·discuss
> Other VCSes like fossil store issues alongside the repo.

Technically the issues in Fossil are part of the repository, along with the wiki, code, forum, etc. They come along with every clone and (mostly) cannot be deleted from the historical record.

Items of Fossil that are merely "alongside" instead of actually in the repository include unversioned files, chatroom content, and users and access controls. (Not an exhaustive list.)
chungy
·3 mesi fa·discuss
What are you really proposing? That a first ".INDEX" entry be made that contains the offsets of all the other members?

That could work in a backwards-compatible way (as long as no standard tar utility makes modifications to the archive...), but it's hamfisted. Just use Zip. It's already a well-known format with numerous implementations and already does the job that you want to do.
chungy
·3 mesi fa·discuss
Zip has a central directory you could just query, instead of having to construct one in-memory by scanning the entire archive. That's significantly less work.
chungy
·3 mesi fa·discuss
Zip allows you to set compression algorithm on a per-file basis, including no compression.
chungy
·3 mesi fa·discuss
There's not a whole lot of interest in making Windows 9x run well on QEMU.

These days especially, it's better to just use 86Box for those operating systems.
chungy
·3 mesi fa·discuss
That's a graphics driver problem. Fairly common to see when running Windows 9x/Me under QEMU.