Details
-
AboutIm fairly new to web and app development, but i want to build websites and apps for companies and soon build my own full games
-
SkillsC++, Javascript, HTML, CSS, Java, Android Studio,
-
Github
Joined devRant on 7/23/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
-
Merry Christmas, and Happy Holidays, most of my family doesn’t understand why this was my favorite gift this year 😂😂😂8
-
Hey so this may be a harsh one. Me and my friend are computer science and game development students and he's now in Programming 2 and he's not understanding day 1 concepts (i.e. "you dont have to redefine a variable every time you use it", "That's a string why are you setting it to 0?", "the program needs to take in user string input how would you do that?", etc.) and at this point I don't know how to help him actually understand and retain information. What do I do?13
-
Continuation of the issue I had yesterday, and a realization of just HOW FRICKING STUPID C++ could be. Basically, yesterday my code for class was skipping a line of user input code, I checked the code for hours to see if I missed anything, if anything was out of scope, both input's I was using were back to back and absolutely identical all the way from the implementation both equaling "\0" and I couldn't figure why only one of the input lines were being ignored. Out of desperation posted the code on here (see my last post). Welp, I finally fixed it, and BOY AM I SO SIMPLE. cin.ignore().
TL;DR
Dumb issue, dumb solution (in my opinion)2 -
So, I have a weird issue. I'm trying to finish my homework and the only thing that's stopping me is that for some reason VS is skipping a line of user input code. Can anyone help me understand why?
cout << "Make: ";
cin.getline((*c).make, 32);
//when debugging the the console skips this line of code. Trying to figure out the issue.
cout << "\n\nModel: ";
cin.getline((*c).model, 32);3 -
How’s school going?
Well I’m in discrete mathematics and summations honestly suck, but if you put it in a for loop it’s so easy6 -
Burr puzzles, I love the way they challenge me, they also improve focus and helps with attention to detail. Great tool for ADHD.
-
Trying to create this app me and my dad talked about is the biggest project for me and lately it's been insanely stressful so what does everyone else do for stress management and app planning? I need help4
-
Well at home I have a whiteboard and on that white board I make a list of things I want the code to do, don't do, and any ideas possible to emulate then I grab a cup of coffee turn on some music and start
-
Coming to a point to where I need to fix my procrastination issue. So, I found this app called Todoist and so far I enjoy the functionality and ease of it, the reminders, and the project collaboration feature. Great job to the dev and designer1
-
Just realized that this app and community is the perfect example of a rule-less functional online community, it has everything that people would mostly believe drama occurs but no drama
Anonymity, relaxed rules, huge base, long reaching form of social media, yet it's possibly the most Las online community I've ever seen *knock on wood*6 -
So I was just wondering why is do Snapchat take worse photos on android but we have better cameras so I download and check the source code naturally I check the source code and lo and behold I see this apparently snap for android doesn't use the camera it just screenshots it wtf?1
-
Dev pickup lines:
Hey girl, I may not know your namespace but if you let me cin it'll turn you cout😉
Comment your best10 -
Ik i probably should have went to stack overflow but you guys seem so much more immediate. I'm building a simple tic tac toe game however whenever i hit a tile the second time the counter disappears i refuse to go on to the winning logic before getting this resolved help!!!!
gameState[tappedCounter] = activePlayer;
if (gameState[tappedCounter] == 2) {
//if tapped counter is unplayed
if (activePlayer == 0) {
((ImageView) view).setImageResource(R.drawable.knight);
activePlayer = 1;
//displays knight
//sets active player to player 2
} else if (activePlayer == 1) {
((ImageView) view).setImageResource(R.drawable.sam);
activePlayer = 0;
//displays sam as player 2 character
//sets active player back to player 1
}5 -
When people look at your phone and wonder what that yellow chrome symbol is on your phone, thats freedom and speed young patowan freedom and speed.5