addie

joined 1 year ago
[–] addie@feddit.uk 35 points 1 day ago

Clicking the 'Activate' link prompts you to enter your shoe size and postal address, so that you may receive a shark plush toy and your own pair of The Socks.

[–] addie@feddit.uk 33 points 4 days ago

Impressive, since "network effects" are what keeps people on a platform. Why move off Xitter or FB when everyone's on there, and not on the new place? Keep moving a significant fraction of a million people every week, and pretty soon, it'll be where everyone is.

My partner, who is very non-technical, signed up for a BlueSky as well this week: "all the teacher blogs have declared that they are moving over". Looks like everyone has had enough.

[–] addie@feddit.uk 4 points 4 days ago

Most of the laptops I've had open lately have had about the top third be the motherboard and the bottom two-thirds be battery, with maybe some ports and speakers tucked down the side. So I'd expect that last of replacements to include the battery, too.

I might check whether the hard drive survived - a decent M.2 is small, expensive and reusable - and maybe the RAM if it's not soldered in.

[–] addie@feddit.uk 1 points 4 days ago

Writing this on a Tuxedo Pulse 14 gen 3 - great laptop, flawless Linux support and a coding workstation. Perfect for a bit of eg. Disco Elysium or Crusader Kings 3 on the go, but it's no gaming machine; it has a lot of pixels for a Radeon 780M to push. They do have a list of gaming laptops, though, if you wanted a speciality machine?

[–] addie@feddit.uk 7 points 1 week ago (1 children)

Having had one of the old Windows phones with a keyboard dumped on me at an old workplace, can confirm it's completely possible for a phone to have a keyboard and be a complete piece of shit.

A good phone with a good keyboard may have some use cases. If you do a lot of writing but not any more computing power or screen space than a phone has, plus you want to be doing that on the move, then yeah. For me, can shitpost on forums using my phone in my spare time, and dealing with on-call work issues - having multiple tabs of Jira and Slack open, for instance - just isn't really practical on a small screen.

If your job is very email-centric, then yeah, sure. Blackberry were very good for just having the stuff you need - email, vpn, 'corporate' office documents - in a form that worked.

[–] addie@feddit.uk 4 points 2 weeks ago

Also interesting is the notion of 'Kolmogorov Complexity' - what is the shortest programme that could produce a given output? Worst case for a truly random sequence would just be to copy it out, but a programme that outputs eg. a million digits of pi can actually be quite short. As can a programme that outputs a particular block cypher for an empty input. In general, it is very difficult to decide how long a programme is needed to produce a given output, and what the upper limit of compression could be.

https://en.m.wikipedia.org/wiki/Kolmogorov_complexity

[–] addie@feddit.uk 12 points 2 weeks ago (1 children)

True. Although Calvin looks to be only rotating the paper by 90°, which would work as long as the original line is continuously increasing on both axes. Not so much "upside down" as "right-side up", tho.

[–] addie@feddit.uk 26 points 4 weeks ago (10 children)

Assuming that these have fairly impressive 100 MB/s sustained write speed, then it's going to take about 93 hours to write the whole contents of the disk - basically four days. That's a long time to replace a failed drive in a RAID array; you'd need to consider multiple disks of redundancy just in case another one fails while you're resilvering the first.

[–] addie@feddit.uk 52 points 4 weeks ago (1 children)

Writing in ASM is not too bad provided that there's no operating system getting in the way. If you're on some old 8-bit microcomputer where you're free to read directly from the input buffers and write directly to the screen framebuffer, or if you're doing embedded where it's all memory-mapped IO anyway, then great. Very easy, makes a lot of sense. For games, that era basically ended with DOS, and VGA-compatible cards that you could just write bits to and have them appear on screen.

Now, you have to display things on the screen by telling the graphics driver to do it, and so a lot of your assembly is just going to be arranging all of your data according to your platform's C calling convention and then making syscalls, plus other tedious-but-essential requirements like making sure the stack is aligned whenever you make a jump. You might as well write macros to do that since you'll be doing it a lot, and if you've written macros to do it then you might as well be using C instead, since most of C's keywords and syntax map very closely to the ASM that would be generated by macros.

A shame - you do learn a lot by having to tell the computer exactly what you want it to do - but I couldn't recommend it for any non-trivial task any more. Maybe a wee bit of assembly here-and-there when you've some very specific data alignment or timing-sensitive requirement.

[–] addie@feddit.uk 2 points 1 month ago

Yeah. Doesn't take much optimising of disk writes to make things run much better on a Pi; they're quite capable machines as long as disk i/o isn't your limiting factor. Presumably the devs have been doing some tidying up.

[–] addie@feddit.uk 2 points 1 month ago

My workplace is a strictly BitBucket shop, was interested in expanding my skillset a little, experiment with different workflows. Was using it as a fancy 'todo' list - you can raise tickets in various categories - to remind myself what I was wanting to do next in the game I was writing. It's a bit easier to compare diffs and things in a browser when you've been working on several machines in different libraries than it is in the CLI.

Short answer: bit of timesaving and nice-to-haves, but nothing that you can't do with the command line and ssh. But it's free, so there's no downside.

[–] addie@feddit.uk 2 points 1 month ago (7 children)

Ah, nice. Had been experimenting with using my Raspberry Pi 3B as my home Git server for all my personal projects - easy sync between my laptop and desktop, and another backup for the the stuff that I'd been working on.

Tried running Gitea on it to start with, but it's a bit too heavy for a device like that. Forgejo runs perfectly, and has almost exactly the same, "very Github inspired" interface. Time to run some updates...

 

Hey gang! Looking for some recommendations on issue tracking software that I can run on Linux. Partly so that I can keep track of my hobby dev projects, partly so that I've got a bit more to talk about in interviews. My current workplace uses Jira, Trello and Asana for various different projects, which, eh, mostly serve their purposes. But I'm not going to be running those at home.

The ArchWiki has Bugzilla, Flyspray, Mantis, Redmine and Trac, for instance. Any of those an improvement over pen and paper? Any of those likely to impress an employer?

view more: next ›