Uday Bidkar
Member
- Member since
- Jun 12, 2012
- Last active
- Feb 21, 2015
- Total activities
- 0
Activity feed
Recent contributions
-
#Threads
d15e1edf-7659-451a-9709-7877a74e73fa
Your manager/lead can have much less experience than you, and that's OK!
-
#Threads
88169370-6a54-4543-9184-ce03fef2ecdf
People are not judged if they sit on the floor (if it's a full house off course) in the conference room and...
-
#Threads
ad1e1c83-5cc0-4eb9-a703-fdeaa13248d8
@#-Link-Snipped-# , I think amount=pow(P*[1+r/2], (2*n)) won't work as it doesn't take into account the increase in interest rate after every six...
-
#Threads
855995e4-a99c-419a-b702-450ad1c83bcf
public class TimeValueOfMoney { public static void main(String[] args){ double futureValue = 0; float monthlyPayment = 200, monthlyInterestR...
-
#Threads
dbc43083-0840-44fc-969a-f79e6db81319
#-Link-Snipped-#, you don't "have" to read the file character by character just to extract user id. You can read large chunk of...
-
#Threads
3bffba3e-2c95-4296-835d-7f43b04e6bce
Lots of things to improve performance here. Don't read/write file character by character, read it in large chunk, 5-10MB should be good...
-
#Threads
94a2caed-0f37-4ca6-8dd6-003a75461351
#-Link-Snipped-#, Can you post your code snippet where you read the main file and write the data to user specific file?
-
#Threads
d8c34ded-cbef-4a3a-805c-2ca7d267614d
With this approach you dont even have to generate the files specific to every user if that's not your ultimate goal. If...
-
#Threads
1a730243-ebc9-4760-9359-5be3cb0d68ae
How about this approach, First, parse the entire file and during parsing, maintain a map of key value pairs with key as...
-
#Threads
a82f07f8-b49f-4110-b159-e9165638a601
Are you creating a file per userid everytime a new userid is encountered and keeping all those file pointers in memory to...
-
#Threads
dab79ede-7349-493a-86ca-ef8ccb1e34da
Vishal0203Hey, I could get the address using the following code, but how to store the things present on output screen to a...
-
#Threads
e5445302-def9-4d21-b042-24c5e47dd498
I don't have a C compiler with me, but do see some potential errors in code. 0) The way you check for...