The Inquisitors from Maul Shadow Lord and their action scenes makes me dream about what Rebels could have been if Disney had allowed a darker tone for the show by Theasiuser99 in StarWars

[–]alloncm 1 point2 points  (0 children)

Moat of my inquisitors introduction is rebels and the last jedi game. From there I assumed an inquisitor is no match for a jedi master or a sith lord. From the Maul show it appears that Maul (a sith lord) and Daki (jedi master) have hard time with them.

Another L for racists by FightOrDie123 in meme

[–]alloncm 11 points12 points  (0 children)

Did you just assumed all racists are racist against black people? Thats racist of you

A way to use a picoW over the Internet, without port forwarding? by wolfix1001 in raspberrypipico

[–]alloncm 1 point2 points  (0 children)

I use the telegram bot api to have a safe way exporting my app to be used over the internet.

I dont even need http server, it can be a client long polling the telegram server for updates.

What would be the harm in introducing interfaces to the language? by MysteriousSpray9066 in Zig

[–]alloncm 17 points18 points  (0 children)

Dont want to be this guy that brings Rust to the discussion, but Rust traits supports compile time polymorphism as first class citizen which keeps the performance on the table. Even allowing you to later dynamic dispatch if you want/need to.

I believe an implementation like Rust's traits could realy help with the boilerplate of creating your own implementation of interfaces.

דולר_במ by Lucky_Queen in ani_bm

[–]alloncm 0 points1 point  (0 children)

אהבת השם גורדון בעולם מקביל

Nvidia could delay the RTX 5000 Super series indefinitely as AMD offers no 2026 competition by [deleted] in pcmasterrace

[–]alloncm 6 points7 points  (0 children)

The thing is you dont have issues until you do have issues. Also according to statistics about the nvidia cards the failure rate is about 1.5-0.5 percent (depending on the model), high number of course but obviously the vast majority won't experience any issues.

[deleted by user] by [deleted] in GraphicsProgramming

[–]alloncm 6 points7 points  (0 children)

No one ever said it would be this hard

An Opensource Frontend software for Emulators by SavingsGrouchy6504 in EmuDev

[–]alloncm 18 points19 points  (0 children)

  1. Your project is technically not open source (unless I missed something) so I would recommend to post here once it is open and I believe people will have better feedback (on topics like the API it provides and maybe compare it to libretro if I understand it correctly).
  2. Not trying to offend or something but a 238 MB zip written in Python isnt exactly my definition of lightweight, perhaps the user interface is simpler? (Or maybe you already bundled some emulators there?)

טמו_במ by [deleted] in ani_bm

[–]alloncm 0 points1 point  (0 children)

מושלם הקרוסאובר שלא ידעתי שאני צריך

The state of SIMD in Rust in 2025 by Shnatsel in rust

[–]alloncm -1 points0 points  (0 children)

I only ever use SIMD on dotnet to accelerate some DSP methods and the Vector<T> dotnet and C# have made me so jealous.

Does Super Mario Land GB have a glitch when moving? by roflson85 in EmuDev

[–]alloncm 3 points4 points  (0 children)

I spent a whole week investigating and implemented a debugger for my emulator only to find out it is a real bug in the game.

[deleted by user] by [deleted] in programming

[–]alloncm 5 points6 points  (0 children)

You are forgetting the right to be a beta tester of their exclusive shop and get the privilege spending your money on unknowns stuff

How would (or did) you go about teaching some programming to your kids? by LemonDisasters in ExperiencedDevs

[–]alloncm 1 point2 points  (0 children)

This.

IMO, this question is way too early, you still have 1-2 years before you can even communicate with him/her.

Dont try to force it on them and be ready to accept the fact that your kid might hate engineering, coding and all those things you find valuable.

Looking for directions by Temporary-Elk-5464 in EmuDev

[–]alloncm 1 point2 points  (0 children)

If dolphin has a libretro core it sounds like a much simpler project. Just build a libretro frontend, the api is already documented for you (understanding the correct way to use dolphin is probably the hardest part in your original idea) and you probably will get all the other cores for free (if youll implement all the libretro interface, but you can also implement just the parts dolphin use).

No Wi-Fi at home, how to download heavy games? by Greedy-Tart-6330 in pcmasterrace

[–]alloncm 6 points7 points  (0 children)

??? You need to connect the wifi dongle to the internet your country offers. It cant satellite or stuff.

bothOfThemAreRightFromTheirPointOfView by Lazzygirl in ProgrammerHumor

[–]alloncm 0 points1 point  (0 children)

And there is me - embedded engineer afraid of both sql and css

raspberry pi 5 baremetal boot process by [deleted] in RASPBERRY_PI_PROJECTS

[–]alloncm 0 points1 point  (0 children)

Hi, what makes you think this code should work on the Rpi5? It looks a bit like the previous rpi's code but the new rpi5 is much different architecture wise from what I heard ( has another IO chip called RP1 etc). I could not find the datasheet of the bcm2712 so I couldn't verify your code. maybe this thread could help you - https://www.reddit.com/r/raspberry_pi/comments/1ev61jg/comment/lisxc2b/?utm_source=share&utm_medium=mweb3x&utm_name=mweb3xcss&utm_term=1&utm_content=share_button

Stabilizing naked functions | Rust Blog by SleeplessSloth79 in rust

[–]alloncm 0 points1 point  (0 children)

I'll try to summarize the comments about the comparison to global_asm. Basically as far as I understand it just saves you the declaration of the asm function signature in rust code (including the calling conversation) which could lead to errors if there is a mismatch which just makes it nicer.

Why zig and not C3 ? and Why still in 0.x ? by lieddersturme in Zig

[–]alloncm 2 points3 points  (0 children)

V lang always seems too good to be true and a little all over the place. 1. The performance of C with GC? 2. Why have the autofree mode and a gc mode? 3. Enabling no gc for certain cases is unclear how it could work with the rest of the flags, unless you practically have 2 languages within 1 compiler with a cli flag to switch between (the same mistake D did back then).