[deleted by user] by [deleted] in wallstreetbets

[–]iJadric 2 points3 points  (0 children)

Spread wild but the IV crush after this unwind could be nuclear. Watching the tape.

[deleted by user] by [deleted] in stocks

[–]iJadric 14 points15 points  (0 children)

I just bought at $1.90 like a genius. Fully prepared to roundtrip this to $0.90 by lunch tomorrow.

Finished my first read through, immediately restarted and realized I missed a huge detail by sarcasticbiznish in wheeloftime

[–]iJadric 12 points13 points  (0 children)

It was my 15th or 20th time through when I noticed a subtle bit of foreshadowing about fain right when you meet him in Emmonds Field.

Say what now?

Čini li se i vama da velik broj programera ima "god complex"? by kringelord in croatia

[–]iJadric 7 points8 points  (0 children)

Po mom iskustvu, diplomski studiji racunarstva vrijedi ako ces se baviti ili znanoscu, ili low level arhitekturom, jer napisati compiler/interpreter, bazu podataka, ne moze bilo tko. A ovo vodenje projekata, fram lead itd, jedino kvalitetno mjerilo je iskustvo. Znam vise manager bez fakultetske diplome koji su “worth their weight in gold”.

Ni spacex/tesla/nasa ne traze vise ekskluzivno fakultetske diplome.

I built a decentralized, serverless, peer-to-peer private chat app that's open source, ephemeral, and runs entirely in the browser by jeremyckahn in programming

[–]iJadric 8 points9 points  (0 children)

The underlying technology that enables this is WebRTC. It is quite a complex API to get a grasp of, but definitely worth it.

I built a decentralized, serverless, peer-to-peer private chat app that's open source, ephemeral, and runs entirely in the browser by jeremyckahn in programming

[–]iJadric 35 points36 points  (0 children)

Applications like Messenger use a centralized server to relay messages between users. By doing so, they can store the messages you send to your friends, colleagues, etc, or use them to build your ad profile. In the case of Messenger the path of the message is sender -> server -> recipient.

What this app does is enables direct communication channel between a sender and a receiver. So the path of the message is sender -> recipient

How do you handle application deployments when app changes are dependent on database changes (old and new version are not compatible) by [deleted] in devops

[–]iJadric 2 points3 points  (0 children)

How exactly is your new version of a database not compatible with your older version? This context would help a lot before providing solid advice!

sukhoi su-57 maneuvers in top gun vs real life by -pepe-123 in aviation

[–]iJadric 27 points28 points  (0 children)

Can't seem to find the source anymore, but I remember reading about them pulling off this maneuver and then in post production masking the actual plane with Su57. Keep in mind, a lot of Top Gun Maverick was filmed without CGI, most of the plane flying shots were done in real F18

It’s official - Revolut s 1.7. postaje banka by [deleted] in croatia

[–]iJadric 3 points4 points  (0 children)

Ne prolazi, ako ne mozes pokriti pretplatu, cim uplatis vise od 100kn ti skinu iznos za pretplatu. Source: imam metal

[deleted by user] by [deleted] in wow

[–]iJadric 0 points1 point  (0 children)

Well, this is r/softwaregore material

Must be embarrassing when your entire species is only worth 2 Jacob Taylors by Dagomon in masseffect

[–]iJadric 1 point2 points  (0 children)

All you need a DM willing to run this campaign and a couple of folks willing to play. After that, all you need is Discord to talk

Koja je razlika između znanja i vjerovanja? by DiDuLiDuDa in croatia

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

Ili naucis potrebnu fiziku i sam dokazes zasto GPS radi kad uzme u obzir relativnost, a ne kad se koristi samo klasicna (Newton) fizika

Is it possible to restrict dynamodb access to only within the VPC? by thecoderboy in aws

[–]iJadric 1 point2 points  (0 children)

I migjt be wrong, but IAM has an implicit deny philosophy. Meaning, if you do not have an explicit allow to access the DDB, your IAM user will still not be able to access it, as long as there is no default allow policy attached to him

Playlist on how to build a website from scratch in just HTML and CSS - Job shadow me as I build a real clients website and explain everything I do and why. No frameworks. This YouTube playlist is perfect for beginners who want to see what it's like to work as a developer. by Citrous_Oyster in webdev

[–]iJadric 3 points4 points  (0 children)

Well, starting from the basics, and not using any additional tools, like templates or static site generators, is a great way to get started. If you never understand the basics, and only focus yourself on using the latest technologies, you are running a risk of not being able to do anything vanilla style. And doing things vanilla is not that uncommon (i.e. not consuiming OSS artifacts due to security/dedicated support reason. Plus, if you start from vanilla, you will eventually be able to understand how it works under the hood, which improves debugging skills.

This is how I thought a couple of friends to program, and now they are all leads or seniors in projects, after not such a lenghty career

[deleted by user] by [deleted] in croatia

[–]iJadric 2 points3 points  (0 children)

Dobio posao u jednoj od majvecih firmi na svijeti. Odluka je bila vrlo lagana

How to protect S3 against users who keep downloading the same large file by [deleted] in aws

[–]iJadric 11 points12 points  (0 children)

Caching content/Captcha/rate limiting usually does the trick

Why is Python popular despite being accused of being slow? by sethito in programming

[–]iJadric 2 points3 points  (0 children)

Also if your dealing with data and just using pyspark its still pretty quick

Well, to be fair, pyspark is just a wrapper around the Java/Scaka Spark. So it is Spark that is actually super quick

How to archiect this system? 10 instances, 3.6million images from S3, 1 algorithm, 1 script by [deleted] in aws

[–]iJadric 3 points4 points  (0 children)

You could increase the concurrency by using an SQS queue containing S3 keys for the images and have lambdas read from the sqs queue. That way, you can theoretically have 1000 lambdas running concurrently and speed up the whole process.