Posts
4279
Following
308
Followers
443
Software Engineer at Opinsys Oy
Entrepreneur at Siltakatu Solutions Oy

OpenPGP: 3AB05486C7752FE1

Jarkko Sakkinen

recycle is now free, the program to create .rex loops: https://www.reasonstudios.com/recycle
0
0
1
Edited 2 days ago

fun Linux fact: because MAP_SHARED|MAP_ANONYMOUS is actually a file-backed mapping under the hood, unmapping part of such a mapping does not discard the data stored in that part:

$ cat mremap.c
#define _GNU_SOURCE
#include <err.h>
#include <stdio.h>
#include <sys/mman.h>
int main(void) {
char *p = mmap(NULL, 0x2000, PROT_READ|PROT_WRITE, MAP_SHARED|MAP_ANONYMOUS, -1, 0);
if (p == MAP_FAILED) err(1, "mmap");
p[0x1000] = 'X';
if (munmap(p+0x1000, 0x1000)) err(1, "munmap");
// that 'X' we just wrote... is it gone?
// nope, let's bring it back!
p = mremap(p, 0x1000, 0x2000, MREMAP_MAYMOVE);
if (p == MAP_FAILED) err(1, "mremap");
printf("p[0x1000]='%c'\n", p[0x1000]);
}
$ gcc -o mremap mremap.c
$ ./mremap
p[0x1000]='X'
$
1
3
0

Jarkko Sakkinen

0
2
3
Edited 8 days ago

US government’s attack on free speech, science, and research is causing a brain drain

How do you create a brain drain and lose your status as eminent destination for scientists and researchers?

The United States seems to be sending out questionnaires to researchers at universities and research institutes outside of the United States, asking them about their political leanings. Dutch universities are strongly advising Dutch researches not to respond to the questionnaire

https://www.osnews.com/story/141972/us-governments-attack-on-free-speech-science-and-research-is-causing-a-brain-drain/

0
3
0

Jarkko Sakkinen

Edited 6 days ago
8 Bits High live at a local museum near my home year ago:

https://www.youtube.com/watch?v=ioXT82QwgAo

Vapriikki (https://www.vapriikki.fi/en/) has e.g.,

1. Most extensive video game museum in Finland.
2. Some other tech stuff like the first ever IRC Server in a glass case ;-)

Great place to visit if around here.

#c64 #chiptune
0
0
4

Jarkko Sakkinen

I started to do my second gym program with the move that I hate the most because it is such a struggle: Bulgarian squat.

I guess that means it does something...

#gym
1
0
1
Edited 6 days ago

This week Michael Hudson-Doyle of the Foundations team published a write-up of our experimentation with the `-O3` GCC flag by default in the distribution.

The tl;dr is that we don't yet believe that the change makes sense globally, but there are certainly come packages that would benefit from using the increased optimisation level.

See the post here: https://discourse.ubuntu.com/t/benchmarking-a-distribution-and-some-o3-results/58027

0
2
0

Jarkko Sakkinen

Edited 6 days ago
disclaimer: not real (but still funny)
0
1
3

Jarkko Sakkinen

Edited 7 days ago
IMHO, AMD, Intel and ARM should step up and start provide some cheap and accessible hardware that you can use at your home, and not intended for rolling out cash (i.e. something like NUC), but only to allow kernel maintainers and operating system developers to test their server features.

Cheap means here something like less than 1000 euros.

E.g., in Intel SGX the latest and greatest are NUC7's from 2018 and for VM based confidential computing there's nothing appropriate.

Shame on you CPU companies!

#arm #intel #amd #cpu
4
0
2

Jarkko Sakkinen

I wish I read more tech books where the author thanks her lovely husband for patience and encougarement. Acknowledgements are like a time trip 50s family model. #tech #books
1
0
0

Jarkko Sakkinen

With a Signal 0day one would be millionaire at instant.

Better than Bitcoin ;-)

#infosec
0
0
0
Edited 9 days ago

I'm looking for a job. I have 30 years of experience doing complex systems programming in many languages, most recently Typescript, Haskell, and Python. I learn quickly. I can do advanced mathematics.

In 2024 I helped a company migrate 15,000 customers from another company into their own systems.

In 2023 I helped develop a differential privacy database product written in Haskell.

Before that I helped develop a laboratory information management system that tracked up to 40,000 Covid-19 tests per day.

I live in Philadelphia, Pennsylvania, USA, but I have years of success working remotely, and I am also willing to consider relocation.

Please check out my CV.

https://plover.com/~mjd/cv/Mark%20Jason%20Dominus.pdf

2
10
0

Jarkko Sakkinen

👊🇺🇸🔥 I’d like to have this as a T-shirt
0
0
1

I’m Pixedfed-up with this shit

1
2
0
Show older