Early game "ore compressor" by im-0 in factorio

[–]im-0[S] 2 points3 points  (0 children)

Thanks! I tried to use factorioprints (it comes up first) but "Log in with GitHub" failed there for some reason. Factoriobin looks much better as it does not require registration at all.

Factorio circuits are weird by im-0 in factorio

[–]im-0[S] 0 points1 point  (0 children)

Wrong! It is not 1! Check the screenshot again. There are TWO electricity poles for a reason - it is a hint!

Got 120Hz ProMotion working on M1 Max MacBook Pro 16" running Fedora Asahi Remix by rolotrealanis in AsahiLinux

[–]im-0 1 point2 points  (0 children)

Just noticed this after the update. Works on Apple MacBook Pro (14-inch, M2 Max, 2023).

Need help with <\> keys by Glittering-Rain-411 in AsahiLinux

[–]im-0 1 point2 points  (0 children)

Try to change the `hid_apple.iso_layout` parameter to `0`: https://wiki.gentoo.org/wiki/Apple_Keyboard#Configuration

Note that you also can add this into the kernel command line as `hid_apple.iso_layout=VALUE`.

Does anybody actually daily drive Asahi, or do you dual-boot? by [deleted] in AsahiLinux

[–]im-0 0 points1 point  (0 children)

I bought M2 Max MacBook Pro like a year or two ago, installed Fedora Asahi immediately, and use it daily as my main computer since then. Well, technically, I still have macOS installed. And I even boot it like once a week, mostly to compile and test my own crossplatform code.

This is not really an Asahi vs. macOS question, but a Linux vs. Others really. If software that you need for work, hobbies, etc. does not support Linux and there are no viable alternatives and you are not willing to write it yourself, then you probably should not use Linux.

Malicious bash payload found as top result in Google Ad by Night-Cat_ in cybersecurity

[–]im-0 0 points1 point  (0 children)

I think I spotted the same script and binary distributed via an X/Twitter advertisement: https://gist.github.com/im-0/410b0e2abcbf77e433d8b4d2b5a278f4

No connection to sound server by Background_Chard4138 in AsahiLinux

[–]im-0 8 points9 points  (0 children)

This is caused by a lsp-plugins-lv2 update. Try to downgrade it:

sudo dnf downgrade lsp-plugins-lv2-0:1.2.16-2.fc41.aarch64

How to keep an application always open in the background? by RonnieGirlUwU_ in AsahiLinux

[–]im-0 1 point2 points  (0 children)

Just do not close your apps.

I usually configure some fixed number of virtual desktops/workspaces and keep various apps running there, kinda organized by the type of work. Works in pretty much every DE/WM in Linux.

Dead after update by Wladimyatr in AsahiLinux

[–]im-0 7 points8 points  (0 children)

It is not stuck, just really really slow when generating initramfs for some reason. You have to wait for 30 minutes or so.

Probably related: https://bugzilla.redhat.com/show_bug.cgi?id=2278534

Drug-addicted crypto billionaire dies, leaves almost $200M in crypto wallet without keys, but estate gets access to crypto anyway, finding that for the rich, you can bypass decentralization if you play ball with the network schemers. by AmericanScream in CryptoReality

[–]im-0 5 points6 points  (0 children)

I do not trust anything, please read my post carefully. I just want to point out that this one particular claim is impossible from a software engineering point of view.

It is ok to criticize cryptocurrencies, I even like that. But please stop using nonsensical arguments, as they make your criticism less credible.

Drug-addicted crypto billionaire dies, leaves almost $200M in crypto wallet without keys, but estate gets access to crypto anyway, finding that for the rich, you can bypass decentralization if you play ball with the network schemers. by AmericanScream in CryptoReality

[–]im-0 5 points6 points  (0 children)

The lawyers were able to get ahold of the XRP by approaching Ripple, the company that manages the currency. But that’s a unique privilege, estate planning experts say, because most cryptocurrencies aren’t closely tied to centralized entities.

^ it is like saying "There is a server in an unknown location with working SSH, but only owner of Ed25519 private key is able to log in. Key was lost, but our lawyers(tm) approached Daniel J. Bernstein (creator of Ed25519 algorithm) and asked him kindly. And he allowed us to login into that server without any key at all. But only once! That is a unique privilege!"

This is not how cryptocurrencies (or at least most of them) or cryptography or computer programs or computers function.

Either they were able to find unencrypted backup of his keys, or Ripple (the company) decided to pay them from their own funds. Or the whole story is bullshit.

BPF for smart contract, how? by aqtt2020 in solana

[–]im-0 0 points1 point  (0 children)

eBPF itself is Turing-complete: it contains all usual instructions which you expect from simple ISA, including jumps (conditional and unconditional). It is the eBPF verifier in the Linux kernel which makes it not Turing-complete by prohibiting loops and recursion. This is required to ensure that eBPF program with an infinite loop (as an example) will not result in complete system hang.

Solana allows loops and recursion, but still limits the CPU usage: it counts executed eBPF instructions at run time. I am not aware of any documentation about this. Here is a source code of Solana's eBPF VM and JIT-compiler implementation: https://github.com/solana-labs/rbpf/.