1,256 reputation
517
bio website taiwanease.com
location
age
visits member for 2 years, 9 months
seen 2 days ago
stats profile views 729

Code Monkey!


Mar
25
comment Shopify Products API call with multiple parameters
Hmm... it is strange that I cannot then. Thanks for the info.
Sep
23
comment Crash when sending via AsyncUDPSocket
I'm using an instance of AsyncUdpSocket. You don't need to construct packets manually.
Sep
21
comment Crash when sending via AsyncUDPSocket
You should be able to simply use the sendData function of AsyncUdpSocket to send a packet. It doesn't need to be manually constructed.
Apr
24
comment Small amount of unwanted data going to iCloud
After spending a lot of time banging my head on this, I do believe it is the plist that is being backed up.
Apr
23
comment Small amount of unwanted data going to iCloud
In my cache folder, I have my cache.db, which is 500kB, so that isn't what is popping up. In my preferences, I have the application plist file; peoplepicker.plist; .glocalPreferences.plist. All of my plist files are 4kB. So, those aren't them either. Those are all the files I have.
Apr
17
comment Small amount of unwanted data going to iCloud
No, mine has been updated. It will take a few minutes for iCloud to update in my experiece.
Feb
29
comment Core Data unresolved error on save
Man, awesome. I spent forever on this.
Aug
28
comment MySQL Chinese pinyin encoding issue
@Steve-o Thanks for the link! That led me down the right path. I posted what I did to fix it.
Jun
14
comment jquery AJAX response in plain ASCII
Seems I found a work around. By using .html() it formats it correctly. So I set a hidden div and set the content via html(), then alerted that and it works.
Jun
14
comment jquery AJAX response in plain ASCII
@stevevls I just also tried replying with straight Chinese and it displays it fine. It just seems to be pinyin it has a problem with... curious.
Jun
14
comment jquery AJAX response in plain ASCII
Tried changing the datatypes and stripping out the header. Didn't work. Firebug is still posting the ascii string in response, and the utf8 formatted in the html tab.
Jun
14
comment jquery AJAX response in plain ASCII
@stevevls I actually did just notice something. In the Response tab of Firebug it is giving me the ascii, but in the HTML tab, it is giving me the correct utf8 encoded text.
Jun
14
comment jquery AJAX response in plain ASCII
Yup, check via firebug. Same.
Jun
14
comment jquery AJAX response in plain ASCII
Server-side it seems fine. When I hit my handler directly, it encodes it correctly...
Apr
29
comment Looking for SQLite tutorials
icodeblog.com/2008/08/19/… Tutorial
Apr
29
comment PHP - SOAP 1.1 request and response handling in php
You have asked 13 questions and haven't accepted one answer. Perhaps you should consider going back through and accepting some.
Apr
18
comment Managed Object Crash EXC_BAD_ACCESS
Yup, changing that did it. Can't believe I didn't find that earlier. Thanks!
Apr
16
comment Example code on how to achieve smooth paint strokes like those seen in the Penultimate app
Yes, it is what is returned from the drawBezierCurve function.
Apr
15
comment Example code on how to achieve smooth paint strokes like those seen in the Penultimate app
@icnivad Oh, to be more clear. The control is simply one if the points touchesMoved recorded. However, after curving your line, you need to adjust where the midpoint actually is, or your next line will be off. That is where newMidPoint comes in. That is the new location if your control point (which will become your firstPoint). So after drawing, it recalculates the control, then you need to remove the first point, which will set the old control to your new mid-point, then the touchesMoves will tack on another point, which will be the endPoint.
Apr
15
comment Example code on how to achieve smooth paint strokes like those seen in the Penultimate app
@icnivad ah no. The code won't draw half the segment, which would be the last half. So, the rendering is 'delayed' because we need to know where the user is drawing to. The control is simply part of the line the user has drawn. I'm not sure why your control is going to the center of the screen... that is really weird.