HackerTrans
TopNewTrendsCommentsPastAskShowJobs

mredigonda

no profile record

Submissions

Make It Easy for People to Share Feedback with You

mredigonda.github.io
3 points·by mredigonda·3 anni fa·0 comments

Beat the $5 wrench: multi-passphrase multi-content in a single encrypted file

github.com
2 points·by mredigonda·3 anni fa·1 comments

comments

mredigonda
·2 anni fa·discuss
This is absolutely amazing, the fact that you can click on text and it takes you immediately to the part of the audio where that text is being said is great.

I wish the video was shown as well, but other than that, excellent work!
mredigonda
·3 anni fa·discuss
Thanks for recommending this, I just browsed some files online and it's looking indeed amazing.

P.S. It's now easy to check a repo file by replace .com with .dev: https://github.dev/desktop/desktop
mredigonda
·3 anni fa·discuss
Google Graveyard: https://killedbygoogle.com/
mredigonda
·3 anni fa·discuss
I believe they do help, but certainly hiring doesn't seem to be a priority for them at the moment.

It's strange that they decided to discontinue the entire competition instead of just cancelling this year's one, though.
mredigonda
·3 anni fa·discuss
They did, indeed, lay off the group in charge of organizing these competitions (or at least the Google Code Jam Program Manager).

https://twitter.com/jonathanirvings/status/16220755214872084...
mredigonda
·3 anni fa·discuss
The $5 wrench: https://xkcd.com/538/ You would still be vulnerable to a $10 wrench though, so don't use this.
mredigonda
·3 anni fa·discuss
Hey Tomas, I just send an email with my application, but I've got "Delivery Status Notification (Failure)". Is the email posted correct?
mredigonda
·3 anni fa·discuss
Location: Rosario, Argentina

Remote: Yes! (EST/PST timezones OK)

Willing to relocate: Yes

Technologies: Typescript, React/Svelte + Redux, Python, PHP, C++, interested in Rust, SQL.

Résumé/CV: overview at https://github.com/mredigonda

Email: [email protected]

I'm a Software Engineer from Argentina, strongly experienced in algorithms and data structures (from programming competitions like IOI and ICPC), and web development in general.

I'm open to chat in general about your company to see if there is a good match. In the worst case, having an extra connection is always beneficial for both.
mredigonda
·4 anni fa·discuss
Indeed this overflows too! Still don't have the rights here to edit or delete the comment, sorry for the confusion! It needs a couple of extra conditions: x and y need to be uint, and y needs to be >= x (you can swap them if they are not).
mredigonda
·4 anni fa·discuss
You can also do x + (y - x) / 2 (starting point + distance halved), that doesn't overflow, is easy to remember, and the compiler would probably optimize it further.
mredigonda
·4 anni fa·discuss
Because the division is truncated twice, which increases the error. Take x=y=1, or x=y=3 for example.