Details
-
AboutCoding for fun ^^
-
SkillsJava, c++, php, html, js. Having lots of undone projects.
Joined devRant on 10/30/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
-
What do you do when the bsod bsods? Apparently one of the ram sticks died while the pc was running so windows died with it. It's a lovely thing to fix at Christmas at relatives.4
-
In the country where I live the national railway company just replaced their perfectly functional (old looking) site with a new one. It looks very nice until you start using it. Reloading the page logs you out. Adding a saved passenger before was filling two fields and ticking and save now you go to profile then select it using 15 clicks then save and then you can't pick it when buying tickets you must add it all again (used to work before). The list of trains matching your criteria used to be a fairly compresses table so you could see a lot of trains without scrolling also showed info on them. Now it only shows departure arrival and time. Also each table cell has 4x font size padding and is float right with around 20% of left side being taken by a menu. Information about the trains' journey is still shown but not in full detail. After you put the ticket in the cart it only shows you basic information and there is no full info before checkout. Also now you can't pick which seat you want yours next to.
So then what did they fix compared to the old? Now you can buy tickets for trains that are late like if that's gonna make everything easier... They also fixed that now you don't need two accounts if you want to use the mobile app (which by the way broke after the update in every possible way).
So the question is: why the fuck do we need so much eye candy if the product becomes unusable in the end? -
Can someone tell me why the ios expo client has alcohol tobacco and drug use in it? I get it that devs are overworked but damn. Even this app??
-
When the company you just started working with is using a Perl based ticket system which is missing most of the functions they want you to implement but won't replace the system so you gotta learn how to Perl...1
-
Well the usual... You know... Create some android app, teach a friend to code, finally migrate to the gentoo on the other partition... Also maybe ask that one girl out :D
-
Just a package machine into which you'd put the number of your package then get it. Apparently it runs Ubuntu and it's not set to start automatically. Damn part of me wanna connect a keyboard and find out what it has to offer.9
-
Using a raw vmdk on windows and not knowing that after reboot windows decided to reorder my drive numbers. Then proceed to install a Linux onto an other hdd deleting the partition table and many things. Happily vbox crashed before it wrote a lot then I realized that my drive is not there anymore. Anyway photorec saved my life. I survived without any major losses.
-
Has anyone heard of anbox? It's something that they say could run android apps on Ubuntu. Is it worth using? Or am I better off with an android vm? If vm which android version do you people recommend?2
-
Well it was when I was still small. I was like two and we had a windows 2k pc. We have lots of pics me watching stuff on that. When I got a lot older I got a pc onto which we couldn't install windows xp. Then again a few years passed and I got a pc that ran windows xp nicely.
-
So since elementary is based on Ubuntu 16.04 would it be possible to turn it back into Ubuntu but keep all my data then upgrade to 17?3
-
My maths book contains some nice stuff too not just good old boring stuff... But god damn killer bunnies too who will kill you with a right angled triangle.
-
Khmm Intel... A paper from 1995 describing speculative execution as :"Prefetching may fetch otherwise inaccesible instructions in Virtual 8086 mode." which makes Intel know the 'recent' exploits knows for just a shy 23 years. Why didn't they fix it? Who know.
https://t.co/KRMCEAfZgX2 -
Which encryption library do you people use with c/c++? I'm trying to use openssl but well there is more documentation about how to replace my own heart in the dark than on that. Also most of the structs have missing declarations hell yeah its nice to have a EVP_PKEY but what's that? Oh I know it's a evp_pkey_t and what's that? Nothing apparently. Comments? You kidding??? A proper library doesn't have them...3
-
Is there anyone who successfully booted gentoo in aarch64 mode on the rpi 3? I can't get it to work. It gets onto the rainbow square then it shuts down like there is no kernel I guess. Sorry for asking here but there must be someone here who's kind enough to help.2
-
Well finally install gentoo in aarch64 mode onto my rpi3. I wanna learn python because that'd make my life easier. I also wanna code a web game using js. I also want to finish some more parts of my hobby operating system. And maybe rework my dad's website because the code is a mess.
-
Whenever you can't connect to a wifi using wpa_cli know that it's WPA supplicant and not WPA supplican.
-
I wanna make a c+friends language and it'd be dev friendly and will throw lots of errors on compile to show love. Also it'll compile slower with each newline so you can always say "it's compiling" there will be classes but people instead and then instead of new I'll have create. As for loops let's go with a friendly do while loop and dontdo while as normal while or dowith i while to have a friendly for loop. Instead of ifs let's say decide() and instead of else let's have or. Instead of functions I'll have well you need no functions you'll have jumps and tests before jumps just like assembly has. Oh and everything will be a pointer because then it runs nicer. To create a variable you can't use = because that's the equal sign in decide you need to use "var int myint is 69" because why not. Then to print to the console "console.outputstream.out(myint)" instead of threads I'll have please like "please work" where work is a jump target. I hope you'll enjoy this language ^^
-
I'm not saying that windows' Bluetooth is shitty but my Linux connected even before windows realized I had plugged in the dongle. And well Bluetooth headphone won't work... Windows doesn't wanna connect... Solution? Unpair then pair again with pin 0000. Linux: left click on Bluetooth menu > connect.3
-
I have upgraded my graphics from medium to high. And also set anti aliasing to the highest and now everything seems beautiful.15
-
I regret not learning c++ earlier. I learned Java before and now I have to work with mainly c++ for its libs and it took some time to adjust also I've never used Java for anything useful so far.
-
Is kotlin worth coding in? Or is plain Java better? There are many people here coding in kotlin what made you change to kotlin from Java or from anything else? Is there a specific reason? Speed? Stability? Anything? Is it worth using it instead of Java?9
-
So any fellow Socket.io dev here know how to reduce the delay of my app? When I send an event it sometimes takes like 10 seconds to send the data to the server then to 2 other clients using io.sockets.emit. I'm on LAN where the server and the sender client is connected with a switch then the receiver is on wifi which is connected to the same switch so it's not far away.
Anyways it uses WEBSOCKETS so it should be fast right???!?! Is windows keeping my packets back? (poor packets :( they just wanna arrive :( )5 -
So my dear programming teacher really hates break statements... I mean really really really. He thinks it's better for readability if you don't break from any kinds of loops (not even ifs) well then we came across a switch statement in class. He says "breaks only exist because it's needed in switches" well how about returning from a fcking swith? or goto? then you need no break...
Is there anyone who could explain why I should NEVER use breaks and why it's bad in any piece of code? Why is it better to just use whiles because fors are apparently evil again? Srsly I just wanna ask him to show me some big code bases without breaks...8