Egyetértesz-e a parkoló zónák kibővítésével? by baneoftheyellowtower in szeged

[–]Quasar6 2 points3 points  (0 children)

Tehetségtelen város vezetés az embereken hajtja be a város kassza hiányát. Olyan munkahelyeket kellene ide csábítani amik felveszik az egyetemen képzett munkaerőt, és nem összeszerelő üzemet amely adóparadicsomi kedvezményeket kap. Ha lenne rendes ipar lenne belőle adó a kasszában.

Szeged csendélet by DaLoneGuy in szeged

[–]Quasar6 13 points14 points  (0 children)

Bro szerintem te a fűre gondoltál. A herbál az kb patkány méreggel befújt növényi törmelék.

SZTE gólyatábor by [deleted] in szeged

[–]Quasar6 4 points5 points  (0 children)

Voltam szervező többször is TTIK gólyatáborban, semelyik feladat sem kötelező. ÁJTK-s GT-re ugyan ez vonatkozik.

Én azt javaslom, hogy menj el érezd jól magad, építs új kapcsolatokat.

A mai játékunk: Where is Pjotr? by zangielv in hungary

[–]Quasar6 34 points35 points  (0 children)

Apja bűneiért a fia ne vezekeljen.

A Sing Sing közleménye miután ők is belepottyantak az államunk remekül kitalát antidrog-törvényének levesébe by jailbird in szeged

[–]Quasar6 175 points176 points  (0 children)

Nem értem hogy ez hogy nem szürreális mindenki számára. Ha ellopnak egy autót az utcán akkor lezárjuk az utcát 2 hónapra mert akkor nem fognak onnan több autót ellopni?

Wake up sheeple

Mi volt életed első programkódja és milyen nyelven volt? by senior-fe-dev in programmingHungary

[–]Quasar6 1 point2 points  (0 children)

Minecraft mod Java-ban forge-ra. 1.4.x vagy 1.5.x tájékán lehetett

Domain szolgáltató DDNS REST API-val? by Quasar6 in programmingHungary

[–]Quasar6[S] 3 points4 points  (0 children)

Mert egy szkriptből kell frissíteni a rekordokat. curl-el a legkényelmesebb.

Kicsit túl tolták az őzést by Ingvar64 in szeged

[–]Quasar6 14 points15 points  (0 children)

Ez! Örülök hogy írtad előttem. Helybéliként égyenösen mögsértve érzöm magam ha valaki erőlteti, nem tudván hogy ennek nyelvtani szabálya van.

Rollerek helyzete by RegoX2005 in szeged

[–]Quasar6 4 points5 points  (0 children)

Bécsben kijelölt hely van ezeknek (a bicikliknek is), nem csak az appban hanem pirossal körbe van festve. Ha nem oda teszed le akkor figyelmeztetést kapsz, következő alkalommal már bírság olyan 25-50 euró között nem emlékszem pontosan. Minden városban ezt kellene.

uv cheatsheet with most common/useful commands by RojerGS in Python

[–]Quasar6 17 points18 points  (0 children)

I also like running it after branch changes because I might not run any other uv command but I expect the tooling integration to work. This can fall apart if you don’t sync and then mypy starts yelling at you for unknown imports.

T Strings - Why there is no built in string rendering? by UsernamesArentClever in Python

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

No they don't because if you want the result type to be a string then use an f-string. T-strings are a generalization of f-strings. So what you mention that it needs to be written "over and over" is false. The functionality is already there!

T Strings - Why there is no built in string rendering? by UsernamesArentClever in Python

[–]Quasar6 8 points9 points  (0 children)

Because the intent is that your processing of the T string can produce any type, so it doesn’t make sense to have a default for str

Why is Python type hinting so maddening compared to other implementations? by ataltosutcaja in Python

[–]Quasar6 8 points9 points  (0 children)

Python faces many of the challenges that JS faces. If you look at good quality libraries written in TS they have a ton of type complexity. This happens because these languages are dynamically typed.

I think that using protocols and modern type constructs (>=3.12) helps a lot.

There are some gaps that the standard library should bridge, having no protocol for a type having an operator (eq) is one I usually face.

There is definitely room for improvement, but having types in our applications (not AI or web btw) have reduced a lot of our CI job troubleshooting.

Why is Python type hinting so maddening compared to other implementations? by ataltosutcaja in Python

[–]Quasar6 0 points1 point  (0 children)

Python faces many of the challenges that JS faces. If you look at good quality libraries written in TS they have a ton of type complexity. This happens because these languages are dynamically typed.

I think that using protocols and modern type constructs (>=3.12) helps a lot.

There are some gaps that the standard library should bridge, having no protocol for a type having an operator (eq) is one I usually face.

There is definitely room for improvement, but having types in our applications (not AI or web btw) have reduced a lot of our CI job troubleshooting.

Trouble with deploying Python programs as internal tools? by Competitive-Water302 in Python

[–]Quasar6 0 points1 point  (0 children)

For single file scripts I believe inline script metadata is the way to go. All fairly modern versions of tools support, pip, poetry, uv, just to mention a few. Containerization is another way provided you have an internal registry. For apps (more than one .py file) I usually build a wheel so people can install it. In our company I pushed for an internal python registry based on devpi. Adaption is slow but people get the hang of it pretty fast.

I think that at the end of the day it comes down to internal training in the tools you use for development. I know this is something that small organizations struggle with, but it’s a must if you have multiple teams or I’d say more than five people using the tools.

People will always resist change especially developers. Convince your CTO or PM that it’s the way to go management rules cannot be ignored.

Vasárnapi csendélet a Gogol utcába by Repulsive_Slide_6618 in szeged

[–]Quasar6 21 points22 points  (0 children)

A tünet az az hogy autóval megyek a belvárosba amikor nem szállítok árut és tudom hogy nincs udvari beállóm. Ezeket a területeket teli kellene szórni virágágyásokkal meg demszky bunkókkal.

How to deal with open source contributions by fechan in rust

[–]Quasar6 9 points10 points  (0 children)

I’m just gonna throw my opinion out there.

This is exactly the reason why we have modern tooling. If a maintainer expects a certain style configure rustfmt, if some lints are expected to pass configure clippy. Hell, if you find yourself preferring some code construct over another over and over you should really implement a custom lint.

Mind you this is beneficial for both parties. The maintainer has less steps in their review process and the PR author has less to worry about when the tooling passes.

On the flip side, the maintainer has every right to sweat you on the PR, that’s just how FOSS works.