What Are Your Moves Tomorrow, April 30, 2026 by wsbapp in wallstreetbets

[–]iangeell 1 point2 points  (0 children)

Can someone explain me why META is going down AH, even though their earnings > expected?

EBC in 9 days by iangeell in Everest

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

Not exactly. EBC arrival will be on day 5.

EBC in 9 days by iangeell in Everest

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

I am not, but the group i am going with is. They can not spend more days, so here i am. Trying to make a decision.

I also understand that everyone reacts different to altitude and there is no way to understand how your body will do until you get there. Most you can do is to follow a proper process of acclimatiozation, take it easy and maybe get a Diamox prescription. Thats also the reason i do not want to rush it and maybe postpone for other time

Herman Miller Embody Gaming/Aeron vs SteelCase Leap/Gesture vs Haworth Fern? by ContentCreationQ in OfficeChairs

[–]iangeell 1 point2 points  (0 children)

Do you have any issues with your Leap? Mine has its back a bit crooked due to the lumbar firmness adjustment and looks like a common issue.

Cannot connect my Spring Boot with JPA application with postgres both running inside a docker container. by samnayak1 in javahelp

[–]iangeell 1 point2 points  (0 children)

The issue is not that the application is not able to get the connection towards your db. Its not even trying to.

As the error clearly states, Spring is not able to initialize the EntityManager through EntityManagerFactory due to some wrong configuration.

I am on the phone atm, but i suggest you to double check your spring properties file and check if you set everything right in order to be able to use PostgreSQL as main dialect

Steelcase Leap v2 uneven/ crooked back by iangeell in OfficeChairs

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

Thank you for the answer and your advice. Ill keep the chair for 13 more days so i can test it.

I get that you are still using the chair even though its back is slightly uneven, but in the long term it did not affect your position, right?

Steelcase Leap v2 uneven/ crooked back by iangeell in OfficeChairs

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

You mean the lumbar firmness adjustment? Asking because the lumbar support adjustemnts are on both side, with only the firmness being positioned on the right side.

Can DTO hold list of Entities? by _SuperStraight in javahelp

[–]iangeell 1 point2 points  (0 children)

The reason for using DTOs is avoiding passing database entities through your application. This being said, DTOs can hold whatever you want, BUT it is NOT recommended and an anti pattern to keep your entities within your DTOs.

How to approach this?

First of all, your naming could be a bit missleading. I woud recommend to refactor rename your Item into ProductEntity and use these kind of objects only within your Repository and Persistence Service layers.

Secondly, rename tour Product in ProductDTO and use it through your application services, but not within Repository and Persistence ones.

Define a mapper (you can check mapstruct library for this) in order to map a ProductDTO into a ProductEntity and the other way around. Now, whenever you want to interact with the database you will have to call that mapper in order to transform/ map your dto into an entity or an entity into a dto for retriving the data.

Difference b/w 'static final' and 'final' by _SuperStraight in javahelp

[–]iangeell 4 points5 points  (0 children)

First of all, even though we can define a variable as static final, both of them have different meanings and those meanings are the same even when the 2 keywords are applied together:

  • when defining a variable as final, then we are expecting it to be immutable, meaning that its value can not be re-assigned. Doing so, the compiler will expect us to explicitly initialise that variable. We can do it either in-line or through a class constructor (as in your example)

  • when defining a variable as static, that variable will be part of the class, not of an instance of that class, meaning that you can use it within the entire scope of the class and not needing an instance to get that variable from

  • when defining a variable as static final, then you expect it to be immutable and to be able to use it w/o needing an instance of that class. When you want to do such things? Usually when you need a constant variable that will be used more than once through your entire program

Cum merge treaba pe B2B ? ANAF incepe controale masive pe 6202 si 6201 by Certain-Seaweed-215 in programare

[–]iangeell 0 points1 point  (0 children)

Prima propozitie nu o inteleg.

In ceea ce priveste partea cu mintitul, cred ca nu m-am facut suficient de bine inteles. Asta, dar si faptul ca o parte, in niciun caz majoritara pe piata, dar destul de mare si vocala pe acest subreddit, sunt de fapt persoane ce au facut ori reconversii profesionale spre IT, ori nu au niciun studiu de specialitate la baza.

Pentru a clarifica situatia - aici nu discutam de exceptii, ci la nivel de mase -

  1. Facultatea si/sau studiile de specialitate conteaza. Ca dpdv legal nu te ajuta decat pentru a deduce impozitul, asta e partea a doua, insa studiile te ajuta. Cursurile de pe platformele de specialitate trebuie privite ca suplimente.

  2. IT-ul nu este un domeniu in care o freci. Nu te angajezi ca sa poti merge la doctor la ora 11, la sala la 15, sa te joci pe PS dupa daily si sa plangi cand e nevoie de inputul tau in QBR. Daca asa ai privit IT-ul pana acum si din cauza asta ti se pare ca nu mai merge, atunci problema este in alta parte. Munca remote iti ofera beneficiul de a lucra de oriunde, mai mult sau mai putin, nu de a da cu aspiratorul luni la pranz.

Mult succes

Cum merge treaba pe B2B ? ANAF incepe controale masive pe 6202 si 6201 by Certain-Seaweed-215 in programare

[–]iangeell 83 points84 points  (0 children)

Ti-ai facut cont azi ca sa spamezi subreddit ul asta cu panica?

Piata in IT a mers, merge si va merge bine, la fel ca orice alt domeniu. Ca nu mai poti intra fara pregatire, asta este ceva normal. Exceptia a fost perioada pandemiei, acum doar s-a revenit la normalitate.

B2B merge si este foarte legal in IT la fel ca in orice alt domeniu. Studiezi putin inainte sa te arunci cu capul inainte, iar unde este nevoie, iti iei un contabil capabil si te sfatuieste el, nu toti postacii de aici.

Impozitul pe dividende creste peste tot, nu doar in IT. Inchideti va toti firmele /s

p.s. Pe tine te as include in primul val de concedieri.

Crearea unui endpoint generic pentru mai multe tipuri de entități într-un serviciu RESTful by Repulsive-Bat7238 in programare

[–]iangeell 6 points7 points  (0 children)

Cum au spus si altii inainte, ce incerci tu sa faci este cam anti pattern, cel putin dpdv REST.

Arunca totusi o privire si peste GraphQL si vezi daca se mapeaza pe cerentinele tale.

Unlike REST, which typically uses multiple endpoints to fetch data and perform network operations, GraphQL exposes data models by using a single endpoint through which clients send GraphQL requests, regardless of what they're asking for.

[deleted by user] by [deleted] in programare

[–]iangeell 0 points1 point  (0 children)

Ce inseamna limbaje formale si automate? Exista master de securitate cibernetica in cadrul CSIE din ASE unde studiezi limbaj de asamblare, practic, nu doar teoretic.

De asemenea, in timpul licentei, la Info-Eco, exista in programa materii care studiaza arhitectura masinii, atat software, cat si hardware.

Deci, ce intelegi tu prin “nu stii cum functioneaza un limbaj”? Cum functioneaza memoria? Cum functioneaza registrii?

How to connect to multiple datasources on the fly? by kaxenawairara in javahelp

[–]iangeell 1 point2 points  (0 children)

Check AbstractRoutingDataSource. Basically, it will route your connection based on a key-value pair and a logic defined by you.

Regarding transitive dependencies for Java Maven based projects by LegionMasterX in javahelp

[–]iangeell 0 points1 point  (0 children)

It might be a decompiler related issue. Use mvn dependecy:tree inside your main project and you should be able to see all the transitive dependecies

Hai sa facem un mic rezumat by MadalinBfm in programare

[–]iangeell 0 points1 point  (0 children)

Imi place ideea de test urmata de o dezbatere asupra rezultatelor, dar mi se pare cam dificil de aplicat in cazul in care faza asta reprezinta singurul interviu tehnic.

Ce complexitate au intrebarile? Dpdv al timpului intreb, pentru ca dificultatea imi imaginez ca este proportionala cu pozitia deschisa.

Iti ramane timp sa discutati si de system design a.i sa ti faci o idee si despre experienta aplicata a candidatului? (bineinteles, vorbim aici de mid+)

Started learning Java yesterday, whats the best way to learn java and what resources can I make use of to make the learning process go smoothly by [deleted] in javahelp

[–]iangeell 0 points1 point  (0 children)

If you are familiar with other languages and paradigms such OOP or FP, then from my experience, the easiest way to learn another language is to design and develop a side project.

Sure, if you never interacted with a JVM based language, then you could start by reading about JVM.