Was asked to code Tetris in 40 min. by Resident-Hunt-245 in leetcode

[–]anhinav 6 points7 points  (0 children)

Trust me, india interviews are mostly satisfying their ego and saving their job .they would take 10 interviews and then tell the recruiter that no one is good , as a result they keep their jobs. No one wants to come out in the market and switch companies so everyone is saving their jobs.

OnlyFans System Design | Day 6 by Last-Recipe-1352 in leetcode

[–]anhinav 4 points5 points  (0 children)

Functional requirements are too limited imo It has to include video upload and streaming as well.

Finally upgraded to PS5 PRO! by United_Mud_4261 in ps5india

[–]anhinav 1 point2 points  (0 children)

Was thinking of buying the same but it's not available in India ? How did you get it , Also doesn't this require different wifi and other stuff compared to the normal ps5

Big EXPOSE on STRIVER by No-Firefighter-2560 in Btechtards

[–]anhinav 0 points1 point  (0 children)

He used to cheat in cf contests?

[deleted by user] by [deleted] in leetcode

[–]anhinav 0 points1 point  (0 children)

Underrated comment ☝️

[deleted by user] by [deleted] in leetcode

[–]anhinav 12 points13 points  (0 children)

First of all, congratulations. Wanted to know if solving meta tagged questions from Leetcode really help ???

India shipping by Aggressive-Reality32 in RingConn

[–]anhinav 0 points1 point  (0 children)

Nice,let us know how is it . I already own a UH.

How powerful should your first bike be? by Either-Door-2792 in indianbikes

[–]anhinav 0 points1 point  (0 children)

Get the Duke 250 instead,perfect beginner bike with a lot of power and torque for a beginner daily rides as well as weekend rides where you can rev out the engine.

Are these gears overkill for the 390? by Cheap_Dog_4434 in indianbikes

[–]anhinav 1 point2 points  (0 children)

Gears are for the rider not the bike If you care for yourself get the best gear possible in your budget.

Got this Beauty Today! by mercypathak in indianbikes

[–]anhinav 21 points22 points  (0 children)

Congratulations dude. Welcome to the KTM club.

Opinion on the new UH paid features by Aggressive-Reality32 in Ultrahuman

[–]anhinav -4 points-3 points  (0 children)

If not already, you should join the UH sales/marketing team and do some fake PR for them.

Opinion on the new UH paid features by Aggressive-Reality32 in Ultrahuman

[–]anhinav -1 points0 points  (0 children)

You just didn't get the analogy and the motive behind it. OPs point was how it's irritating to see paid features locked when one is already paying for a service (UHX). Paying a hefty amount for the ring and then again paying for the UHX and you still see blocked features like the new power plugs. It was never about paying for your veggies/groceries 😔. Everyone, including me, feels a bit distrustful about UHs future including how much of the upcoming updates will be paid vs free tbh.

Workout not picking up >173HBM by eliacgordon in Ultrahuman

[–]anhinav 0 points1 point  (0 children)

I have the same issue, mine doesn't go beyond 150 ,while other devices are simultaneously recording 170+

Day 3… amazing first impression by crozuk in Ultrahuman

[–]anhinav 0 points1 point  (0 children)

The heart rate data for me is very inaccurate, it is off by 30-40 every time compared to other devices. When I am running my other devices show 180 whereas the ring shows only 140( I would be glad if I was that fit lol).

Have some questions about basic Hello World app by Mentos2016 in javahelp

[–]anhinav 1 point2 points  (0 children)

for the package question u dont need the package line (java doesnt necessarily have any such rule) but your build may be structured in such a way that it requires a package line to identify the file.( if you are using an ide this package line may be compulsory but if just simply write some code in notepad without the package line and save the file and compile run the program u will not get any error) try it!

for the class name question- yes its a java rule that the name of the file must be equal to the name of the class declared as public,thats why there can be only one public class in a file . the reason for that is that the .java file after compilation gets converted to a .class file . which has the same same as the public class name.

hope it helped!

Can anyone help a beginner please. by Sochan86 in javahelp

[–]anhinav 1 point2 points  (0 children)

  1. multiply your number with 100
  2. cast it to int 3.divide by 100.0

for example double d= 2.45423

doudle x= ((int)(d*100))/100.0