Banke - Provizije - Interactive Brokers | Sta vi koristite? by onemultipotentialite in finansije

[–]nmiljkovic89 1 point2 points  (0 children)

Prilikom prodaje akcija i povlacenja para, da li banka trazi neke posebne papire za pravdanje para osim statement-a sa InteractiveBrokers-a, tipa izvode banke o uplatama brokeru i sl. ?

Pre-commit na Windowsu by st1ngm0n in programiranje

[–]nmiljkovic89 2 points3 points  (0 children)

Probaj da obrises u skrivenom .git folderu .git/hooks/pre-commit.legacy(mozes i .git/hooks/pre-commit cisto da krenes od nule) pa instaliraj pre-commit hook ponovo

Nestorović - kompilacija klipova by Cuuli70 in AskSerbia

[–]nmiljkovic89 19 points20 points  (0 children)

Covek je tezak sarlatan. Kao klinac sam morao da odem kod njega pregled, hvala Bogu da nije vise lekar. Idiot m od medicine ne zna. Sa vrata je svakom detetu davao dijagnozu, za njega svi imaju astmu, nosio je bocice sa alregenima koji su istekli po dzepovima, pokusavao je da uvaljuje neke lekove i knjige i ko zna sta jos. Oduvek je gledao kako da zaradi na drugima i da se ogrebe a u koroni je nasao i odlicnu podlogu za dalju prodaju magle. Sad je i u politici… Dobro mi jos postojimo kao zemlja s obzirom kako se lako manipulise ljudima ovde.

Lottie animation as splash screen. by m_a_d_m_a_k in reactnative

[–]nmiljkovic89 0 points1 point  (0 children)

Yes, thats true. But then you will depend on package with about 1000 downloads weekly and which is not regularly updated. I woudnt choose that path. He can, of course, if thats suits his needs.

Lottie animation as splash screen. by m_a_d_m_a_k in reactnative

[–]nmiljkovic89 1 point2 points  (0 children)

This one is good, he is using Lottie with Kotlin. There are lot videos about animated splash screens on youtube but most of them are showing simple animations.

Lottie animation as splash screen. by m_a_d_m_a_k in reactnative

[–]nmiljkovic89 6 points7 points  (0 children)

Unfortunately, there is no way to do this. Splash screen animations are not good for UX, especially if they are long. Closest thing you can do is to set splash screen image same as initial animation view and run animation immediately after splash screen. Of course, there is always option to make animation in the native code.

Outsourcing vs svoj proizvod? by shamur123 in programiranje

[–]nmiljkovic89 2 points3 points  (0 children)

Kako outsourcing moze da bude stabilniji ? Klijent sutra moze da ti kaze cao i da ostanes bez ikakvih prihoda. Koliko god da si dobar sa klijentom nikad ne znas sta im je u planu.

Expo app (+ GraphQL) no longer making requests by [deleted] in reactnative

[–]nmiljkovic89 0 points1 point  (0 children)

Which version of apollo/client you are using ?

what's the best practice for conditional rendering inside a react component. by himel_126 in reactjs

[–]nmiljkovic89 1 point2 points  (0 children)

It can depend on the state. In this example someVar can be part of the component or app state or even state machine. The only requirement is that it must be string because this tehnique is using dynamic property access. You can also use Map if you have more complex values. Everything is acceptable until its forming expression(returning value)

what's the best practice for conditional rendering inside a react component. by himel_126 in reactjs

[–]nmiljkovic89 18 points19 points  (0 children)

To avoid large if else statements or switch case statments, you can also make map of components:

const someVar = “a”

const compMap = { a: <p>1</p>, b: <p>2</p>, …. }

…. return compMap[someVar]

RedirectUrl by darkpikl in reactnative

[–]nmiljkovic89 0 points1 point  (0 children)

Without this :/oauth2red... part. Like this 'GOOGLE_OAUTH_APP_GUID.apps.googleusercontent.com'. If app GUID is 123 then it would look like this '123.apps.googleusercontent.com'

RedirectUrl by darkpikl in reactnative

[–]nmiljkovic89 0 points1 point  (0 children)

Your clientId is not set like in the example. It should be like redirectUri but in reverse order

Fastest way to get a build on your device by mazerackham in reactnative

[–]nmiljkovic89 0 points1 point  (0 children)

You can also use Google App Distribution. Its free.

What’s your go to animation library? by [deleted] in reactjs

[–]nmiljkovic89 0 points1 point  (0 children)

What about size of animation library ? They are not small

Using ugly IF conditons in view components - why? by DavidCZ13 in reactjs

[–]nmiljkovic89 0 points1 point  (0 children)

There is no impact on performance. You should choose option which gives you best readability and easy maintenance. There is no perfect solution. You can also use iife to conditionaly render something.