Tech Support Websites

  • Subscribe to our RSS feed.
  • Twitter
  • StumbleUpon
  • Reddit
  • Facebook
  • Digg

Sunday, 29 May 2011

Say goodbye to Google Translate, Transliterate & ten other APIs

Posted on 03:04 by Unknown
About a fortnight ago, Google highlighted on its official blog how "two clever Translate trends caught our eye—perhaps one of them will inspire you to come up with a fun Translate trick of your own.". Folks around the world were making fun remixes

First, some creative folks translated strings of consonants into German to create a new beatboxing tool. The phrase “pv zk bschk” didn’t initially make much sense to us, but a quick listen got us nodding our heads along to the beat.
Now it seems there’s a similar trend in Taiwan: using the spoken output of Google Translate as the vocals for self-composed songs or video spoofs.

A few days ago there was an announcement on the Google Code blog that the Google Translate, Transliterate & ten other APIs will be deprecated. The Google Translate API will be shut off completely on December 1, 2011 and the reason is "substantial economic burden caused by extensive abuse".  So what constitutes "fun Translate tricks" and abuse? Why not just debar developers abusing the API?

An aggrieved developer ranted thus in the comments section of that announcement -
you are supposed to be the smartest guys on the planet and the only solution you can come up is to shut it down? thats a joke, but the joke is on us, the developers.
with this move you just showed us what you really: a company that does not care about developers, you just want to become more like facebook and apple. oh what a great world we live in. more walled gardens. 


Also see - HOW TO monitor performance and availability status of public APIs & websites

Read More
Posted in APIs, Google | No comments

Saturday, 28 May 2011

Tatkal Train Ticket Reservation Tips

Posted on 10:23 by Unknown

Tatkal train ticket reservation is a ray of hope for millions of Indians who prefer to commute by trains over other forms of travel even if they have to pay extra because the original reserved ticket quota has run out. The IRCTC website is possibly the best known site in India as it helps travellers avoid the long queues at the train reservation centers. It is also probably the most hated site as getting the more premium Tatkal ticket is a harrowing experience.
--- 
Update (13-Mar-2012): In an Economic Times interview, the Head of  IRCTC, Rakesh Kumar Tandon informs that of the 8 lakh people who log on simultaneously between 8 am 8.10am, only 50,000 manage to get tickets! He attributes one customer-centric reason for the delay in completion of the Tatkal transaction to berth preference. It takes time for the system to find a particular berth. Going by this hint, a Lower berth is probably most preferred while going by experience, Side Upper is least preferred. So you could try your luck by choosing a Side Upper berth preference.
---
Some of these tips to book a Tatkal train ticket online maybe too obvious for experienced folks so don't write to tell me. If you like them, tell your friends. None of these tips guarantee confirmed availability as they are numerous factors involved that matter (like season, day of the week, route etc), these may just improve your chances. Here are the tips that I usually offer to my relatives who are not Internet power-users -
  • Many cities have multiple stations and IRCTC will get you results for all stations for that city. If the original station codes don't match, you will have to subsequently fill another form to specify the exact FROM & TO stations which is a waste of precious seconds during the first half-hour of Tatkal booking.
  • Keep alternative station codes ready. Don't wait for the autocompletion feature to fill-in the FROM & TO fields. 
  • There MAY be a greater probability of getting Tatkal tickets on long distance trains as they will cost more than those which run between major cities and they are less known as they don't run on all days of the week. 
  • Keep long words like your name and bank details saved in Notepad/text editor so that you can quickly copy-paste. Youngsters are generally quick with the keyboard (due to the long hours they spend on the computer) so you could get a power user to assist you in case typing isn't your strongest skill. It may help to have multiple people around while booking in order to take quick decisions & also to sanity check the data that is being entered. For instance, mis-typing the gender in the hurry could lead you to do some explaining to the TTE or a visit to the reservation office to get it corrected.
  • Use a modern browser (not IE6 or older versions of other popular browsers) as they load pages relatively faster.
  • Your IRCTC "session" may time out if you leave the site unused for a long time. If you anticipate the reservation exercise to take a lot of time, use Opera browser's native auto-refresh feature or use this bookmarklet in IE, Firefox, Safari & Chrome to automatically refresh a webpage at specified intervals.
  • Get the fastest Internet service possible (3G USB) & browse from a decent laptop. That way you can avoid any disruption due to an unfortunate powercut or a landline Internet service issue. If you perform a dry-run before the actual exercise, some elements of the IRCTC site like images maybe cached and may improve speed slightly.
  • Rather than take a single direct train, you can use 90di.com to look for multiple trains in the same route. You have to compromise on comfort & cost but at least you may be able to get confirmed tickets.
  • Every second counts, so keep yourself distraction free & busy till you have finished all options.
  • Each user is currently permitted to book only 10 tickets in a month. So if you book a lot of tickets, make sure you are not crossing the monthly limit before you start the Tatkal ticket booking adventure. In such a case, you can be prepared with credentials of another userid.
A scenario that I foresee for the future in case IRCTC doesn't tackle the "Service Unavailable" issue (which typically comes up between 8-8:20 AM) is that desperate train ticket seekers will stand in queues with their smartphones at ticket reservation counters to try their luck both online & offline.

If you end up without confirmed Tatkal tickets at the end of the fateful first hour of booking, take consolation in the fact that you are one among thousands that had the same luck. Instead of despairing, consider this as a learning experience & a practice session for a future encounter with IRCTC.

If you have any practical tips, feel free to share them through the comments section below.

Also see:
IRCTC Alternatives
Make the most of IRCTC
Travel Planning & Reservation Tips using Online Tools
Indian Railways RAC and Waitlists concepts explained
Read More
Posted in India, Tips, Websites | No comments

Friday, 27 May 2011

Notes from Pluralsight course "Introduction to Visual Studio 2010 - Part 2"

Posted on 10:21 by Unknown

Introduction to Visual Studio 2010 - Part 2  importantly covers IntelliTrace & Extensions. Some interesting facts about VS from the video course -
  • You can debug a release build. Release folder can contain .pdb. PDB – Program Debug Database
  • Deploy Release version of build. Depending on the third party libraries you are using, their licensing terms  may not allow you to deploy the Debug version.
  • Build > Clean Solution throws away all the products of a prior Build. This will mean that the next build will be full build.
  • Rather than doing a Clean Solution & then Build Solution, you can directly do a Rebuild Solution
  • Look at Locals window after a breakpoint is hit for variable values. Use Watch window for specific variables
  • DataTip dimensions can be modified  
  • Ctrl + Datatip – for a transparent background, useful when you want to see code behind a datatip
  • Pin a DataTip to see variable value change dynamically inside it.It can be dragged, unpinned or closed.
  • Trivia: Codename of IntelliTrace was Historical Debugging
  • IntelliTrace is available in VS Ultimate only  
  • Saves a trace file of execution path & values of member variables
  • By default has very little performance impact
  • IntelliTrace can provide time travel & space travel (you can test a iTrace file on computers other than originating one to analyze "works on my machine" scenarios)
  • When you close VS, itrace files are gone so save it elsewhere. You can get the iTrace file's location from Tools > Options | IntelliTrace > Advanced 
  • You can open a itrace file within VS. Double click main thread in thread window to replicate scenario & start debugging on a different computer.
  • Using traces from other machines lets you share bugs with other developers or avoid "works on my machine"
  • Visual Studio Extensions can boost productivity. There are over 2400 extensions for different versions of VS on VisualStudioGallery.com
  • Use Tools > Extension Manager to enable/disable/uninstall update
  • Productivity Power Tools by Microsoft is a bundle of popular extensions that includes features that go on to become standard features in future VS versions. Some features in Pro Power Tools include -
- Highlight current line
- Auto brace completion
- Ctrl-Click Go To Definition
- Column guides (to check length of each code statement does not go beyond a specific column number)
- Quick Access (Windows Vista/7 like universal Find)
  • Productivity Power Tools (1.37MB) are distributed as a file with an extension vsix, a new format in VS2010
  • Microsoft All-In-Code Framework is a free, centralized code sample library 
  • Microsoft All-In-Code Framework Sample Browser is available from VisualStudioGallery  
  • You can select a keyword within your code & select Search Code Sample in context menu to view matching samples from All-In-Code Framework.
Also see - Things I learnt from the Pluralsight course "Introduction to Visual Studio 2010"

Read More
Posted in Learning Resources, Tips, VS2010 | No comments

Thursday, 26 May 2011

Free videos from major Microsoft Developer events are archived on Channel9

Posted on 01:39 by Unknown
Recordings from TechEd, PDC, MIX events are all now archived on Channel9. These are great learning resources to keep abreast of all that's happening in the Microsoft Development world. Here are videos I have identified from Tech-Ed North America 2011 for weekend viewing over the coming weeks:

  • Team Foundation Server for Everyone
  • The Accidental Team Foundation Server Admin
  • Understanding Your Systems with Architectural Discovery in Microsoft Visual Studio 2010
  • Internet Information Services (IIS) 7.5 for Developers
  • Pragmatic JavaScript,jQuery and AJAX with Microsoft ASP.NET
  • Application Development with HTML5
  • HTML5 and CSS3 Techniques You Can Use Today
  • Debugging Pesky HTML5 Websites with F12 in Windows Internet Explorer 9
  • Upgrading Your C# Programming Skills to Be a More Effective Developer
  • Microsoft Visual Studio Tips and Tricks
  • Demystifying Debugging with Microsoft Visual Studio Ultimate and IntelliTrace
  • Identify and Fix Performance Problems with Microsoft Visual Studio Ultimate
  • Hack Proofing Your Microsoft ASP.NET Web Forms and MVC Applications
  • Busy Microsoft .NET Developer’s Guide to the Microsoft Cloud


Read More
Posted in Learning Resources, Microsoft | No comments

Saturday, 21 May 2011

MVP Open Day 2011 was an insightful experience #opendayin

Posted on 22:08 by Unknown
Like last year, MVPs from all over India & a few from Sri Lanka & Australia converged in Hyderabad for the MVP Open Day event. I had a great time meeting & talking with some extremely smart & passionate MVPs & listening to presentations from visionaries & Product Team leaders at MS IDC.
(click to view enlarged image)





Read More
Posted in Microsoft | No comments

Thursday, 5 May 2011

Free SQL Server Goodies

Posted on 18:51 by Unknown

Michael K. Campbell has shared some useful SQL Server goodies that are available online, in his article in DevProConnections. I picked the ones I liked -

* Scripts - TechNet's Script Repository has a vast repository of scripts provided by Microsoft and by its users/customers that you can adapt for your own requirements.

* Books - Red Gate Software which sells some great developer tools also publishes books. Some of them are available for free download in PDF format -
  • SQL Server Stumpers Vol.5 

  • Inside the SQL Server Query Optimizer 

  • SQL Server Execution Plans 

  • Mastering SQL Server Profiler

  • SQL Server Statistics 

  • The Red Gate Guide to SQL Server Team-based Development 

  • Defensive Database Programming

  • Confessions of an IT Manager

  • SQL Server Tacklebox 

  • How to Become an Exceptional DBA

  • The Art of XSD 

  • SQL Server Hardware

  • The SysAdmin Handbook - The Best of Simple Talk 

  • Brad's Sure Guide to SQL Server Maintenance Plans 

  • Exchange 2010 - A Practical Approach 

  • Don't Just Roll the Dice

  • Protecting SQL Server Data

  • Book of Red Gate (about Red Gate, not SQL Server) 

* Videos
  • The Basics of SQL Server Profiler 

  • How to Interpret Profiler Results

Related:
Free SQL Server Videos
HOW TO try Windows Azure & SQL Azure for free (without any credit card)
Read More
Posted in Learning Resources, SQL Server | No comments

Monday, 2 May 2011

Notes from Pluralsight SQL Azure course

Posted on 20:56 by Unknown

Here is a summary of the 2h 38min duration Pluralsight SQL Azure course  -

* Advantages of SQL Azure -

  • Highly available
  • Manageable
  • Scalable
  • Familiar – similar to SQL Server 2005 & 2008, but differences/limitations exist
  • Maintained by MS IT

* Some differences from standard SQL Server  -

  • Data migration – SSIS, BCP, Scripts, SQL Azure Migration Wizard, System.Data.SqlClient.SqlBulkCopy; Restore not supported
  • Transactions – possible in same DB instance only
  • Collation applies only to Column & Expression level; Server, Database excluded
  • Tables must have clustered index
  • Supports most but not all of TSQL 

* Candidate apps that can leverage SQL Azure -

  • Require relational data model. Consider Windows Azure Table for other needs
  • Easily partitioned data sets, 5 – 50 GB database
  • All queries use one database. (Most Enterprise apps may need to access multiple DBs)
  • Require high availability

* Besides Memory, Time, Disk costs, Devs must also understand SQL Azure pricing
* SQL Azure pricing based on usage units: Web (upto 149 databases of 1—5GB each possible) or Business (upto 15 databases of 10—50GB each possible)
* No cost for data transfer if SQL & Azure are on the same availability zone
* Bill accessible through Windows Azure Portal
* SQL Azure usage scenarios -

  • Cloud Hub Data Collaboration
  • Scale-out Enterprise Applications
  • Departmental Applications
  • SaaS
  • BI

* MS Tools to access SQL Azure – SSMS, Visual Studio, SQL Azure Portal
* Understand Connection termination failure codes to manage recovery -

  • System is busy, reconnect after 10s: 40501
  • Database hit maximum size: 40544
  • Transaction Termination: 40549
  • Lock Consumption: 40550
  • TempDB uses 5GB: 40551
  • Log File issues:  40552
  • Excessive Memory Usage: 40553

* Ideal candidates for migration to SQL Azure –

  • Tables with indices
  • Transations stay in a single db
  • DB under 50GB

* Tasks in migration -

  • Migrate users & login IDs
  • Map data types
  • Map db objects: tables, triggers, views, SPs
  • Update incompatible objects to work with SQL Azure
  • Update apps to work with SQL Azure
  • Migrate data to SQL Azure

* It is possible to expose SQL Azure database over OData especially to non-SQL consumers
* OData makes your data consumable everywhere
* OData is a web protocol for querying & updating data
* OData builds on HTTP, Atom Publishing Protocol, JSON
* Feeds may supply more than one collection
* SQL Azure can feed needs of data analysis (through Excel, SSRS etc)

Also see:
Things I learnt from the Pluralsight course "Introduction to Visual Studio 2010"
Read More
Posted in SQL Azure, SQL Server | No comments
Newer Posts Older Posts Home
Subscribe to: Posts (Atom)

Popular Posts

  • Windows 8 keyboard shortcuts
    Win + X   - context menu to access common features like Control Panel, Task Manager, File Explorer, Programs & Features, Run, Search etc...
  • What is the difference between Browser Mode & Document Mode in IE
    If you're a web developer and your job actively involves building web pages that work the same in all browsers including the last three ...
  • My 30-day personal project - watch 100 hours of Pluralsight videos
    Inspired by Matt Cutts' 30-day challenges , I plan to watch 100 hours of Pluralsight online videos to get up-to-date with current ...
  • Archive tweets & favorites with Google Reader
    There are numerous ways to archive tweets but rather than use yet another tool, I prefer using Google Reader to preserve the tweets I mark ...
  • TWIL - Week #3
    This Week I Learned: New Azure VM Image Templates include SQL Server, BizTalk Server, and SharePoint Server (2013?) images . This can be han...
  • Dashboard-like info with Browser tabs, Windows 7 Taskbar tabs
    Browser tabs & Windows 7 Taskbar tabs are turning self-aware.  This is how my browser looked the other day: I had the summary of all tha...
  • The State Of HTML5 Video
    Key points from the  The State Of HTML5 Video  report by LongTailVideo (last updated on April 19, 2012): 75% of the desktop & mobile bro...
  • Azure in Pictures - overview of Windows Azure Features, Services and Common Uses
    Download the Windows Azure Poster in PDF format (1.1MB)
  • Indian comparison shopping sites
    Did you know, India has 120 million Internet users & the Indian e-commerce market is worth $7 billion ?  Travel accounts for over 80 per...
  • Things to consider before settling on a JavaScript Library or jQuery plugin for your project
    In the article, Which JavaScript Library Should I Pick? , Pamela Fox has listed some practical points to consider before you settle on a Jav...

Categories

  • AJAX
  • Android
  • APIs
  • App
  • ASP
  • ASP.NET
  • ASP.NET-MVC
  • Azure
  • Azure SQL Database
  • AzureInPictures
  • Bing
  • Book Review
  • Bookmarklet
  • Browsers
  • C#
  • chart
  • Chrome
  • Cloud
  • CSS
  • CSS3
  • DidYouKnow
  • E-Commerce
  • Excel
  • FB
  • Fiddler
  • Firefox
  • Gadgets
  • GeoLocation
  • GMail
  • Google
  • Google Docs
  • Google Reader
  • Health
  • Hotmail
  • HOWTO
  • HTML
  • HTML/CSS
  • HTML5
  • Humor
  • Hyderabad
  • IE
  • IIS
  • India
  • Internet
  • IT
  • Javascript
  • jQuery
  • JSON
  • JSONP
  • Laptop
  • Learning Resources
  • Lists
  • Map
  • Metrics
  • Microsoft
  • miscellaneous
  • Mobile
  • NAPA
  • Office365
  • Opera
  • PDF
  • Performance
  • Personal
  • PHP
  • PM
  • PowerShell
  • Privacy
  • Programming
  • Rant
  • Safari
  • Science
  • Search Engines
  • SearchEngines
  • Security
  • SEO
  • Sharepoint
  • SharePoint2013
  • Silverlight
  • Software Engineering
  • Solutions
  • SQL Azure
  • SQL Server
  • TFS
  • Tip
  • Tips
  • Tools
  • Tools/Utilities
  • Trivia
  • TWIL
  • Twitter
  • UX
  • VM
  • VS.NET
  • VS2010
  • VS2012
  • WCF
  • WebApps
  • Websites
  • WF
  • Windows Phone
  • Windows7
  • Windows8
  • Word
  • WP7
  • WPF

Blog Archive

  • ►  2013 (112)
    • ►  October (16)
    • ►  September (14)
    • ►  August (8)
    • ►  July (8)
    • ►  June (13)
    • ►  May (12)
    • ►  April (12)
    • ►  March (8)
    • ►  February (15)
    • ►  January (6)
  • ►  2012 (127)
    • ►  December (11)
    • ►  November (14)
    • ►  October (13)
    • ►  September (14)
    • ►  August (16)
    • ►  July (16)
    • ►  June (6)
    • ►  May (5)
    • ►  April (11)
    • ►  March (12)
    • ►  February (7)
    • ►  January (2)
  • ▼  2011 (98)
    • ►  December (5)
    • ►  November (2)
    • ►  October (5)
    • ►  September (7)
    • ►  August (7)
    • ►  July (15)
    • ►  June (10)
    • ▼  May (7)
      • Say goodbye to Google Translate, Transliterate & t...
      • Tatkal Train Ticket Reservation Tips
      • Notes from Pluralsight course "Introduction to Vis...
      • Free videos from major Microsoft Developer events ...
      • MVP Open Day 2011 was an insightful experience #op...
      • Free SQL Server Goodies
      • Notes from Pluralsight SQL Azure course
    • ►  April (8)
    • ►  March (10)
    • ►  February (11)
    • ►  January (11)
  • ►  2010 (163)
    • ►  December (14)
    • ►  November (19)
    • ►  October (19)
    • ►  September (15)
    • ►  August (18)
    • ►  July (17)
    • ►  June (20)
    • ►  May (17)
    • ►  April (19)
    • ►  March (5)
Powered by Blogger.

About Me

Unknown
View my complete profile