saquery.com
a web developer' s kung fu…
Categories: more skills | Add a Comment

TIFFANY B. BROWN published on alistapart.com a realy good post about how to debug Javascript on mobile devices. The following links are a must-read for both aspiring web developer and also for advanced programmers. Modern Debugging Tips and Tricks - Advanced Debugging With JavaScript by H. R.M. STEEN , C. MILLS

After using Node.js for simple network service written in JavaScript I must say. Node.js realy rocks! The advantages to write server-side code in Javascript are obvious. As you can see in the following video, there are a lot of advantages over other server systems. The major differences are that Node.js is a server-side JavaScript environment. Node.js uses an asynchronous event-driven model. This allows to get an excellent performance based on the architectures of many Internet applications. Source: http://nodejs.org/ - https://github.com/joyent/node/wiki

This is a nice way to get the Domainname form a Url String in Python. import urlparse return urlparse.urlparse(self.request.url)
See how smart we can handle Web Requests in SQL Anywhere with a few lines of SQL Code. [inline] Specify HTTP Web service protocol and Port in SQL Anywhere The Database Start Parameter -xs specifies server-side Web service communication protocols. With the internal Webserver we can handle web requests within a SQL Anywhere Server. Simply [...]
Categories: more skills, Sql | Add a Comment
SAQ_DESCRIBE_FOREIGNKEYIn the development environment of a Sybase SQL Anywhere Database, it is simple to analyze and describe the rules of foreign keys. All necessary informations are stored in the system tables of the database. The information can be combined into a useful view.
Delete all Table Rows When trying to fade out and delete a table row you will realize that the table rows can not hide slow. The trick is to hide the table cells as follows. OPTIONgroup_idgroup_member Delete Row02 Delete Row21 Delete Row32 Delete Row03 Delete Row24 Delete Row25 Delete Row26
Using Css Sprite in Web Development can improve significantly your page load speed. Parts of a big Image via Css background-position How does it work? The Image Html Source Code <div id="spriteSample"> <ul> <li class="chrome"></li> <li class="opera"></li> <li class="safari"></li> <li class="ie"></li> <li class="firefox"></li> </ul> </div> Css Source Code <style> #spriteSample li{ background: url('/blg/wp-content/uploads/sprite-browsers.png') no-repeat top [...]
Try this to determine if an object is type of jQuery. if (parameterValue instanceof jQuery) alert('true');
Please Login or Register to read the rest of this content.