<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
    xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
    xmlns:admin="http://webns.net/mvcb/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:content="http://purl.org/rss/1.0/modules/content/">

    <channel>
    
    <title>Sheriff&apos;s Personal Weblog</title>
    <link>http://sheriff.netrcs.com/blog/site/index/</link>
    <description></description>
    <dc:language>en</dc:language>
    <dc:creator>sheriff@netrcs.com</dc:creator>
    <dc:rights>Copyright 2010</dc:rights>
    <dc:date>2010-05-18T08:32:00+00:00</dc:date>
    <admin:generatorAgent rdf:resource="http://expressionengine.com/" />
    

    <item>
      <title>Safari, Firefox, Internet Explorer wouldn&#8217;t open HTTPS pages</title>
      <link>http://sheriff.netrcs.com/blog/site/safari-firefox-internet-explorer-wouldnt-open-https-pages/</link>
      <guid>http://sheriff.netrcs.com/blog/site/safari-firefox-internet-explorer-wouldnt-open-https-pages/#When:08:32:00Z</guid>
      <description>Today, my login attempt at facebook failed &#45; I was sure I typed in my password right, but the actual error was not with facebook, and it was with my comp&#8217;s date/time settings.&amp;nbsp; Yep, Both, safari and Firefox reported &#8220;expired certificate&#8221; issue to https:// sites.&amp;nbsp; I was wondering, even to facebook?&amp;nbsp; Then I remembered something (about someone&#8217;s bday) and lol the time reported by my PC clock was Sunday, 1st January.&amp;nbsp; Aha!&amp;nbsp; That must be it.&amp;nbsp; Apparently, the PC&#8217;s internal/battery clock&#45;time needs repair.&amp;nbsp; And how I solved the issue for the time being?&amp;nbsp; I downloaded a program called &#8221;TimeSync&#8221; &#45; a free software and VOILA, the sys&#45;clock is now reset!





BTW, remember to uncheck the last option &#8220;Ignore time differences larger than 60 minutes&#8221;</description>
      <dc:subject></dc:subject>
      <dc:date>2010-05-18T08:32:00+00:00</dc:date>
    </item>

    <item>
      <title>Do&#45;Not&#45;Open&#45;Attachments&#45;from&#45;Facebook&#45;Login</title>
      <link>http://sheriff.netrcs.com/blog/site/do-not-open-attachments-from-facebook-login/</link>
      <guid>http://sheriff.netrcs.com/blog/site/do-not-open-attachments-from-facebook-login/#When:08:09:00Z</guid>
      <description>A lot of my friends have reported that their facebook login passwords were *HACKED*  &#45; Really!!&amp;nbsp; Recently I got a suspicious looking email that had an zip/archive attachment.&amp;nbsp; The from address read &#8220;Facebook&#45;Manager&#8221; to make it look legit.&amp;nbsp; I saw this from my corporate email account in a cafe and when I got back home, my email client downloaded this email and the attachment was immediately removed by my Anti&#45;Virus.&amp;nbsp; Kudos to my well&#45;updated anti&#45;virus software.&amp;nbsp; Here are some KEY points:


* Facebook does not update your password for any reason.

* Except you nobody knows your password (unless you let them know), and not even facebook has your password.&amp;nbsp; Why? because they are digest&#45;encrypted and stored in the database.

* Facebook verifies if your password is correct only at the time of login and only when the digest&#45;encryption of the password you enter at login matches the digest&#45;encryption in the database.. So your password is never seen in plain&#45;text and it is impossible for a human to read a password that&#8217;s already encrypted.


So, the only way to know your password is by getting it from you making you type or say in places other than FaceBook.com.&amp;nbsp; Do you disagree?</description>
      <dc:subject>News</dc:subject>
      <dc:date>2010-04-10T08:09:00+00:00</dc:date>
    </item>

    <item>
      <title>View In Browser/Browse with key shortcut &#45; alternative for Ctrl+F5</title>
      <link>http://sheriff.netrcs.com/blog/site/view-in-browser-browse-with-key-shortcut-alternative-for-ctrlf5/</link>
      <guid>http://sheriff.netrcs.com/blog/site/view-in-browser-browse-with-key-shortcut-alternative-for-ctrlf5/#When:05:13:00Z</guid>
      <description>At work I use Visual Studio 2008 for web development.&amp;nbsp; I do not always like the Ctrl+F5 option, since it opens up my default browser (in my case, Google Chrome).&amp;nbsp;   Same is the case with, &#8220;View in Browser&#8221; from the solution explorer.&amp;nbsp; But then sometimes I want to start the page in Firefox or IE for cross browser unit testing.&amp;nbsp; This is where I like the &#8220;Browse with...&#8221; option in the solution explorer.&amp;nbsp; If you are like me who uses this option quite frequently and want to save a few mouse clicks, go to Tools&#45;&gt;Options&#8230; Environment&#45;&gt;Keyboard (make sure &#8220;Show all settings&#8221; is checked) and type in &#8220;File.BrowseWith&#8221; in the show commands containing filter and assign a nice keyboard shortcut.&amp;nbsp; You may also notice that File.ViewInBrowser already has a keyboard shortcut of Ctrl+Shift+W &#45; I saw this to be redundant.&amp;nbsp; So I removed the shortcut for this and assigned this to File.BrowseWith.&amp;nbsp; Now everytime I make changes to a .aspx file, I hit Ctrl+Shift+W to choose to browse in the browser I want to test!</description>
      <dc:subject></dc:subject>
      <dc:date>2010-02-11T05:13:00+00:00</dc:date>
    </item>

    <item>
      <title>JavaScript Class Template for Object Oriented People</title>
      <link>http://sheriff.netrcs.com/blog/site/javascript-class-template-for-object-oriented-people/</link>
      <guid>http://sheriff.netrcs.com/blog/site/javascript-class-template-for-object-oriented-people/#When:06:03:01Z</guid>
      <description>JavaScript, being a dynamic language, does have all those Object Oriented Paradigms and following is the template that I use to write my JavaScript classes.



function MyClass() { // MyClass = function() won&#8217;t work

	

	var p = &#8220;&#8221;;

	

	function a() {

		alert( p );

	};


	//

	MyClass.prototype.test = function( s ){

		p = s;

		a()

	};


}; // End of Class: MyClass //



Usage of MyClass:




var x = new MyClass();

x.test(&quot;Hello World!&quot;);



As you can note, we have a public method: test(), a private method a() and also, a private variable: p.



Here is another interesting syntactic sugar for writing a public method:



function MyClass() { // MyClass = function() won&#8217;t work

	

	var method=MyClass.prototype;


....

....


	method.test = function( s ){

		p = s;

		a()

	};

....

}



So, what is stopping us from writing JavaScript the OO way?</description>
      <dc:subject></dc:subject>
      <dc:date>2010-01-18T06:03:01+00:00</dc:date>
    </item>

    <item>
      <title>Food for thought</title>
      <link>http://sheriff.netrcs.com/blog/site/food-for-thought/</link>
      <guid>http://sheriff.netrcs.com/blog/site/food-for-thought/#When:23:37:00Z</guid>
      <description>The average man finds logic emotionally too soon.&amp;nbsp; That&#8217;s when the convincing factor becomes near to impossible!</description>
      <dc:subject></dc:subject>
      <dc:date>2009-02-07T23:37:00+00:00</dc:date>
    </item>

    <item>
      <title>A portable development web server &#45; Lighty2Go &#45; Wow</title>
      <link>http://sheriff.netrcs.com/blog/site/a-portable-web-server-lighty2go-wow/</link>
      <guid>http://sheriff.netrcs.com/blog/site/a-portable-web-server-lighty2go-wow/#When:21:07:01Z</guid>
      <description>I was just wondering if I could get a portable version of lighttpd but Google gave me more than I asked for. A complete stack of Lighty (lighttpd web server), MySQL, PHP on windows, given away free, again!


Just wow.&amp;nbsp; Here is where you get it: http://lighty2go.com/</description>
      <dc:subject></dc:subject>
      <dc:date>2009-02-06T21:07:01+00:00</dc:date>
    </item>

    <item>
      <title>Just Got Subversion installed on my Host Monster account (svn+ssh)</title>
      <link>http://sheriff.netrcs.com/blog/site/just-got-subversion-installed-on-my-host-monster-account-svnssh/</link>
      <guid>http://sheriff.netrcs.com/blog/site/just-got-subversion-installed-on-my-host-monster-account-svnssh/#When:01:02:01Z</guid>
      <description>Thanks to Jonathan Booth for hosting the following file with bells, whistles and SEO support.&amp;nbsp; This helped me get Subversion installed, up and running on my HostMonster account for netrcs.com


http://sharpstep.com/cgi&#45;bin/code2html?filename=Articles/HostMonster&#45;svn/svn&#45;install.sh


Most of all the create svn user shell script is the best piece!


Later, the following section educated me a few things on how Putty, .ppk file, Subversion/config file, TortoisePlink and an empty passphrase &#8212;all play a significant role in setting up a smooth svn+ssh:// access.

http://www.sharpstep.com/Articles/HostMonster&#45;svn/#client_install


I&#8217;m very excited with the value&#45;additions SVN will give me in the development of my current project: TakeMyScreen.com


Right now, I&#8217;m looking for a way to change the svn+ssh:// based access to https://  &#45;  That would be lovely, won&#8217;t it?</description>
      <dc:subject></dc:subject>
      <dc:date>2009-02-05T01:02:01+00:00</dc:date>
    </item>

    <item>
      <title>What I wrote to myself to keep motivated</title>
      <link>http://sheriff.netrcs.com/blog/site/one-liner-on-success/</link>
      <guid>http://sheriff.netrcs.com/blog/site/one-liner-on-success/#When:10:49:00Z</guid>
      <description>See every step in detail on a new path to success, listen every words of your master on a path he went through, get up and run so you are sure you are making real success and not just dreaming.</description>
      <dc:subject>News</dc:subject>
      <dc:date>2009-01-26T10:49:00+00:00</dc:date>
    </item>

    <item>
      <title>Embrace me, or I will &#8230;</title>
      <link>http://sheriff.netrcs.com/blog/site/embrace-me-or-i-will/</link>
      <guid>http://sheriff.netrcs.com/blog/site/embrace-me-or-i-will/#When:19:45:00Z</guid>
      <description>Oh my, Oh my, Oh my godly Angel!

You bring me soberness out of nowhere.

Those tears dry, my lips widen,

My heart soars, and my eyes focus!


Black looks bright, reds become pure.

I no longer think and no longer rest.

I no longer eat nor drink to take cure.

Come to me &#45; without you I feel lost.


My dreams show you, my mind speaks of you,

My face imitates your smile, my eyes motion to yours.

One love is what I was granted.

He hid it in you for me to be attracted.


Come to me, let me carry you to heavens.

Come to me, or let me.

Embrace me, you won&#8217;t regret later.

Embrace me, or I will ...</description>
      <dc:subject></dc:subject>
      <dc:date>2009-01-10T19:45:00+00:00</dc:date>
    </item>

    <item>
      <title>Chief</title>
      <link>http://sheriff.netrcs.com/blog/site/chief/</link>
      <guid>http://sheriff.netrcs.com/blog/site/chief/#When:21:38:01Z</guid>
      <description>The Chief called me a Chief when actually I was just a boy!</description>
      <dc:subject></dc:subject>
      <dc:date>2009-01-06T21:38:01+00:00</dc:date>
    </item>

    
    </channel>
</rss>