Tech Support Websites

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

Saturday, 24 March 2012

Hidden features of ASP.NET

Posted on 11:08 by Unknown
On the StackOverflow forum, you'll find questions like "Hidden features of" technology X to be popular with a lot of up-votes. Such questions are sometimes closed as they are too subjective & do not fit into the expected Q&A format of the site. They however contain insightful answers.

Here is a list of "hidden" gems in ASP.NET that I've discovered (work in progress) and wanted to highlight them as the don't easily show up in the top results while googling -

  • Tag property for server controls - Just like the rel HTML attribute can be added to an element to store extra  info when it is required in a client-side programming scenario, the Tag property can be used with server controls to store some extra info that may not fit into regular properties.
  • RepeatLayout Property of  CheckBoxList server control - this property used to allow 2 possible values "Table" and "Flow" till ASP.NET 3.5, but from version 4 onwards it supports OrderedList and UnorderedList as well.  If you need to style a group of checkboxes generated through the  CheckBoxList server control, the default "Table" layout may be restrictive.  "Flow" and the other new options provide more flexibility in modifying the layout through CSS.


Related:
StackOverflow: Hidden Features of ASP.NET
Read More
Posted in ASP.NET | No comments

Wednesday, 21 March 2012

Online, SMS-based services to get distance, approximate autorickshaw fare

Posted on 09:23 by Unknown
It's common knowledge that most auto-rickshaw drivers in Indian cities fleece their customers at every chance they get.

Here is a list of online and SMS-based services to get distance, approximate autorickshaw fare and other location-related info (currently for South-Indian cities - Bangalore, Hyderabad, Chennai):

+ LatLong.in - Helps you locate places, get directions & find places near you. This service is accessible directly from their site, over SMS & their mobile site.


To know where a particular place is,
send <place name> to 90088 90088
To get help to go to a particular place,
send <place name> FROM <starting point> to 90088 90088
send <place name> TO <starting point> to 90088 90088

+ Suruk - provides autorickshaw fare and helps with routes via SMS via textWeb's platform. To use their service, send SMS/text in the following format to 9243342000 - @autofare <city>, <source>, <destination> 

Suruk also provides a smartphone app to pre-calculate auto-rickshaw fare, possible routes for a journey, a digital meter to verify if the autorickshaw's meter is rigged and driver conduct (!!) based on experiences of Suruk users (who lived to tell their tale).

+ MeterPodu - crowd-sources auto-rickshaw fares between places and shows the approximate distance (via Sid). You can find info through their site or via their Twitter account,  @meterpodu

The messages have to be in the following format:
@meterpodu get+auto+CHN+T.Nagar+Mylapore
@meterpodu add+auto+CHN+T.Nagar+Mylapore+70

Use these city codes for respective city:
Chennai-CHN, Bengaluru-BLR, Hyderabad-HYD
Read More
Posted in India, Internet, Tools | No comments

Monday, 19 March 2012

"Had to scramble to get dressed when someone wanted video on a call."

Posted on 21:10 by Unknown
Inspired by Chris Shipton who illustrates tweets, I drew this when I found this funny thought -

When someone says Skype call, you dont know whether it is audio/video. Had to scramble to get dressed when someone wanted video on a call.
— Sriram Krishnan (@sriramk) March 1, 2012


Related:
Doodling for Dollars
Read More
Posted in Humor, Internet | No comments

Wednesday, 14 March 2012

What is SPDY?

Posted on 06:47 by Unknown
  • SPDY, pronounced “SPeeDY”,  is an experimental application-layer protocol from Google developed as part of its "Let's make the web faster" initiative to help reduce the latency of web pages.  
  • This new protocol transports the existing HTTP protocol more efficiently (up to 50% faster). 
  • It is NOT a replacement for HTTP. It replaces some parts of HTTP, but mostly augments it. At the highest level of the application layer, the request-response protocol remains the same. SPDY still uses HTTP methods, headers, and other semantics. But SPDY overrides other parts of the protocol, such as connection management and data transfer formats.
  • SPDY is supported by Chrome web browser & Firefox 11 (disabled by default)
  • Amazon has baked SPDY support into its Silk browser for the Kindle.
  • Chrome SPDY indicator is a Chrome extension to visualize SPDY support in your address bar.
  • Twitter joins Google Search, Gmail in serving webpages over the SPDY protocol when available
  • SPDY may become part of HTTP 2.0
  • The problems with HTTP that SPDY tries to address are: 
    • the server cannot initiate a connection
    • headers are always uncompressed (N.B. cookies are sent in the header)
    • in a persistent connection, all headers are resent for each request
    • data is not always compressed
    • everything is in clear text       
  • SPDY addresses these issues by:
    • allowing unlimited and interleaved requests through a single connection
    • prioritizing requests (controlled by the client only)
    • compressing headers
    • allowing the server to push resources to the client without the client's asking (e.g. you're going to want the CSS file anyway)
    • allowing the server to suggest in the header what other resources the client might want to request (so no need to wait for the HTML to be parsed before knowing)
    • always using SSL
Read More
Posted in | No comments

Tuesday, 13 March 2012

HOW TO quickly capture screenshots/frames from a parallely running video in MS Word

Posted on 11:28 by Unknown
This tip applies to MS Word 2010

MS Word lets you add an image from any application running on your PC. If you are watching a instructional video and would like to jot down notes, this feature comes handy.

The Screenshot option is in the Illustrations section of the Insert tab. After selecting that option you can also choose the Screen Clipping feature to grab only a part of a frame of a video running in a different window.

If you use this feature a lot, juggling with the mouse to walk through the steps may get cumbersome. Instead, you can create a custom shortcut.

Right click the the Screenshot option & select the Add to Quick Access Toolbar option.

Now, the next time you want to add a frame from a video, just press Alt, then the number key corresponding to the number tooltip that shows up under the Screenshot icon in the Quick Access Toolbar (it's 7 in my copy of Word) and "C" key. So Alt + 7 + C keyboard shortcut inserts a slide from a running video into an open Word document after allowing me to crop it.

To replicate this shortcut, you'll have to replace the "7" in the shortcut to whatever number the Alt key shortcut shows under the Screenshot icon.
Read More
Posted in HOWTO, Word | No comments

Sunday, 11 March 2012

The trouble with Kindle is...

Posted on 01:56 by Unknown
The trouble with Kindle is...you can't show off your book collection

Also see:
The trouble with going early to work is...
Read More
Posted in Gadgets, Humor | No comments

Saturday, 10 March 2012

Brace matching for JavaScript/jQuery in Visual Studio 2010

Posted on 10:20 by Unknown
With jQuery you will need to write lesser code than you would with JavaScript but it will probably use more braces, brackets & parentheses. While programming with jQuery, it's easy to miss an ending brace, bracket or parenthesis.

Although Automatic Delimiter Highlighting is available with  C# code, it's sorely missed while you're working with JavaScript or jQuery. Thankfully there is a time-saving open-source VS Extension in the Visual Studio Gallery that bridges this gap - JScript Editor Extension. Besides other features, this nifty add-on automatically highlights the matching opening or closing brace to the one currently at the cursor. It supports matching parenthesis: (), square brackets: [], and curly braces: {}

I like Notepad2's Ctrl+Shft+B keyboard shortcut that highlights the entire area between matching brace, bracket or parenthesis.Ctrl+B is an easy to remember shortcut to find matching brace in that editor.
Read More
Posted in Javascript, jQuery, VS2010 | No comments
Newer Posts Older Posts Home
Subscribe to: Posts (Atom)

Popular Posts

  • 10 ways to make laptop battery last longer
    Paraphrased from a Right Choice magazine article with my own opinions: Keep the brightness of the screen as low as possible. If portability ...
  • Words that leave Google Instant speechless
    2600 Magazine has compiled a list of objectionable words that Google Instant has blacklisted. Several volunteers have submitted blackliste...
  • A new JavaScript Reference to bookmark
    For years, the JavaScript section at W3Schools.com has been a indispensable source of reference for me . It will now not be my only source. ...
  • Free JavaScript & jQuery learning resources
    There is a nice compilation of JavaScript & jQuery learning resources in this community wiki on StackOverflow.com . I picked those which...
  • Manipulate PDF files for free with PDFRider
    PDFRider (currently in version 0.5) is an open source project on Codeplex. This utility provides a GUI for the command-line program  Pdftk ...
  • Look what Google Goggles visual search can do
    Google Goggles is a visual search application available currently for Android powered phones. It may possibly be available for phones of oth...
  • HOW TO read long text messages on the Samsung Omnia 652
    Samsung Omnia 652 clumps text messages from a single recepient together. Scrolling through a message doesn't reveal the entire message ...
  • 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 ...
  • Dig deeper into jQuery with "jQuery Succinctly"
    jQuery Succinctly by Cody Lindley is an ebook that Syncfusion is offering as a free download (requires registration). I've been working ...
  • Web Applications - Tips & Tricks
    Did you know, you can append +any-word to a GMail address & use that word to filter emails or distinctly identify where the mail has co...

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)
      • 10 ways to make laptop battery last longer
      • Learnings in S/W Engineering from the HealthCare.g...
      • TWIL - Week #29
      • MS currently has 21 apps on Google Play, incl. Wor...
      • Review: uCertify PMI PMP v-5 Online PrepKit
      • TWIL - Week #28
      • HOW TO highlight a Province within a Country with ...
      • My first impressions of Nexus 7 tablet
      • Free APIs, online services to generate screenshots...
      • TWIL - Week #27
      • HOW TO prevent mixed content warning in web pages
      • What's common between Kovid Goyal & Antony Lewis?
      • TWIL - Week #26
      • FB & Twitter spam me with similar subject line
      • Book Review: PMP Rapid Review by Sean Whitaker; MS...
      • Windows Azure Mobile Services - Error: Table 'some...
    • ►  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)
    • ►  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