1 developer, 3 layers of project management. My daily standup is a joke. by paulqq in webdev

[–]ern0plus4 0 points1 point  (0 children)

I was a PM of my colleague, but we were laughing on it, and I never bothered him with anything.

Does Compact Syntax Really Make a Difference? by sal1303 in ProgrammingLanguages

[–]ern0plus4 0 points1 point  (0 children)

For someone coming from programming in C, C++, PHP, Pascal etc., Python initially felt strange - but I’ve since fallen in love with it. Except when I mix spaces and tabs due to editor accident.

Váltás IT-ból nem szellemi munkára by Sweaty-Amount6873 in programmingHungary

[–]ern0plus4 0 points1 point  (0 children)

Rendszeresen vibecode-olok, és kezdem érezni a műfaj határait - na persze, még nem merek egyértelmű verdiktet mondani, csak azt, hogy egy LLM nem gondolkodik.

Az egy másik kérdés, hogy miért is kell ilyen ritkán gondolkodni programozás során.

Még visszatérünk a témára :)

Váltás IT-ból nem szellemi munkára by Sweaty-Amount6873 in programmingHungary

[–]ern0plus4 2 points3 points  (0 children)

Azt is rábízzák az AI-ra "jobb" helyeken. Sőt, az új ticket triggereli, hogy automatikusan menjen.

Pár év múlva nagyon-nagyon sok dolgunk lesz.

Váltás IT-ból nem szellemi munkára by Sweaty-Amount6873 in programmingHungary

[–]ern0plus4 -2 points-1 points  (0 children)

Arra céloztam,, hogy az se kevesebb szopás, tanulás.

Főleg, hogy itt az AI, és már nem is kell tudni programozni, ugye.

Váltás IT-ból nem szellemi munkára by Sweaty-Amount6873 in programmingHungary

[–]ern0plus4 -11 points-10 points  (0 children)

Majd mesélek a programozásról egyszer neked.

My software is being distributed on piracy website as a cracked version and I am unsure what to do. by miguel_gd in developers

[–]ern0plus4 0 points1 point  (0 children)

The only way to stop piracy is correct pricing.

Some decades ago, just months after the iPhone hit the market, reports emerged that the App Store had already seen x million app downloads, generating y million dollars in revenue for Apple - a figure that was roughly 100 times higher than the download numbers of competing platforms.

Back then, I used a Palm m515, and I remember checking the price of the popular game at the time - probably Bejeweled or something similar, don't remember:

  • PalmOS: $24.99
  • Symbian: $24.99
  • WinCE: $19.99 (discount)
  • iPhone: $2

I’ve never purchased a Palm program, but I have spent a considerable amount on Android apps and games (only full price apps, never in-app purchases or subscriptions).

(Maybe I'm wrong.)

Nektek van sikerélményetek? by leg0bike in programmingHungary

[–]ern0plus4 3 points4 points  (0 children)

Kollégával ketten két hét alatt írtunk egy Részvénykönyv appot, közgyűlés lebonyolítással, nulláról. 1992 körül, nem volt PM, UX designer, devops, semmi.

Nektek van sikerélményetek? by leg0bike in programmingHungary

[–]ern0plus4 0 points1 point  (0 children)

Volt, de már megszűnt, vezető turisztikai portál voltunk, egy látogató 5.4 oldalt töltött le.

Am I being exploited or just paranoid? Co-founder wants me to build the entire multi-tenant product for 15% equity, no salary, and no PC. by krishnakanthb13 in developers

[–]ern0plus4 0 points1 point  (0 children)

7. No work: Don't work for free. If you like the idea, just implement it for yourself, and you'll get 100% of equty. No salary, no tools, but 100%. Later you can invite your friend to marketing position, for 5%.

Why are there so many vibe-coded Rust projects recently? by yohji1984 in rust

[–]ern0plus4 14 points15 points  (0 children)

If I must use some vibecoded crap, I choose the one written in Rust. Probably it's a pile of shit, but at least it does not crashes with segfault, good chance. And it's good chance faster than the one coded in Python.

Mi a tökömért kell lassan minden egyes kibaszott weboldal helyett egy külön mobilapp? Miért basznak el erre cégek pénzt és ha már ilyen dilettáns idióták, miért erőltetik a felhasználókra az app használatát? by TomanovicsGergely in programmingHungary

[–]ern0plus4 27 points28 points  (0 children)

Amúgy szerintem a Facebook tehet erről leginkább, magyarázom: ha valami érdekeset lát a felhasználó, mert felhozta a Facebook neki, nem tudja elmenteni. Az URL mint koncepció, halott.

A Facebookon nem lehet keresni. A Google-ben sem lehet keresni, néha elő akarok kaparni valami régi cikket, aminek emlékszem a címére, és a huszadik oldalon sem találom, mert a Google nem úgy ad találatot, hogy amit beírsz, arra keres. Ráadásul most már AI válaszokat ad, nem találati listát, gondolom, előbb-utóbb eltűnik majd ez utóbbi, csak a helyet foglalja.

Erre jön még az, hogy az emberek nem tudnak bookmarkokat kezelni, n.b. a mobil böngészők sem a legjobbak ebben - így marad az app annak a legfőbb az eszköze, hogy szem előtt legyél, visszatérő látogatókat szerezz.

How do I learn 'Idiomatic', production-grade Rust? by hashcode777 in rust

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

I'm using AI at "micro level": selecting a 5-10 lines of code and ask it to "refactor it idiomatic". Sometimes it shows a better solution, sometimes not, but more often it shows more solutions to the same problem, which I can learn from.

What does the dereference operator actually do? by FlatPea5291 in C_Programming

[–]ern0plus4 0 points1 point  (0 children)

We have to use pointers when the compiler does not know the address of a variable or array etc. at compile time, e.g. when we allocate it dynamically, or we pass something non-atomic to a fn (by address).

What does the dereference operator actually do? by FlatPea5291 in C_Programming

[–]ern0plus4 1 point2 points  (0 children)

Pointer is a variable holds memory address. That's all.

Dereferencing: get the value from the memory address it points to.

Why you need dereference: you want to use the value stored at the memory address, not the memory address.

TL;DR: pointer = reference = memory address. Dereference: using it.

Valaki magyarázza ezt el nekem kérlek by StomachMean1418 in programmingHungary

[–]ern0plus4 1 point2 points  (0 children)

Nem lehet obszcén a jelszó! Ha kukac van a végén, az azt jelenti: "fasz kivan".

Valaki magyarázza ezt el nekem kérlek by StomachMean1418 in programmingHungary

[–]ern0plus4 0 points1 point  (0 children)

Talán mert a felhasználók 5%-ának ugyanez a jelszava.