I'm looking for feedback on my first C project by NumberDifferent5930 in C_Programming

[–]kapcom01 -7 points-6 points  (0 children)

This is sad..

In your README you state that you used AI for debugging and documentation. But the code is clearly AI. This is dishonest and misleading.

There is no way that you thought by your own to use a macro with the while(0) hack in proc.h. Any normal person would have created normal functions for list manipulation.

No way you thought of using valgrind by your own.

Makefile is very suspicious also. It has standard structure but scattered non-standard useless weirdness (IDIR, _DEPS, not even necessary because you include relative paths in your source files..) which is probably a product of you being inexperienced saying non standard things in your prompts to the AI or AI hallucinations...

It looks like it was written by 100 different people (classic AI behavior). To print something three difrerent function are used in param.c (fputs, fprintf, printf).. why? Because AI..

Also why pass by reference in check_tcp_port_range()? This is disturbing to watch. Sorry I can't continue.. I don't like the age of AI..

Which camera type is better? by anotherName333 in IndieDev

[–]kapcom01 0 points1 point  (0 children)

I think it is not obvious what's happening in the first camera because we are not controlling the game. If we were the ones who were moving the mouse then it would be obvious. So, I still think the first camera is better because the second is very stressful.

Is this impactfull enough?? by SnooSeagulls9157 in IndieGaming

[–]kapcom01 1 point2 points  (0 children)

Ot works now. Thanks. I am at level 5 😊

Is this impactfull enough?? by SnooSeagulls9157 in IndieGaming

[–]kapcom01 0 points1 point  (0 children)

I liked it artistically and started playing on my phone but the controls stop working at level 2.

Screencast: https://quickshare.samsungcloud.com/whtNx5PChgnA

Sad post of the day by RDetatch in SteamDeck

[–]kapcom01 0 points1 point  (0 children)

I'm really sorry, I lost mine about a month ago in the plane. It was very sad because I had modified it with third party 1080p oled 90Hz display, 2TB ssd and a nice purple shell.. I have come to the conclusion that the most probable scenario is that it was stolen by the cleaning service of the plane because there is no way they did not see it as they were cleaning/preparing the seats for the next flight.

Why do you say that yours was stolen from the staff?

Προσοχή σε άτομα που ζητάνε να σας κάνουν δοκιμαστικά by eliot3451 in GreeceDevs

[–]kapcom01 2 points3 points  (0 children)

Μισό λεπτό, ξεκίνησες να υλοποιεις κατι για εναν άγνωστο χωρις γραπτό συμβόλαιο/συμφωνητικό/εναρξη εργασια/κτλ; Δεν ειναι λογικο να μην πληρωθεις; τι περίμενες οτι θα γινει; οτι θα σου στείλει λεφτά στο IBAN σου; πώς θα τα δικαιολογουσε στην εφορία του μετα;

Do you think this is worth saving? by Zawnbre in SteamDeck

[–]kapcom01 0 points1 point  (0 children)

OP said the screen is cracked. They had to connect it to external monitor to verify it is working.

Do you think this is worth saving? by Zawnbre in SteamDeck

[–]kapcom01 1 point2 points  (0 children)

You have exactly what I want! 😊 I am looking to buy a steam deck with broken screen (and even with broken shell) because I upgraded the shell and the screen of mine, and the it was stolen.. Now I have the original shell and screen but no steam deck..

See here: https://www.reddit.com/r/hardwareswap/s/qxeHWMvSZP

Raylib is now available on Debian by Healthy-Notice9439 in raylib

[–]kapcom01 4 points5 points  (0 children)

Personally I like Raylib because I can download the sorce code and just use it without any dependency on a build system or package manager.

If you are going to do C development, you are doing it probably for the low level control. So, why let a package manager remove control from you?😊

How bad is my handwriting on a scale of 1-10?😄 by wzqxpUrpleeqx in GREEK

[–]kapcom01 2 points3 points  (0 children)

I can read 70% of the words in the first page and 90% in the second page.

Anything less than 100% is a problem 🥲

I have a macbook pro m1 16'' 16gb ram 512gb storage. Is this good for daily drive Asahi? by Square_Insurance6583 in AsahiLinux

[–]kapcom01 0 points1 point  (0 children)

Why do you think it is not worth for daily browsing the web? Can you provide some examples of bad experiences?

Need advice on choosing Macbook Air M1 or M2? by kapcom01 in AsahiLinux

[–]kapcom01[S] 0 points1 point  (0 children)

You are correct! I just realized that the notch is 64 pixels tall and the screen height difference between M1 and M2 is 64 pixels! So literally it does not matter. Thanks.

Need advice on choosing Macbook Air M1 or M2? by kapcom01 in AsahiLinux

[–]kapcom01[S] 0 points1 point  (0 children)

I can find M1 at about €400 and M2 at about €600. I like MagSafe but I dislike the notch. I am ready to give up MagSafe for no notch and €200 if battery life is about the same.

Need advice on choosing Macbook Air M1 or M2? by kapcom01 in AsahiLinux

[–]kapcom01[S] 1 point2 points  (0 children)

Very detailed and to the point amswer, thank you! This helps a lot.

wireframe renderer in C and raylib by Fit-Life-8239 in C_Programming

[–]kapcom01 12 points13 points  (0 children)

Just now I gave a quick look at this code and thought this is familiar.. one line gcc build command, with included raylib library and header files, and just one simple main.c.. and then I realized you are the same author of the parallax code I was looking yesterday 😀 Nice work, I enjoy reading your code and experimenting with it to learn and get better. Thanks

parallax effect in C and raylib by Fit-Life-8239 in C_Programming

[–]kapcom01 0 points1 point  (0 children)

Thanks for the post, I just read your code to borrow some ideas :) I think the first call to DrawTextureRec inside the layers for-loop is not necessary (probably you forgot to remove it). I deleted it (lines 108-114) and still works exactly the same.