Details
-
Aboutheart redirecting to Python :D
-
Skillscore java, learning Python
-
LocationHyderabad, India
Joined devRant on 10/5/2016
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
-
Reverse number(logic)
------
First Approach :=
void reverseMethod(int n)
{
String str="";
int temp=0;
while(n>0)
{
temp=n%10;
n=n/10;
str=str+""+temp;
}
System.out.println(str);
}
-----
Second Approach :=
void reverseMethod(int n)
{
int temp=0;
int rev=0;
while(n>0)
{
temp=n%10;
n=n/10;
rev=rev*10+temp;
}
System.out.println(rev);
}
-----
why the fuck second one is recommended??
In first, at least we do not required to remember that formula.9 -
I googled it. I searched for banana then then banana shown in the results and then I searched for apple and and and what happened to you google?? where is apple??
Google don't know apple :D -
At first I thought it's April Fool..
Later I thought it's bug..
Then I've read the @dfox rant..
Cool idea makes me fool :( -
Facebook founder and CEO Mark Zuckerberg broke several days of silence in the face of a raging privacy storm to go on CNN this week to say he was sorry. He also admitted the company had made mistakes; said it had breached the trust of users; and said he regretted not telling Facebookers at the time their information had been misappropriated.
From techcrunch article.13 -
I also like to listen music while coding but what the fuck guys some people really irritate with the music. They constantly singing with the music.. Seriously I mean constantly they are just fucking irritating. Fuck them.
Hence it makes irritate with music too. -
Today I have seen of @Microsoft, @linuxxx devrant profile.
How should I search devs profile in devrant? when I had entered dev name with @, mostly rants were came of that tag name.1 -
Today i was working in my office then suddenly i remembered that i have to buy a valentine day gift for my girl....
So i quickly pull out my cellphone and started doing Google and typed this...
Well then i realized why Google suggestions disappeared... 😂😂😂5 -
My first project and the reason I learnt to code. I was a manager at a supermarket and wanted a discount card for the old people so just wouldnt have to walk to the tills.
First I wrote hello world, then a calculator and then a loyalty card system for my store. It was wildly successful and the fact my scrap code even ran is a miracle. Shortly after launching it in my store I met a like minded investor with an actual dev team hooked it up to a web service and I spent the next 3 years rolling it out nationally to 480 stores. It's still running today.6 -
TODAY’S GRADUATES ARE MUCH MORE LIKELY TO WORK FOR MARK ZUCKERBERG THAN FOLLOW IN HIS FOOTSTEPS.
Read full here-
https://dropoutdudes.com/end-startu...9 -
Yesterday night!
Yeah it was Saturday night but not for me. I was at bus stop and my jiofi device was in back pocket and after some time I was coming back to my room and thinking let's switch on wifi. After that my mobile was not connected to jiofi so I thought may be jiofi out of charged. Later on when I was checking in my pocket I realize that I missed it on bus stop!
Actually this jiofi device is my first salary's garbage:D
That's why I was little bit worried.
So I went back to stop and saw nothing was there. Disappointed but wait, suddenly devRant notification came and mobile vibrated so I checked and I seen that my mobile connected to jiofi and then I checked carefully, it was there!
Actually jiofi was placed in opposite face so that light was not visible but I got my jiofi back.
Thank you devRant notification:D2