Read more: http://bit.ly/hADR8g
Dec 23, 2010
Awesome Mobile Image Gallery Web App
Read more: http://bit.ly/hADR8g
Dec 22, 2010
60 Creative Illustrated Twitter Backgrounds
Read more: http://bit.ly/f4NSiB
Dec 21, 2010
10 Simple Web Buttons (PSD)
Designed in 10 different colours, these little buttons should fit into almost all web layouts. If they don’t, then just a few tweaks to the PSD and you’re done. Sweet and simple!
Read more: http://bit.ly/eGJQC8
64 free tab bar icons
This icon set has been carefully crafted to be pixel perfect on both normal and high resolution iOS devices. The icons contain beautiful shaded portions to give added depth and to highlight icon features. They are meant to go on the tab bar at the bottom of your app.
Dec 18, 2010
Designing for iOS: Life Beyond Media Queries
Although not a new phenomenon, media queries seem to be getting a lot attention online recently and for the right reasons too – it’s great to be able to adapt a design with just a few lines of CSS – but many people are relying only on them to create an iPhone-specific version of their website.
You can greatly increase the speed of your website by creating a specific site tailored to mobile users with just a few handy pointers – media queries, in some instances, might be perfectly suitable but, in others, here’s what you can do.
Dec 14, 2010
Restore your Google Contacts
Google added a new feature to Google Contacts that allows you to revert your contact list and undo any mistakes made up to 30 days in the past.
http://goo.gl/H0s0N
Dec 10, 2010
uTorrent Launches Remote Control for iPhone

BitTorrent Inc. has made the remote access ‘web’ feature of its Falcon client iPhone compatible. uTorrent users can now remotely control their downloads from wherever they are with their iPhone. Torrents can be added, paused and removed using an interface with a look and feel identical to that of the uTorrent application.
http://bit.ly/gBrPDO - torrentfreak.com
µTorrent Web UI for iPhone
µTorrent comes with a built-in Web UI which allows you to control your client from anywhere using the web browser. The web interface is very powerful and exposes all the necessary features you need to operate the client remotely.
Unfortunately this Web UI is not displayed correctly on iPhone. I needed a web app for iPhone that will have the familiar look & feel and provide the same features as the original one.
http://bit.ly/eHYhUV - pinhasov.com
How to clean your iPhone screen
Due to touchscreen interface, iPhone screen tends to attract lot of finger impressions and oil. You can easily keep iPhone neat and clean by removing deposits from screen surface using a soft lint-free cloth.
Steps to clean iPhone
- Unplug all cables (if any connected to your iPhone).
- Then turn off iPhone (press and hold the Sleep/ Wake button, then slide the onscreen slider).
- Now use soft, slightly damp, lint-free cloth to clean iPhone. Make sure moisture from cloth does not get into iPhone openings.
Cleaning iPhone 4, 3GS screen
iPhone 3GS has oleophobic coating on the screen. You can use soft, lint-free cloth to wipe and remove oil left by your hands or face from the iPhone screen.
Note – Do not use window cleaners, household cleaners, aerosol sprays, solvents, alcohol, ammonia, or abrasives to clean iPhone. You can follow similar routine to clean Apple ipad surface
Dec 9, 2010
Building iPhone Apps with HTML, CSS, and JavaScript (Free book)
If you know HTML, CSS, and JavaScript, you already have what you need to develop your own iPhone apps. With this book, you'll learn how to use these open source web technologies to design and build apps for both the iPhone and iPod Touch.
O'Reilly: http://bit.ly/ij3gOs
Remove Old Versions of the Java Console from Firefox - PCWorld
If you look at your Firefox Add-ons list (by clicking Tools, Add-ons), you may indeed see several instances of Java Console. However, you'll also notice that the uninstall button for each one is greyed out. How can you remove the old Consoles?
PCWorld: http://bit.ly/e6wQpH
Dec 8, 2010
Cut development time with SQL Server 2005's synonyms
Oct 20, 2010
Auditing SQL Server User and Role Permissions for Databases
I have been tasked with auditing security on my SQL Server. However, this needs to be a somewhat automated process as I don't want to have to rely on taking screenshots every month to satisfy our auditors. What tables and/or views should I be using and what's the best way to extract the information out of them? I'm trying to audit permissions within the database itself.
Solution
The answer on how to do this depends on what version of SQL Server you are using. SQL Server 2005 introduced a new security model built around the concept of securables and while the old security tables were retained from 2000, they only report information that you would see in a SQL Server 2000 server. That means any of the newer securables, like schemas, certificates, asymmetric keys, even the database itself, will not be reported if you use the old SQL Server 2000 tables in SQL Server 2005 or above. So let's start with SQL Server 2000.
Aug 13, 2010
10+ Useful Code Snippets To Develop IPhone Friendly Websites
Aug 12, 2010
Making a SQL Server Database Read-Only
ALTER DATABASE Command
The ALTER DATABASE command allows a database administrator to modify SQL Server databases and their files and filegroups. This includes permitting the changing of database configuration options.
Setting a Database to Read-Only
When you need to ensure that the data is a database is not modified by any users or automated processes, it is useful to set the database into a read-only mode. Once read-only, the data can be read normally but any attempts to create, updated or delete table rows is disallowed. This makes the read-only mode ideal when preparing for data migration, performing data integrity checking or when the data is only required for historical reporting purposes.
To make a database read-only, the following command is used:
ALTER DATABASE database-name SET READ_ONLYSetting a Database to Read-Write
If the read-only requirements for the database are temporary, you will need to reset the configuration option following any procedures undertaken. This is achieved with a small modification to the ALTER DATABASE statement to indicate that the database should return to a writeable mode.
ALTER DATABASE database-name SET READ_WRITE
Jul 16, 2010
Web Based Job Scheduler - CodeProject
- Schedule jobs using a web browser.
- Extend the scheduling application to include your own features.
- Using the code
- A Windows Service that will run a job (DOS command text).
- A Web Application that will let you schedule a job.
- MS SQL Server database Stored Procedure to get the list of jobs that need to run.
Application Scheduler Service Using VB.Net And XML
Jun 12, 2010
Copy Outlook Autocomplete name list to another computer
http://bit.ly/djRdLO
Move an Outlook data file from one computer to another
http://bit.ly/d4WYTV
May 5, 2010
How to Use Different CSS Style Sheets For Different Browsers
What most (if not all) CSS-using webmasters want is a way to specify that a certain style sheet is to be used by such and such a browser and not others, as well as to hide other style sheets from older browsers.