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...
-
#Threads
6be11581-12a8-466a-a0c6-52be224eb450
Well, if you can't find anything, a crud way will be to use system() to call getmac or ipconfig/all redirecting the output...
-
#Threads
755488e2-639a-438a-9ca3-c1b8f16a8691
Well, it's partially correct, compiler does not copy "code" in place of header file. Compiler copies exact contents of the .h file...
-
#Threads
e496cc6c-266c-45c4-9bd6-e236813f1336
Whatever you write outside the php delimiters (most commonly used open/close delimiters are "<?php" and "?>") does not get processed by the...
-
#Threads
9e9911b3-6597-42e4-a9c7-bfb148939ef3
I don't understand, if you have mac of your machine and a way to get it programatically, why can't you just store...
-
#Threads
2621bcf1-4ee4-4944-900a-f360946b7eec
Don't use IP in your code to restrict it to a machine, as it "may" change the next time when you come...