Posts
5521
Following
349
Followers
547
.
@lkundrak it is defacto for like physical objects powered by linux :-)
1
0
0
And if you get into it you want to use this: https://kas.readthedocs.io/en/latest/intro.html
1
0
1
@lkundrak 3 weeks familiar. but I had idea where to use it, which helps learning :-) I would or now that I've gotten into it I like it more.

Also, "open source community" of Yocto is like engineers using tools and that sort of attitude. We don't like this but it can carve hole :-)
1
0
1

Jarkko Sakkinen

I have quite pretty big Yocto project to be published in near weeks/months including its own meta layer and complicated stuff such as OTA updates.

More on that later but https://github.com/siemens/kas was a great finding.

Unfortunately after working with Yocto for 2-3 weeks I found Kas only yesterday but was definitely worth of rewrite... (and i sleepless night)

Previously when working with Himmelblau Siemens surprised me with with linux-entra-sso browser extension. I guess they know how to deliver :-)
1
0
0

Jarkko Sakkinen

Thank God I have one M2 Mini. It's life saver in aarch64 builds despite having to docker wrap them. And orbStack is great!
0
0
0
PormerCE was awful so I leved up a bit and now it is docker compose built Forgejo + PostgraSQL.

And I went through the trouble of configuring Woodpecker only to realize that I rather use Forgejo Runners because they are out-of-the-box (and better integrated) :-)
0
0
0

Jarkko Sakkinen

"there's no place like lan" is trending :--)
1
0
0
With single yml file with that PortamerCE app in Asustor routers backed by PostgreSQL.
1
0
0

Jarkko Sakkinen

leveled up my localhost git hosting from ssh-to-NAS to separate git-account and forgejo :-)

life quality++
1
2
4

Jarkko Sakkinen

xterm - still holding it ;-)
0
0
1

Jarkko Sakkinen

Siemens is doing BTW amazing job in open source IMHO. Bumping a lof of to cool projects they have spinned off all the time.
0
0
0

Jarkko Sakkinen

Reminder to myself:
npm config set prefix ~/.local
0
0
0

Servo is now passing 1.9M subtests at wpt.fyi: 1,903,187 / 2,131,264 (89,3%) 🎉
See https://wpt.fyi/results/?product=servo

0
3
0

Jarkko Sakkinen

reminder to myself: -DLUAJIT_DISABLE_FFI
0
0
0

Jarkko Sakkinen

Edited 1 month ago
@pinkforest Github is also infamous for spreading malware in precompiled binaries and many many other things than just AI and inference :-)

Microsoft's web story is quite bad overall over the decades even. It's all been only shit so far :-)

When thinking about LLMs, it makes me releaved to see how MS executes these days in the sense that apparently even unlimited AI resources enhanced MS is still as lack of style as always :-) It is apparently something you cannot teach.
0
0
0

Jarkko Sakkinen

I think I also publish at some point my personal backup tool of which I've been using for ages in various forms. I don't know how backup tools work, never used them, and it has been implemented over that basis :-) This is actualy only backup tool I've ever used.

/* KOPIO on-disk format structures */

static const uint8_t KOPIO_MAGIC[8] =
{ 'K', 'O', 'P', 'I', 'O', '7', '7', '7' };
0
0
0
@pinkforest I keep my distance to Github :-) I only use it if I get paid for using Github.
1
0
2
And "designed for Lua" i.e., the reason why it has files and folders is the direct mapping to Lua's table hierarchy.
0
0
0

Jarkko Sakkinen

Edited 1 month ago

“nippu - does one thing right”

https://codeberg.org/jarkko/nippu

I just need something simple and stupid as it is quite often :-)

I.e.,

#include <stdio.h>
#include <nippu/nippu.h>

int main(void)
{
	const struct nippu_node *node;
	const unsigned char *data;

	if (nippu_lookup(&assets, "/hello.txt", &node) != NIPPU_SUCCESS)
		return 1;
	if (!nippu_is_file(node))
		return 1;

	data = nippu_data(&assets, node);
	fwrite(data, 1, (size_t)nippu_size(node), stdout);
	return 0;
}
1
0
0

Jarkko Sakkinen

I sometimes wonder how many of the people who think compiler injected safety checks are great have heard about icache :-)
0
0
0
Show older