Skip to main content

Posts

What is a web-hook?

The concept of a WebHook is simple. A WebHook is an HTTP callback: an HTTP POST that occurs when something happens; a simple event-notification via HTTP POST. A web application implementing WebHooks will POST a message to a URL when certain things happen. When a web application enables users to register their own URLs, the users can then extend, customize, and integrate that application with their own custom extensions or even with other applications around the web. For the user, WebHooks are a way to receive valuable information  when it happens , rather than continually polling for that data and receiving nothing valuable most of the time. WebHooks have enormous potential and are limited only by your imagination! (No, it can’t wash the dishes. Yet.) WebHooks are meant to  do  something. To get your imagination spinning with your own ideas, here are the three general ways in which WebHooks can be used to make  your  web more programmable: Push: rec...

Azure storage emulator failed to initialize for Azure SDK 2.6

As sudden, I started getting “ Azure storage emulator failed to initialize for Azure SDK 2.6 ” when I try to run my cloud service in emulator. After searching on google for some time I found the solution. Here is that solution step by step. I am posting it here as I did not find a properly explained solution any where else on internet. Step 1  : Start your system in safe mode (Immediately after the computer is powered on or restarted tap the F8 key to enter safe mode). Step 2  : In safe mode go the path  C:\Program Files (x86)\Microsoft SDKs\Azure\Storage Emulator . Step 3  : Search for  WAStorageEmulator.exe  – config file. Step 4  : Edit  WAStorageEmulator.exe  with Notepad++ (any editor). Step 5  : Change the port numbers as shown in the above snapshot. (By default the port numbers will be 10000, 10001, 10002). <services> <service name="Blob" url="http://127.0.0.1:30000/"/> <service name="Queue" url...

What is LocalDB and How to use it?

LocalDB is a new version of SQL Express. LocalDB is created specifically for developers. It is very easy to install and requires no management, yet it offers the same T-SQL language, programming surface and client-side providers as the regular SQL Server Express. In effect the developers that target SQL Server no longer have to install and manage a full instance of SQL Server Express on their laptops and other development machines. Moreover, if the simplicity (and limitations) of LocalDB fit the needs of the target application environment, developers can continue using it in production, as LocalDB makes a pretty good embedded database too. LocalDB has the following key properties: LocalDB uses the same sqlservr.exe as the regular SQL Express and other editions of SQL Server. The application is using the same client-side providers (ADO.NET, ODBC, PDO and others) to connect to it and operates on data using the same T-SQL language as provided by SQL Express. LocalDB is installe...

Keyboard Shortcuts (Windows) to Boost Your Productivity

General Shortcuts Let’s kick start the list with the most common shortcuts that you’ll often use. F1  [Display Help] F2  [Rename the selected item] F3  [Search for a file or folder] F4  [Display the address bar list in File Explorer] F5  [Refresh the active window] F6  [Cycle through screen elements in a window or on the desktop] F10  [Activate the Menu bar in the active app] ALT  +  F4  [Close the active item, or exit the active app] ALT  +  ESC  [Cycle through items in the order in which they were opened] ALT  +  Underlined Letter  in menus and dialog box options [Perform the command for that letter] ALT  +  ENTER  [Display properties for the selected item] ALT  +  SPACEBAR  [Open the shortcut menu for the active window] ALT  +  LEFT ARROW  [Back] ALT  +  RIGHT ARROW  [Forward] ALT  +  PAGE UP  [Move up one scree...