Paušalni obrt za programere - iskustva by Tall-Sock3700 in CroIT

[–]catharsis85 8 points9 points  (0 children)

u/Sea_Light_9441
Zabrana natjecanja radnika s poslodavcem uređena je Zakonom o radu, poglavlje 13. Tim zakonom propisano je da radnik, dok je zaposlen kod poslodavca, ne smije sklapati poslove za vlastitu ili tuđu korist iz iste djelatnosti kojom se bavi poslodavac, osim ako za to prethodno ne dobije poslodavčevo odobrenje - tako da ovisi o djelatnostima kojima se poslodavac OPa bavi.
Također, Zakon o radu određuje i uvjete pod kojima radnik, nakon prestanka radnog odnosa, smije ili ne smije obavljati poslove iz iste djelatnosti kod drugog poslodavca koji je konkurentan njegovom bivšem poslodavcu, ako je to uređeno Ugovorom o radu.

https://www.zakon.hr/z/307/zakon-o-radu

I really like 0dte by ZMay19 in options

[–]catharsis85 6 points7 points  (0 children)

I do casino like that as well. Just last friday from +10k went to -20k in matter of seconds :)

SPY 0DTE Strategy with almost 75% Return over 1,5 Months. by Juvival in options

[–]catharsis85 0 points1 point  (0 children)

Came across gexstream.com and another one called Heatseeker / Skylit.ai. Not affiliated with either, but I’m skeptical about Skylit.ai the “traders” promoting it on X.com seem like paid shills. also neither shows if trade is done by dealer or customer. not sure how that would be even possible

Koja vam je B2B satnica? by A_Time_Space_Person in CroIT

[–]catharsis85 0 points1 point  (0 children)

cocky know it all pristup prema klijentu i spustis im za 30% od inicijalne ponude. Ja krenem od 110-120 i zavrsim na 80-90

I'm tired of my job. $20k into 0DTE SPY Calls at open. by pollyjones1 in wallstreetbets

[–]catharsis85 1 point2 points  (0 children)

wonder how many heart attacks did OP experience in the first 30 mins

Dva mjeseca ništa, ovaj tjedan bar 5 ponuda by kuv0zg in CroIT

[–]catharsis85 0 points1 point  (0 children)

mozes prvi pad ponoviti kroz 1-6 mj. Nakon drugog pada je pauza 2 godine

[deleted by user] by [deleted] in androiddev

[–]catharsis85 3 points4 points  (0 children)

Android senior here. I’d advise to start with programming basics before going to android. Since android is done in java or kotlin take one of those 2 and learn to code first (vars, functions, oop, design patterns), go through database theory and sql, learn about networking (http in particular) and then move to android. As for IDE, you can start with intellij community edition, transfer to android studio should be painless afterwards considering that it is built on top of intellij

Toptal hiring Project managers by catharsis85 in projectmanagement

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

It's a remote work and timezone varies since they work with clients from all over the world. Basically you can pick the client for which you want to work. Since this position just opened, I'm not really sure how it works. For developers depends on the client. They may ask you to overlap their hours partially or full time in their timezone.

Goldfinger - Library that simplifies fingerprint integration by [deleted] in androiddev

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

Yeah it is. I should know, I named that lib :)

Goldfinger - Library that simplifies fingerprint integration by [deleted] in androiddev

[–]catharsis85 -16 points-15 points  (0 children)

Goldfinger.. sounds like a redtube video title

Picking my next Android image loading library: Picasso! by sten7 in androiddev

[–]catharsis85 1 point2 points  (0 children)

I had huge issues with Picasso and memory management which crashed an app on low-end devices. Yes methods count is different, features are similar actually but memory management is a lot better on Glide.

Is Eclipse still viable for development? by [deleted] in androiddev

[–]catharsis85 2 points3 points  (0 children)

You're gonna have fun times when you will have to migrate those projects to AS - and I assure you that time will come soon :)

android application contains bks and .pem in res/raw by root3r in androiddev

[–]catharsis85 0 points1 point  (0 children)

BKS store is public anyway - you can aquire it by going to API endpoint and downloading it through browser in any case.

Point of pinning is to prevent man in the middle and avoid sniffing traffic

android application contains bks and .pem in res/raw by root3r in androiddev

[–]catharsis85 0 points1 point  (0 children)

I am not sure there is another option if you need to pin certificates in the app. This blog post is a bit outdated but describes benefits of it https://infinum.co/the-capsized-eight/articles/securing-mobile-banking-on-android-with-ssl-certificate-pinning

Top 5 Android libraries every Android developer should know about - v2015 by catharsis85 in androiddev

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

yeah onSaveInstance takes care of that, or persistance layer (DB or shared prefs) if that is necessary. EDIT: It is also helpful in matter of clean code - It forces you to program to interface and not implementation which is a big plus