799 reputation
316
bio website serve-licson.net23.net
location
age
visits member for 7 months
seen 11 mins ago
stats profile views 60

2d
awarded  Popular Question
Jun
15
comment Wrapping edge of cylinder in CSS (rotating 3D space)
@tb11 is right. You need to create planes like how a cylinder is drawn using WebGL, by creating many planes around the circle to build the curved surface.
Jun
14
comment clicking text in an html5 canvas
@Chase event.offsetX and event.offsetY is not supported in all browsers so something like jQuery may come in handy.
Jun
14
comment clicking text in an html5 canvas
@Chase You should put this inside the canvas' click event handler. The mouse position can be defined as event.offsetX and event.offsetY.
Jun
13
answered clicking text in an html5 canvas
Jun
13
comment Replace multiple <br>'s with only one <br>
@BoltClock The adjacent selector should be used instead, right?
Jun
11
comment Unidentified sorting algorithm
Is it bubble sort? It looks pretty much like that.
Jun
11
asked Using Google Prediction API outside Google App Engine?
May
22
comment My webpage does not fill the whole screen vertically when viewed on ipad or iphone
Can you show us a photo of how it looks like?
May
22
answered Php script running few times a day with no CRON?
May
22
comment CSS3 Animation not working
@MrAlien IE9 doesn't even support CSS3 animations.
May
22
comment CSS3 Animation not working
I think you can drop the -ms- prefix safely as IE10 already supports unprefixed CSS3 animations.
May
20
comment Give permission to frame my site
@JanDvorak In that case you can use the fallbacks suggested in other answers.
May
20
comment Give permission to frame my site
@JanDvorak It has support since IE8 so I don't think it's a problem.
May
20
answered Give permission to frame my site
May
8
comment HTML5-Javascript animation not working on Mozilla but works on Chrome
The second argument of requestAnimationFrame is already deprecated. Try remove it.
May
8
comment Pass POST data to two php files
You can do it using Session successfully. You just need to save the post data to a session variable and redirect to submission.php
Apr
20
comment I cant find a way to change the canvas size
Java is not JavaScript, please don't mix them up. :)
Apr
13
comment Speeding up the performance of huge multiple queries statements in MySQL
@zavg I think the length of the query is the problem. Such extremely long query needs a significant time to transfer to the database. I think splitting the queries to be sent one by one may speed up and reduce the memory usage a bit.
Apr
12
comment SSE in ExpressJs
Try to use res.writeHead() and res.write() instead. res.send() will help you send the headers also so it'll cause problems with streaming HTTP requests.