Posts

Showing posts with the label Tips

Facebook, Twitter and Google Plus shortcuts keys

Facebook Facebook shortcut keys are based on browser. Shortcuts for Facebook will vary from browser to browser. In Firefox, you will need to add a Shift key before the key combinations given below, whereas in Internet Explorer, you need to hit Enter after the combination. Same goes for a Mac, except that for Firefox, you need to press Ctrl instead of Shift. Rest of the keys should be same. Facebook key combinations Key     Function Alt + M Compose new message Alt + /    Main site search Alt + 1   Go to home page Alt + 2   Go to Timeline Alt + 3   See friends requests Alt + 4   Go to message inbox Alt + 5   See all notifications Alt + 6   Go to Account Settings Alt + 7   Go to Privacy Settings Alt + 8   Go to Facebook's Profile Page Alt + 9   Go to Facebook's Terms of Service Alt + 0   Go to Facebook Help Center Twitte...

Decorating code snippets in blogger

Follow the below steps to highlight you content (code) in blogger posts. Step 1: Go to Blogger Dashboard -> Template ->Edit Html Paste the below code into your Blogger Template inside the <head>   </head> tag Step2: Use the <pre> tag to highlight your code snippet Example: <pre  class = "brush: csharp" > RequestToken GetRequesttoken()         {             var requestToken = (RequestToken)Session["RequestToken"];             Session.Remove("RequestToken");             return requestToken;         } </pre>  output looks like: RequestToken GetRequesttoken() { var requestToken = (RequestToken)Session["RequestToken"]; Session.Remove("RequestToken"); return requestToken; }