Peter Giacomo Lombardo
All things startups and startup hacking. Creator of Password Pusher. Currently HiveMQ. Former staff of acquired startups Instana & Tracelytics.
- Palermo, Sicily
- pwpush.com
- GitHub
- pglombardo
- Apnotic
You May Also Enjoy
How to Scramble a String in Ruby
2 minute read
To randomly scramble a string in Ruby, you can use the chars method to split the string into an array of characters, the shuffle method to randomly shuffle t...
How to Generate a High Entropy Password in Javascript
1 minute read
How to Generate a High Entropy Password in JavaScript
How to NOT Get Screwed as a Software Engineer
less than 1 minute read
This is a great episode from the crew at YC. It would have been nice to hear some real horror stories though but still great situational examples. Worth th...
How to Scramble a String in Python
2 minute read
To randomly scramble a string in Python, you can use the list function to convert the string into a list of characters, the random.shuffle method to shuffle ...