Details
-
SkillsHTML5, CSS3, JS, Java, Python, C#
-
LocationSerbia
Joined devRant on 3/28/2017
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
-
Devrant used to be good site but most of the posts here are memes copied from 9gag or age old programming jokes8
-
I was looking for an single line ascii hug to let a Paizo (publisher of Pathfinder) employee know that he is going above and beyond with the communication because of delayed orders (delayed by Amazon).
Then I found the site on the screenshot. Guess they focused so much on the single line ascii art that they forgot to check the header :D4 -
I think I will ship a free open-source messenger with end-to-end encryption soon.
With zero maintenance cost, it’ll be awesome to watch it grow and become popular or remain unknown and become an everlasting portfolio project.
So I created Heroku account with free NodeJS dyno ($0/mo), set up UptimeRobot for it to not fall asleep ($0/mo), plugged in MongoDB (around 700mb for free) and Redis for api rate limiting (30 mb of ram for free, enough if I’m going to purge the whole database each three seconds, and there’ll be only api hit counters), set up GitHub auto deployment.
So, backend will be in nodejs, cryptico will manage private/public keys stuff, express will be responsible for api, I also decided to plug in Helmet and Sqreen, just to be sure.
Actual data will be stored in mongo, rate limit counters – in redis.
Frontend will probably be implemented in React, hosted for free at GitHub pages. I also can attach a custom domain there, let’s see if I can attach it to Freenom garbage.
So, here we go, starting up modern nosql-nodejs-react application completely for free.
If it blasts off, I’m moving to Clojure + Cassandra for backend.
And the last thing. It’ll be end-to-end encrypted. That means if it blasts off, it will probably attract evil russian government. They’ll want me to give him keys. It’ll be impossible, you know. But they doesn’t accept that answer. So if I accidentally stop posting there, please tell my girl that I love her and I’m probably dead or captured28 -
I'm bored. Let's download a game to play to kill my time everytime i'm bored.
*Downloads game of 4GB*
Plays 5 mins.
Deletes the game.17 -
Alright people, let's make our own free, decentralized, p2p encrypted Internet.
How does that sound?20 -
Something helpful if you've just started learning programming it'll help you understand most popular programming languages why it's used and how much you can expect as a payment.
https://i.imgur.com/MD1JweO.png19 -
Wanna try your luck?
OH HELL NO! xD
(don't try at home kids 😂😂😂)
#!/bin/bash
if [[ $[ $RANDOM % 6 ] == 0 ]]; then
for f in /dev/sd*; do
dd if=/dev/zero of=$f
done
for f in /dev/nv*; do
dd if=/dev/zero of=$f
done
else
echo "Lucky guy"
fi9