4,715 reputation
1930
bio website timvanelsloo.com
location Netherlands
age 18
visits member for 3 years, 11 months
seen 10 hours ago
stats profile views 317

Hi. I'm Tim.


May
18
awarded  Custodian
May
18
reviewed Approve suggested edit on Connect iPhone to computer via Bluetooth and grab a file
May
18
comment Using UIKitView from Chameleon in ARC not working
Do you use @class UIKitView?
May
13
comment C - What is a proper way to loop inside a system() function?
If I'm not mistaken you could even replace 000%d with %.4d and drop the if (i < 10).
May
9
comment Client server ios Application
I think TCP is excellent for that purpose, since it guarantees the delivery order (which obviously is very important for audio) and only sends the audio file to the peer that requested it (no multicast). Don't forget that all websites (e.g. Youtube) and Spotify also use TCP to transport audio (even though that's different from an iOS-to-iOS architecture).
May
8
answered Client server ios Application
May
8
comment Arduino energy efficiency, solar panel charging battery circuit and which is better? [picture below]
StackOverflow is about software-programming related issues, not about Arduino or other DIY-hardware.
May
8
comment Centering a upload form
@Mr_Green a few years ago I tested in IE7 (I think) and if I remember correctly it just sticked to the left of the parent there. But who uses IE7 anyway ... :p
May
8
answered Centering a upload form
May
7
comment Query string in Html or javascript
@PaulSullivan I'm not really sure I understand this. He clicks on the href, which then "redirects" him to TM.htm, and then wants to now the a-param, right?
May
7
comment Query string in Html or javascript
Based on the fact that it does not give you the name of the file you expected, I think you placed this piece of code in the wrong file.
May
7
answered How can I access the textual information encoded in a PNG image file? (in objective c / iOS)
May
6
answered Trying to sort items from my json in Javascript
May
6
comment How to convert PHP regex to JavaScript regex
Drop the appostrophes and at a /g flag if you want to perform a global regex! ;)
May
6
comment Limiting the user to enter the characters and also to convert the each entered letter into capital letter in ios
You can use an inverted NSCharacterSet for that. For example, if you don't want any characters other than capitals, you can put this above NSString *result: if ([string componentsSeparatedByCharactersInSet:[[NSCharacterSet capitalizedLetterCharacterSet] invertedSet]].count > 1) return NO;
May
6
revised Limiting the user to enter the characters and also to convert the each entered letter into capital letter in ios
deleted 4 characters in body
May
6
answered Limiting the user to enter the characters and also to convert the each entered letter into capital letter in ios
May
5
answered From iPhone 4 to iPhone 5 screen size compatibility issue
May
5
answered App pausing but not getting an error after running a clean
May
5
comment don't have access to synthesize property in animationDidStop method
NSLog(...) and breakpoints are your best friends :)