Details
-
Abouthube is back
-
Skills(yeah ik some malebolge)
-
Github
Joined devRant on 7/1/2018
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
-
I wouldnt trust a rpi even with a trained model... So making it learn while driving it would be unconscious.
-
Just log out then click forgot password...
-
I overwrited a few parts of a 2tb encrypted image on a disk, result: cant recover anything from it, praise our lord and savior: encryption!!
-
ls -al is default ls for me
-
Instead of 0 and 1
-
It's for sure nice when you need to store datas on platform with low space and still need to use them quite a lot.
But its still bad when needed to automate transmission of data on the compression stage... -
@AlmondSauce online shopping is a thing, once you have your correct size translated to every possible measurement system
-
That's like the laziest thing i heard today, here a panda: 🐼
-
Be happyfor the 5$, usually i dont get anything in these deals
-
That's kinda straightforward and seems more polite than not said.
Btw welcome to devrant! -
@arazzz legality is my issue in that case, unfortunately
-
@SukMikeHok for me it worked correctly but i didnt code anything really, i only wrote ideas i had and what should be a way to implement them on a whiteboard. Really let me create some awesome stuff later...
-
@CozyPlanes which one?
-
Just build a robot for that
-
Nyay!
-
@Phlisg wait it just have gone from 700$ to 700BTC? Wtf!
-
@irene nah look he is fine now
-
@just8littleBit i have this one that i got for 115€ in a promotion online
Netgear nighthawk something -
All this DBs on the web available to everyone with a lot of nice information about everyone...
I still have that copy of the Ashley Madison database somewhere along with several others i collected over the year.
Its really nice to use them when you want to input garbage to a machine learning model or simply experience with database language and search for instance if someone is in all the DBs i gathered (spoiler there is several of those ppl).
Never tho used that kind of data to harm anyone but still, if i have downloaded those, anybody can and even worse in some cases. (i was lazy so i missed a few unfortunatly) -
Depends what type of dev you are talking about, a lot are either pricks or selfish, or just want to be left alone...
Sadly :-/ -
http://makaluair.com/.env
www.vipx.com.br -
5) -1
-
@Wombat you mean single threaded and unpredictable at first glance
-
@fuckwit probably win/mac users in that class
-
Gitkraken (or any git client)
-
1000/100 in France for 35-40€
Or 500/200 for 40-45€ -
@CptFox he never said he wanted a fully functional (compressed) mp3 file, i only read that he wanted to have some kind of array, here a double array, not even bytes, store it in a simili-mp3 file then get them back
-
@R1100 https://stackoverflow.com/questions...
Too lazy to write anything -
I got 8 hours of sleep, non need for a coffee :p, also a simple shower and some exercise can be as beneficial as your supercharged coffee
-
public void writeToFile(byte[] array) {
try {
String path = "Your path.mp3";
File file = new File(path);
if (!file.exists()) {
file.createNewFile();
}
FileOutputStream stream = new FileOutputStream(path);
stream.write(array);
}
catch (FileNotFoundException e1) { e1.printStackTrace(); } }