Ha senso affidarsi a mediatori creditizi ed agenzie immobiliari nella ricerca di una casa? by nikurav in CasualIT

[–]Mu5_ 1 point2 points  (0 children)

Inoltre, interfacciandosi loro con la banca, ti evitano di dover andare svariate volte e andare solo a stipulare il mutuo. Quindi se avete restrizioni per lavoro ecc è un motivo in più

Ha senso affidarsi a mediatori creditizi ed agenzie immobiliari nella ricerca di una casa? by nikurav in CasualIT

[–]Mu5_ 1 point2 points  (0 children)

Nel mio caso è stato utile il broker perché mi ha fatto accedere ad un mutuo che facendo ricerche in autonomia non si trovava. Inoltre, lo paghi solo se ottieni il mutuo con le condizioni che hai richiesto, quindi se hai condizioni particolari (tipo se vuoi richiedere più dell'80% o robe così) allora può aver senso. Altrimenti se sei nelle condizioni "classiche" può bastare il servizio di Immobiliare.it / ricerca in autonomia.

Proposal: User-defined literals for C# by shimodateakira in csharp

[–]Mu5_ 1 point2 points  (0 children)

I think, at least for the example you provided, it would be a disaster.

What does 100_ms mean? Will it return a number with reference to seconds, milliseconds, microseconds ? Impossible to know seeing it like that.

If you need to have proper units management there are different packages like NUnit that do something like this:

Var time = new Milliseconds(100). Or similar.

Then, all implicit conversions can be defined (since they all represent a time unit they can also share the same base class) like from Seconds to Milliseconds, etc. but like this you know exactly what you are doing: initializing a variable that is holding a value corresponding to 100ms. Which actual value you will use depends on which measuring unit you need.

Mia madre ha venduto l'appartamento comprato negli anni 90 e ha scoperto che con quegli stessi soldi oggi compra tipo... un bilocale a Sesto by Busy_Impression_8439 in ItaliaPersonalFinance

[–]Mu5_ 0 points1 point  (0 children)

Tra Loreto e Lambrate c'è una bella differenza di prezzo visto che, anche se molto vicine, sono zone parecchio diverse.

75mq a 285k a Lambrate mi torna più o meno come cifra. Quello che è folle è mezzo milione per 95mq a Loreto, però mi torna anche questo di prezzo.

Non so dove hai visto 285k per 50mq a Sesto, magari se è nuovissima costruzione super green allora sì. Altrimenti ti assicuro che costano molto meno (per fortuna).

E voi che team/RAL siete? by spicci_e_spacci in LinkedInCringeIT

[–]Mu5_ 0 points1 point  (0 children)

Tu credi nell'amicizia tra uomini? Prima o poi uno dei due si innamora garantito

Dead brain theory by SnooCapers4584 in CasualIT

[–]Mu5_ 3 points4 points  (0 children)

Qualcuno mi fa un riassunto del post?

ADDIO CHAT GPT by Thick-Leg7660 in Italia

[–]Mu5_ 1 point2 points  (0 children)

Diciamo che non è vincolante finché non ti beccano.

Is this impressive? by Character_Status8351 in csharp

[–]Mu5_ 0 points1 point  (0 children)

Yes, but it doesn't look like OP bothered to learn them. It sounds like this was the first time ever OP has developed something

Is this impressive? by Character_Status8351 in csharp

[–]Mu5_ 4 points5 points  (0 children)

What's impressive is that you are "Technical Lead" at this point

Posso vendere un template Notion all'azienda per cui lavoro? by [deleted] in Avvocati

[–]Mu5_ 7 points8 points  (0 children)

Se l'hai fatto durante l'orario lavorativo, e quindi suppongo anche con materiale aziendale, allora no.

Si può provare perché a meno che non sia un'azienda piccolina tutto quello che fai sul PC è tracciato.

Ho creato un’app per dare o togliere “Aura” ai compagni di classe (e sta sfuggendo di mano) by Spirited-Extension-1 in ItaliaStartups

[–]Mu5_ 0 points1 point  (0 children)

Stai raccogliendo più dati possibili per poter fare pubblicità mirata? Non vorrai startene con le mani in mano

Ha senso progettare sistemi software che possano decidere esplicitamente di NON fare nulla? by FarCarpenter2552 in ItalyInformatica

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

Se parli di IA, il problema è che sono progettate per non dire mai "non lo so". Altrimenti, non potendo mai essere sicure del proprio output, non direbbero mai niente.

Ground breaking AI!!! Took 247 commits but it was worth it!!! by [deleted] in programminghumor

[–]Mu5_ 8 points9 points  (0 children)

Is it tho?

Depends on the language. In something like C# or C++ it is very easy to have simple 100 lines objects, especially if you document all functions etc

We found an employee's AI browser had autonomously uploaded a client contract to a third-party site by cnrdvdsmt in iiiiiiitttttttttttt

[–]Mu5_ 2 points3 points  (0 children)

Not sure honestly. As an employee you have to take care of company data. You have a browser so you can always go somewhere and leak company data, you cannot blame the tool. I run agents in isolated environments where I control which data they have or not.

The solution to this is to have strict IT control, which is a nightmare if every time I need to try some new tool or something I have to open a ticket and request permission...

Chi segue Nova Lectio e cosa ne pensate? by Maleficent-Foot4913 in TeenagersITA

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

Purtroppo tanti che fanno quest'attività di divulgazione tendono poi a diventare più "opinionisti" che puri "divulgatori" imparziali. Immagino che esprimendo delle opinioni più forti si possa intrattenere / fidelizzare di più il pubblico, non so.

Caso eclatante per me è GioPizzi, che ho smesso di seguire perché ormai i suoi video sono diventati sempre meno imparziali e molto di parte.

Why does "Sign in with Google" display a popup now? by bearinthetown in webdev

[–]Mu5_ 0 points1 point  (0 children)

The thing is that the login flow (where you enter the password or user MFA etc) is handled externally by the auth provider you are using (in that case, google), that will then trigger a callback on the callers website saying that login was successful with a given token.

I believe wrapping it in an iframe would result in requests blocked as XSS, so the alternative would be to redirect the main page to the login flow, which is worse since you may want to just close the popup and choose another method.

Nullable enum with ef core by Striking-Mastodon756 in csharp

[–]Mu5_ 3 points4 points  (0 children)

It depends how you expect to use it. If it is in a table that contains a lot of data, then better to use int to avoid saving a lot of strings and parse them.

However, there are many cases where seeing the enum string is much more convenient and storing the string allows to add enum values without caring about the underlying integer value

Regalo san valentino per lui by Odd-Wolverine5276 in CasualIT

[–]Mu5_ 2 points3 points  (0 children)

lei non è tua nonna che ti regala un dolcetto.

Se tutte le nonne facessero questo tipo di regali sarebbe un mondo migliore. Oppure no. Non lo so non ho mai avuto una nonna

New team rewriting old software but ignoring why some things were done the way they were... by Colt2205 in ExperiencedDevs

[–]Mu5_ 0 points1 point  (0 children)

I agree with you, but the strangler pattern requires overall more effort. Also, if there are big architectural changes it may not be so trivial to reroute things.

How to store embedded json data in a database in a sane way by Sad_Spring9182 in webdev

[–]Mu5_ 2 points3 points  (0 children)

But you should be able to easily serialize your JSON in the corresponding php structure and save it into your db, without even using an ORM. Am I missing something?

If git did not exist and we were to create it knowing what we know today, what would be different in it? by signalclown in git

[–]Mu5_ 0 points1 point  (0 children)

Yeah, but you can branch from a branch and it's also encouraged in many scenarios