<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	
	xmlns:georss="http://www.georss.org/georss"
	xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#"
	>

<channel>
	<title>Code in my Bug!</title>
	<atom:link href="https://projectbee.org/blog/feed/" rel="self" type="application/rss+xml" />
	<link>https://projectbee.org/blog</link>
	<description>Bipin&#039;s experiments with life, society, programming, hacking, &#38; other stuff</description>
	<lastBuildDate>Mon, 01 May 2017 13:44:55 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.5.4</generator>

<image>
	<url>https://projectbee.org/blog/wp-content/uploads/2017/04/cropped-1.TableLamp-32x32.jpg</url>
	<title>Code in my Bug!</title>
	<link>https://projectbee.org/blog</link>
	<width>32</width>
	<height>32</height>
</image> 
<site xmlns="com-wordpress:feed-additions:1">3586319</site>	<item>
		<title>itek powered Raspberry Pi runs for over 7 hours</title>
		<link>https://projectbee.org/blog/archive/itek-powered-raspberry-pi-runs-for-over-7-hours/</link>
					<comments>https://projectbee.org/blog/archive/itek-powered-raspberry-pi-runs-for-over-7-hours/#comments</comments>
		
		<dc:creator><![CDATA[Bipin Upadhyay]]></dc:creator>
		<pubDate>Sun, 31 Mar 2013 07:48:44 +0000</pubDate>
				<category><![CDATA[guide]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[hackers]]></category>
		<category><![CDATA[presentation]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[technology]]></category>
		<guid isPermaLink="false">http://projectbee.org/blog/?p=273</guid>

					<description><![CDATA[<p>Summary I tested a model B Raspberry Pi (512 MB) using an itek power bank (5600 mAh), with Internet enabled. It pinged my server every minute, and ran for about 7 hours 22 minutes. Set Up Raspberry Pi Model B (512 MB RAM), running latest updated Raspbian Wheezy build (with no additional background services running) &#8230; </p>
<p class="link-more"><a href="https://projectbee.org/blog/archive/itek-powered-raspberry-pi-runs-for-over-7-hours/" class="more-link">Continue reading<span class="screen-reader-text"> "itek powered Raspberry Pi runs for over 7 hours"</span></a></p>
<p>The post <a href="https://projectbee.org/blog/archive/itek-powered-raspberry-pi-runs-for-over-7-hours/">itek powered Raspberry Pi runs for over 7 hours</a> first appeared on <a href="https://projectbee.org/blog">Code in my Bug!</a>.</p>]]></description>
										<content:encoded><![CDATA[<h1>Summary</h1>
<p>I tested a <strong>model B Raspberry Pi (512 MB)</strong> using an <strong>itek power bank (5600 mAh)</strong>, with Internet enabled. It pinged my server every minute, and ran for about<strong> 7 hours 22 minutes.</strong></p>
<figure id="attachment_284" aria-describedby="caption-attachment-284" style="width: 760px" class="wp-caption aligncenter"><img fetchpriority="high" decoding="async" class="size-large wp-image-284" title="Raspberry Pi &amp; iTek battery pack" alt="Raspberry Pi &amp; iTek battery pack" src="http://projectbee.org/blog/wp-content/uploads/2013/03/RPi-iTek-1024x678.jpg" width="760" height="502" srcset="https://projectbee.org/blog/wp-content/uploads/2013/03/RPi-iTek-1024x678.jpg 1024w, https://projectbee.org/blog/wp-content/uploads/2013/03/RPi-iTek-300x198.jpg 300w" sizes="(max-width: 706px) 89vw, (max-width: 767px) 82vw, 740px" /><figcaption id="caption-attachment-284" class="wp-caption-text">Raspberry Pi &amp; itek battery pack</figcaption></figure>
<h1 class="lang:sh" title="CallerShellScript">Set Up</h1>
<ol>
<li>Raspberry Pi Model B (512 MB RAM), running latest updated Raspbian Wheezy build (with no additional background services running) on an 8 GB class 4 SD card</li>
<li>itek power bank (5600mAh)</li>
<li>Internet connectivity through Ethernet</li>
</ol>
<p>I wrote a shell script to call a web based PHP script on my server. I set a cron to run this shell script every minute. What happens is the shell scripts passes the client side timestamp, and server writes it, along with sever side timestamp to a file.<br />
The source code of both scripts is provided below.</p>
<pre class="lang:sh" title="CallerShellScript">#!/bin/bash

rawurlencode() {
local string="${1}"
local strlen=${#string}
local encoded=""
for (( pos=0 ; pos&lt;strlen ; pos++ )); do
    c=${string:$pos:1}
    case "$c" in
        [-_.~a-zA-Z0-9] ) o="${c}" ;; * )  printf -v o '%%%02x' "'$c"
    esac
    encoded+="${o}"
    done
    echo "${encoded}"
}

CLIENT_TIME=`date +"%c"`
URL=http://example.com/ServerSideLoggerPHPScript.php?t=$(rawurlencode "$CLIENT_TIME")

/usr/bin/wget -qO- $URL &> /dev/null</pre>
<pre class="lang:php" title="ServerSideLoggerPHPScript"><?php
$clientTime = $_GET['t'];
$serverTime = date("D M j G:i:s T Y");
$data = "RPiTime=$clientTime;ServerTime=$serverTime\n";
$writeStatus = file_put_contents('RPiTest', $data, FILE_APPEND);
?></pre>
<h1>Conclusion</h1>
<ul>
<li>The script started at <strong>4:45:12 AM</strong> client time and ended at <strong>12:07:01 PM</strong> client time. That&#8217;s almost 7 hours 22 minutes</li>
<li>The reason to attach the device to Internet was because I don&#8217;t see the point of testing a bare naked Raspbery Pi. Most real life applications would require network connectivity</li>
<li>That brings me to another realization: I should have used my WiFi adapter instead of Ethernet to test real world situation. I plan to do this soon.</li>
<li>I was fortunate not to lose Internet connectivity, but I should have logged the timestamp locally as well</li>
<li>7 hours is all hunky dory but itek is a fairly heavy device, and takes eon to recharge. I don&#8217;t see it a very likely companion to my Raspberry, if I intend to shoot them in air sometime.</li>
</ul>
<p>As mentioned, I&#8217;ll test the setup again with a WiFi adapter, and update the results.</p>
Similar Posts:<ul><li><a href="https://projectbee.org/blog/archive/adsense-exploited-by-malware-trojanqhostwu/" rel="bookmark" title="December 22, 2007">AdSense exploited by malware (Trojan.Qhost.WU)</a></li>

<li><a href="https://projectbee.org/blog/archive/the-web-is-broken/" rel="bookmark" title="October 12, 2007">The Web is Broken</a></li>

<li><a href="https://projectbee.org/blog/archive/month-of-search-engine-bugs-mission-accomplished/" rel="bookmark" title="July 3, 2007">Month of Search Engine Bugs: &#8220;Mission Accomplished&#8221;</a></li>

<li><a href="https://projectbee.org/blog/archive/java-vulnerable-to-remote-compromise/" rel="bookmark" title="July 14, 2007">Java vulnerable to remote compromise</a></li>

<li><a href="https://projectbee.org/blog/archive/apache-headache-no-listening-sockets-available/" rel="bookmark" title="August 8, 2007">Apache Headache: &#8220;no listening sockets available&#8221;</a></li>
</ul><!-- Similar Posts took 257.564 ms --><p>The post <a href="https://projectbee.org/blog/archive/itek-powered-raspberry-pi-runs-for-over-7-hours/">itek powered Raspberry Pi runs for over 7 hours</a> first appeared on <a href="https://projectbee.org/blog">Code in my Bug!</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://projectbee.org/blog/archive/itek-powered-raspberry-pi-runs-for-over-7-hours/feed/</wfw:commentRss>
			<slash:comments>9</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">273</post-id>	</item>
		<item>
		<title>How my Kindle cover saved my Kindle, OR How I got robbed of my DSLR and laptop</title>
		<link>https://projectbee.org/blog/archive/how-my-kindle-cover-saved-my-kindle-or-how-i-got-robbed-of-my-dslr-and-laptop/</link>
					<comments>https://projectbee.org/blog/archive/how-my-kindle-cover-saved-my-kindle-or-how-i-got-robbed-of-my-dslr-and-laptop/#comments</comments>
		
		<dc:creator><![CDATA[Bipin Upadhyay]]></dc:creator>
		<pubDate>Thu, 16 Feb 2012 18:50:09 +0000</pubDate>
				<category><![CDATA[humour]]></category>
		<category><![CDATA[irony]]></category>
		<category><![CDATA[life]]></category>
		<guid isPermaLink="false">http://projectbee.org/blog/?p=241</guid>

					<description><![CDATA[<p>&#8216;Robbed&#8217; not in the strictest sense, but yes there was theft at my house yesterday. The lovely dudes took away my Nikon D90 along with the 18-105 lens, and Dell XPS (my lovely old wife). Yes, I&#8217;d recently ditched my wife for a super hot Macbook Air, but she still was a companion. Polygamy is &#8230; </p>
<p class="link-more"><a href="https://projectbee.org/blog/archive/how-my-kindle-cover-saved-my-kindle-or-how-i-got-robbed-of-my-dslr-and-laptop/" class="more-link">Continue reading<span class="screen-reader-text"> "How my Kindle cover saved my Kindle, OR How I got robbed of my DSLR and laptop"</span></a></p>
<p>The post <a href="https://projectbee.org/blog/archive/how-my-kindle-cover-saved-my-kindle-or-how-i-got-robbed-of-my-dslr-and-laptop/">How my Kindle cover saved my Kindle, OR How I got robbed of my DSLR and laptop</a> first appeared on <a href="https://projectbee.org/blog">Code in my Bug!</a>.</p>]]></description>
										<content:encoded><![CDATA[<figure id="attachment_248" aria-describedby="caption-attachment-248" style="width: 640px" class="wp-caption aligncenter"><a href="http://www.flickr.com/photos/zizzy/4582604955/" target="_blank"><img decoding="async" class="size-full wp-image-248 " title="&quot;Scene of Crime&quot; by http://www.flickr.com/photos/zizzy/4582604955/" src="http://projectbee.org/blog/wp-content/uploads/2012/02/4582604955_f34b2202df_z.jpg" alt="&quot;Scene of Crime&quot; by http://www.flickr.com/photos/zizzy/4582604955/" width="640" height="213" srcset="https://projectbee.org/blog/wp-content/uploads/2012/02/4582604955_f34b2202df_z.jpg 640w, https://projectbee.org/blog/wp-content/uploads/2012/02/4582604955_f34b2202df_z-300x99.jpg 300w" sizes="(max-width: 640px) 100vw, 640px" /></a><figcaption id="caption-attachment-248" class="wp-caption-text">&quot;Scene of Crime&quot; by http://www.flickr.com/photos/zizzy/4582604955/</figcaption></figure>
<p>&#8216;Robbed&#8217; not in the strictest sense, but yes there was theft at my house yesterday. The lovely dudes took away my Nikon D90 along with the 18-105 lens, and Dell XPS (my lovely old wife). Yes, I&#8217;d recently ditched my wife for a super hot Macbook Air, but she still was a companion. Polygamy is amazing!</p>
<h2>The Prologue</h2>
<p>I come home from office, all hungry and tired, and find the iron gate without a lock. The first thought that hits me is that maybe my cook&#8217;s inside and has forgotten to lock the door. Sigh! If only it was true.<br />
I enter the hall, switch on the lights and find the wash basin broken in pieces and lying on the floor. A whole lot of stuff lying on my study table. Thankfully, my bookshelf seems untouched. My bike is still there. I feel hopeful. I walk with a heavy heart, but high hopes, to Bedroom #2. The camera bag is lying on floor. I pick it up and it feels lighter than ever. I&#8217;ve always wanted it to weigh a little lighter while traveling, and my wish is granted. My Nikon is gone.<br />
Then I remember my roommate&#8217;s camera pouch, which by the way looks like a camera bag unlike my camera-cum-laptop-cum-lenses backpack, and lies next to it. It&#8217;s still there. I lift it. It&#8217;s still heavy. Some joy. Some confusion.</p>
<p>Everything else seems to be in its original place, including the camera&#8217;s battery charger, and our newly washed and ironed clothes. I remember I&#8217;ve a Dell in the other bedroom. I don&#8217;t want to know, but I must. Alas and damn the human inquisitiveness.<br />
Her cooling pad is in place. Her power cord is in place. But she isn&#8217;t. She&#8217;s left me.<br />
Was it me cheating on her with an Air? No no, it can&#8217;t be. She still loved me. She loved my polygamy.</p>
<figure style="width: 640px" class="wp-caption aligncenter"><img decoding="async" title="Bittu, in the golden days :(" src="http://farm4.staticflickr.com/3163/2571423177_9bb9b4dbf3_z_d.jpg?zz=1" alt="Bittu, in the golden days :(" width="640" height="480" /><figcaption class="wp-caption-text">Bittu, in the golden days <img src="https://s.w.org/images/core/emoji/15.0.3/72x72/1f641.png" alt="🙁" class="wp-smiley" style="height: 1em; max-height: 1em;" /></figcaption></figure>
<h2>O&#8217; 3rd generation kindle-cover-with-light, Thank you!</h2>
<p>I notice my new and shiny, but slightly twisted kindle cover lying between the cooling pad and the new and shiny &#8220;Depths of the Ocean -Sushmit Sen&#8221; music CD (which by the way is as amazing as hyped). My heart sinks little more. I pick it up. It&#8217;s still heavy. It doesn&#8217;t make sense. I open the cover and there&#8217;s &#8220;Jules Verne&#8221; looking as thoughtful as ever (To non-Kindle users, Kindles have standby wallpapers). But he seems a little sad today.<br />
On further investigation, we later realize that they did indeed try to snatch the device out of the cover, and twisted it in the process, but failed. And so they left it. Apparently, they like to travel light. Why else would they leave the laptop&#8217;s power cord, or my awesome camera backpack (which also had my small HD video camera in one of the lens pouches, along with my portable HD and some Macbook Air accessories).</p>
<figure id="attachment_246" aria-describedby="caption-attachment-246" style="width: 640px" class="wp-caption aligncenter"><img loading="lazy" decoding="async" class="size-full wp-image-246" title="Kindle and its cover, twisted but safe" src="http://projectbee.org/blog/wp-content/uploads/2012/02/DSC_0010.jpg" alt="Kindle and its cover, twisted but safe" width="640" height="428" srcset="https://projectbee.org/blog/wp-content/uploads/2012/02/DSC_0010.jpg 640w, https://projectbee.org/blog/wp-content/uploads/2012/02/DSC_0010-300x200.jpg 300w" sizes="(max-width: 640px) 100vw, 640px" /><figcaption id="caption-attachment-246" class="wp-caption-text">Kindle and its cover, twisted but safe</figcaption></figure>
<h2>Oh the plunder! Oh the horror!</h2>
<p>At some point -I know not when, and for some reason -I know not what, I realize that if they&#8217;ve broken the wash basin in the hall, it is possible that they have made violent love to my other wash basin. Akin to characters who are about to die in horror movies, I open the door of my bathroom adjacent to bedroom #1. These characters in the movies know that what they discover besides the door might get them killed, but they still open the door. And so do I. Alas and damn the human inquisitiveness.</p>
<p>Lo and behold! There&#8217;s huge dirty stone lying on the floor along with the the pieces of my lovely wash basin. The basin which I&#8217;d cleaned and polished and shined just a couple of days ago. Lying on the floor, like a tired prostitute. (Not that I&#8217;d know what a tired prostitute looks like.)</p>
<p>Sadly this isn&#8217;t the end of the terror story. As my gaze rises from the floor and falls upon the walls, my emotions run an all time high. If I weren&#8217;t shocked with what I saw, I would have surely been proud of my emotions which run so fast and so high like a tide.<br />
They have taken away all the water taps and shower knobs and flush pipes and shower thingy and the cloth hanging rod thingy.<br />
And they haven&#8217;t unscrewed them. No sir!. Rather used stones to break them from the walls -an act which as we would later discover, may cost us around 20K. In the end, I do wish they&#8217;d unscrewed the components rather than screwing us like that.<br />
I move to the other bathroom. It&#8217;s confirmed, they&#8217;ve screwed us here as well. Oh yes, how can I forget the kitchen!<br />
Getting screwed at so many different locations in such a short span of time has left me tired. I want to sit down now.</p>
<figure id="attachment_244" aria-describedby="caption-attachment-244" style="width: 640px" class="wp-caption aligncenter"><img loading="lazy" decoding="async" class="size-full wp-image-244 " title="Stone that they used to break it all in the bathroom" src="http://projectbee.org/blog/wp-content/uploads/2012/02/DSC_0004.jpg" alt="Stone that they used to break it all in the bathroom" width="640" height="428" srcset="https://projectbee.org/blog/wp-content/uploads/2012/02/DSC_0004.jpg 640w, https://projectbee.org/blog/wp-content/uploads/2012/02/DSC_0004-300x200.jpg 300w" sizes="(max-width: 640px) 100vw, 640px" /><figcaption id="caption-attachment-244" class="wp-caption-text">Stone, which they used to break it all, lying in the bathroom</figcaption></figure>
<h2>12 Angry Men (or may be just 5), and their analysis</h2>
<p>So I call my roommate Abhijit, and my friend Dabbu in the meantime. Dabbu also gets his elder brother and roommate with him.<br />
It is important to note that both of these men have had theft at their previous houses. Both have lost their laptops. Yeah, same pinch. I know!</p>
<p>All the five do what any reasonable person who&#8217;s had a theft at his place does. Socialize with neighbors and police, analyze, and bitch about it.<br />
No, none of this matters and it seldom makes any difference. But you must. It&#8217;s a social custom. Ask Dr. Sheldon Cooper.</p>
<p>We talk to neighbors, call police, analyze and discuss and analyze again. The modus operandi is investigated and debated. Police guy, who is a rather soft spoken guy for a change, notes down details in his diary, sympathizes with us, and leaves.</p>
<p>Here&#8217;s how our final analysis looks like:<br />
* It could have be my roommate. After all none of his stuff was stolen<br />
* While we are at it, it may have been Dabbu. Apart from the fact that he loved my camera, he&#8217;s studied in a KV (Kendriya Vidyala), the same school where my younger brother went. And we all know how talented KV products are</p>
<figure id="attachment_245" aria-describedby="caption-attachment-245" style="width: 640px" class="wp-caption aligncenter"><img loading="lazy" decoding="async" class="size-full wp-image-245" title="Abhijit, Dabbu, and the wash basin that was" src="http://projectbee.org/blog/wp-content/uploads/2012/02/DSC_0009.jpg" alt="Abhijit, Dabbu, and the wash basin that was" width="640" height="428" srcset="https://projectbee.org/blog/wp-content/uploads/2012/02/DSC_0009.jpg 640w, https://projectbee.org/blog/wp-content/uploads/2012/02/DSC_0009-300x200.jpg 300w" sizes="(max-width: 640px) 100vw, 640px" /><figcaption id="caption-attachment-245" class="wp-caption-text">Abhijit, Dabbu, and the wash basin that was</figcaption></figure>
<h2>Reconciliation</h2>
<p>The entire post may present a jovial outlook. Part of it is forced, but mostly natural. I owe the jolly response for materialistic loss to a certain event in my life.</p>
<p>Years ago when I was in B.Tech, one fine evening my hard drive crashed. It wasn&#8217;t out of the blue. Remember the text mode Linux installations? Yes yes, fdisk and stuff. Yeah! So the hard drive crashed and I lost everything. All the songs, and the movies, and the songs, and the software, and the songs. It was the end of my life as I knew it. I crashed on my bed too.</p>
<p>As I was brooding on my cot, trying to analyze my options of data recovery, one question constantly and repeatedly came up &#8211;<em>Now what?</em><br />
The question was rather simple, and I didn&#8217;t have any answers, but it did have a profound effect on me.</p>
<p>It&#8217;s funny how we existentialists look around for answers all our lives, and how a simple question can liberate us.<br />
It&#8217;s funny how we brood over our problems, and the acceptance of lack of a solution helps us reconcile.</p>
<p>Yes I loved my Nikon D90. I have been getting better with <a href="http://www.flickr.com/photos/projectbee" target="_blank">every picture I clicked</a>. I loved when my friends smiled at the pictures I&#8217;d taken of them. I was looking forward to handing over the Dell to my brother, who&#8217;s been having problems with his laptop.<br />
But well, it can&#8217;t be anymore. If it can&#8217;t be, it won&#8217;t be. If it won&#8217;t be, what am I going to brood over?</p>
<p>As Ghalib said:</p>
<blockquote><p>Na tha kuchh toh khuda tha, kuchh na hota toh Khuda hota,<br />
Duboya mujhko hone ne, na hota main toh kya hota.</p></blockquote>
[P.S. All said and done, why did those bastards have to take the taps man. There&#8217;s no water at home. Sigh! :'( ]
<p>Update 1: Apparently, these thieves may have been addicts. It&#8217;s easier and quicker to sell off bathroom accessories.</p>
<p>Update 2: I finally managed to get an FIR filed. One the 11th day, mind you. Yeah, I know. We might be better off without a police department.</p>
Similar Posts:<ul><li><a href="https://projectbee.org/blog/archive/steve-jobs-vs-bill-gates/" rel="bookmark" title="February 17, 2007">Steve Jobs vs Bill Gates.</a></li>

<li><a href="https://projectbee.org/blog/archive/idle-nights-devils-mind/" rel="bookmark" title="April 12, 2007">Idle Nights: Devil&#8217;s Mind</a></li>

<li><a href="https://projectbee.org/blog/archive/a-program-called-3-om/" rel="bookmark" title="March 3, 2007">A program called &#34;3~&#34; (Om)</a></li>

<li><a href="https://projectbee.org/blog/archive/how-about-a-better-cheaper-macbook-air/" rel="bookmark" title="January 31, 2008">How about a Better &#38; Cheaper MacBook Air!</a></li>

<li><a href="https://projectbee.org/blog/archive/bittus-back/" rel="bookmark" title="June 12, 2008">Bittu&#8217;s back <img src="https://s.w.org/images/core/emoji/15.0.3/72x72/1f642.png" alt="🙂" class="wp-smiley" style="height: 1em; max-height: 1em;" /></a></li>
</ul><!-- Similar Posts took 270.583 ms --><p>The post <a href="https://projectbee.org/blog/archive/how-my-kindle-cover-saved-my-kindle-or-how-i-got-robbed-of-my-dslr-and-laptop/">How my Kindle cover saved my Kindle, OR How I got robbed of my DSLR and laptop</a> first appeared on <a href="https://projectbee.org/blog">Code in my Bug!</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://projectbee.org/blog/archive/how-my-kindle-cover-saved-my-kindle-or-how-i-got-robbed-of-my-dslr-and-laptop/feed/</wfw:commentRss>
			<slash:comments>15</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">241</post-id>	</item>
		<item>
		<title>Download PHP tidy extension for Mac OS X</title>
		<link>https://projectbee.org/blog/archive/download-php-tidy-extension-for-mac-os-x/</link>
					<comments>https://projectbee.org/blog/archive/download-php-tidy-extension-for-mac-os-x/#comments</comments>
		
		<dc:creator><![CDATA[Bipin Upadhyay]]></dc:creator>
		<pubDate>Mon, 23 Jan 2012 18:47:42 +0000</pubDate>
				<category><![CDATA[code]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[programming]]></category>
		<guid isPermaLink="false">http://projectbee.org/blog/?p=227</guid>

					<description><![CDATA[<p>Update: You can download the file I&#8217;ve hosted and it may work for you, but I&#8217;ve come to realize that it&#8217;s better to compile the package hosted here http://php-osx.liip.ch/ You will need to download and install Command Line Tools for OS X, and then setup proper symlinks after compiling PHP. Be assured that you will &#8230; </p>
<p class="link-more"><a href="https://projectbee.org/blog/archive/download-php-tidy-extension-for-mac-os-x/" class="more-link">Continue reading<span class="screen-reader-text"> "Download PHP tidy extension for Mac OS X"</span></a></p>
<p>The post <a href="https://projectbee.org/blog/archive/download-php-tidy-extension-for-mac-os-x/">Download PHP tidy extension for Mac OS X</a> first appeared on <a href="https://projectbee.org/blog">Code in my Bug!</a>.</p>]]></description>
										<content:encoded><![CDATA[<p>Update: You can download the file I&#8217;ve hosted and it may work for you, but I&#8217;ve come to realize that it&#8217;s better to compile the package hosted here http://php-osx.liip.ch/</p>
<p>You will need to download and install Command Line Tools for OS X, and then setup proper symlinks after compiling PHP. Be assured that you will have almost all the php extensions, you will possibly need.<br />
&#8212;-</p>
<p>Yeah, I bought a Macbook Air <img src="https://s.w.org/images/core/emoji/15.0.3/72x72/1f642.png" alt="🙂" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>
<p>I cannot deny that it&#8217;s an awesome device and all that, but I&#8217;m still getting used to a new OS. The major work&#8217;s rediscovering the right tools and, of course, learning OS X&#8217;s keyboard shortcuts. Thankfully, it seems like a nice OS and all the work seems worth it.</p>
<p>&nbsp;</p>
<figure id="attachment_229" aria-describedby="caption-attachment-229" style="width: 345px" class="wp-caption alignleft"><a href="http://www.flickr.com/photos/mind-hacker/2726423319/lightbox/" target="_blank"><img loading="lazy" decoding="async" class=" wp-image-229" style="margin-right: 18px;" title="by http://www.flickr.com/photos/mind-hacker/2726423319/lightbox/" src="http://projectbee.org/blog/wp-content/uploads/2012/01/2726423319_3034b606d1.jpg" alt="Friggin' spinning wheel" width="345" height="392" srcset="https://projectbee.org/blog/wp-content/uploads/2012/01/2726423319_3034b606d1.jpg 441w, https://projectbee.org/blog/wp-content/uploads/2012/01/2726423319_3034b606d1-264x300.jpg 264w" sizes="(max-width: 345px) 100vw, 345px" /></a><figcaption id="caption-attachment-229" class="wp-caption-text">by http://www.flickr.com/photos/mind-hacker/2726423319/lightbox/</figcaption></figure>
<p>That said, I now have a technology startup and cannot afford to just keep on &#8216;learning&#8217;. And that&#8217;s why small problems become big issues. All I needed was <a href="http://pecl.php.net/package/tidy" target="_blank"><strong>PHP-tidy</strong></a> to get on with life. Little did I know that it&#8217;d take up half of my day. So I&#8217;m putting it up here for people to download.</p>
<p>As most people, I got <a href="http://www.mamp.info/en/" target="_blank">MAMP</a> to avoid unnecessary complications and get on with &#8220;the code that matters to me&#8221;. MAMP is pre-packaged Apache-MySQL-PHP stack for Mac. My beef with the project is that they seem to be focusing on things that don&#8217;t really matter a lot to the target audience, like shiny-gui interface to configure document root, specify ports etc.. However, they seem to ignore few major bugs which seem to date around 2009.</p>
<ol>
<li>They do not package tidy extension, even though there have been requests in the forum.</li>
<li>Their &#8220;pear.conf&#8221; configuration file&#8217;s broken, due to which neither pear nor pecl binary works, so tidy installation using pecl didn&#8217;t work either. The fix is a simple edit to the php_dir param though.</li>
<li>Sadly, pecl still fails due to some issue with phpize.</li>
<li>One solution is to compile PHP with tidy. However, <a href="http://lucasforge.bmeme.com/2010/07/how-enable-the-php-tidy-extension-for-mamp/" target="_blank">there apparently is (or was) some bug with tidy</a>, so I decided to avoid it and look around a little more.</li>
<li>Then, I found <a href="http://allensservices.com/php-tidy-on-mamp" target="_blank">this post</a> that recommends using pre-compiled php-tidy binary that comes bundled along with Zend Studio IDE. I decided to check it out, and thankfully, it worked.</li>
</ol>
<p>Sigh! Such a crazy way to solve a simple problem.</p>
<p>Anyways, since tidy is an open source project, I figured it may not be illegal to put the binary up for download. (Zend Studio is NOT free.)</p>
<h3>You may <a href="https://dl.dropbox.com/u/14915270/tidy.so">download php tidy for OS X (tested on Lion)  from my public Dropbox folder</a>.</h3>
Similar Posts:<ul><li><a href="https://projectbee.org/blog/archive/grabbing-video-from-youtube/" rel="bookmark" title="January 6, 2007">Grabbing Video from Youtube.</a></li>

<li><a href="https://projectbee.org/blog/archive/apache-mysqlphp-installation-configuration-tutorial-for-beginners/" rel="bookmark" title="February 25, 2006">Apache-MySQLPHP Installation &#038; Configuration Tutorial for Beginners <img src="https://s.w.org/images/core/emoji/15.0.3/72x72/1f642.png" alt="🙂" class="wp-smiley" style="height: 1em; max-height: 1em;" /></a></li>

<li><a href="https://projectbee.org/blog/archive/drive-by-download-where-network-security-meets-webappsec/" rel="bookmark" title="November 2, 2007">Drive-by Download: Where Network Security Meets WebAppSec</a></li>

<li><a href="https://projectbee.org/blog/archive/rediffmail-bug-anyone-interested/" rel="bookmark" title="May 19, 2007">Rediffmail Bug. Anyone Interested?</a></li>

<li><a href="https://projectbee.org/blog/archive/open-javafx-an-alternative-to-ajax/" rel="bookmark" title="May 9, 2007">Open JavaFX, an alternative to AJAX?</a></li>
</ul><!-- Similar Posts took 168.460 ms --><p>The post <a href="https://projectbee.org/blog/archive/download-php-tidy-extension-for-mac-os-x/">Download PHP tidy extension for Mac OS X</a> first appeared on <a href="https://projectbee.org/blog">Code in my Bug!</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://projectbee.org/blog/archive/download-php-tidy-extension-for-mac-os-x/feed/</wfw:commentRss>
			<slash:comments>10</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">227</post-id>	</item>
		<item>
		<title>HTTP protocol and other stuff that power the web</title>
		<link>https://projectbee.org/blog/archive/http-protocol/</link>
					<comments>https://projectbee.org/blog/archive/http-protocol/#comments</comments>
		
		<dc:creator><![CDATA[Bipin Upadhyay]]></dc:creator>
		<pubDate>Thu, 15 Dec 2011 10:38:02 +0000</pubDate>
				<category><![CDATA[programming]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[webappsec]]></category>
		<guid isPermaLink="false">http://projectbee.org/blog/?p=212</guid>

					<description><![CDATA[<p>Here&#8217;s a presentation that I&#8217;d delivered at a null Mumbai Chapter meet. It&#8217;d received pretty good response, so putting it up here as well Similar Posts:SecurityCamp is here, where are you? Reviving OWASP Bangalore Chapter The Web is Broken OWASP AppSec Conf Delhi &#8211; Day 1 SecurCamp and back.</p>
<p>The post <a href="https://projectbee.org/blog/archive/http-protocol/">HTTP protocol and other stuff that power the web</a> first appeared on <a href="https://projectbee.org/blog">Code in my Bug!</a>.</p>]]></description>
										<content:encoded><![CDATA[<p>Here&#8217;s a presentation that I&#8217;d delivered at a null Mumbai Chapter meet. It&#8217;d received pretty good response, so putting it up here as well</p>
<iframe src='https://www.slideshare.net/slideshow/embed_code/5077640' width='525' height='430' sandbox="allow-popups allow-scripts allow-same-origin allow-presentation" allowfullscreen webkitallowfullscreen mozallowfullscreen></iframe>
Similar Posts:<ul><li><a href="https://projectbee.org/blog/archive/securitycamp-is-here-where-are-you/" rel="bookmark" title="June 25, 2008">SecurityCamp is here, where are you?</a></li>

<li><a href="https://projectbee.org/blog/archive/reviving-owasp-bangalore-chapter/" rel="bookmark" title="June 29, 2008">Reviving OWASP Bangalore Chapter</a></li>

<li><a href="https://projectbee.org/blog/archive/the-web-is-broken/" rel="bookmark" title="October 12, 2007">The Web is Broken</a></li>

<li><a href="https://projectbee.org/blog/archive/owasp-appsec-conf-delhi-day-1/" rel="bookmark" title="August 21, 2008">OWASP AppSec Conf Delhi &#8211; Day 1</a></li>

<li><a href="https://projectbee.org/blog/archive/securcamp-and-back/" rel="bookmark" title="July 12, 2008">SecurCamp and back.</a></li>
</ul><!-- Similar Posts took 174.181 ms --><p>The post <a href="https://projectbee.org/blog/archive/http-protocol/">HTTP protocol and other stuff that power the web</a> first appeared on <a href="https://projectbee.org/blog">Code in my Bug!</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://projectbee.org/blog/archive/http-protocol/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">212</post-id>	</item>
		<item>
		<title>Life, so far&#8230;</title>
		<link>https://projectbee.org/blog/archive/life-so-far/</link>
					<comments>https://projectbee.org/blog/archive/life-so-far/#comments</comments>
		
		<dc:creator><![CDATA[Bipin Upadhyay]]></dc:creator>
		<pubDate>Mon, 12 Dec 2011 21:39:12 +0000</pubDate>
				<category><![CDATA[life]]></category>
		<guid isPermaLink="false">http://projectbee.org/blog/?p=199</guid>

					<description><![CDATA[<p>Apparently the last time I wrote something here was on Jan&#8217;26th Mar&#8217; 23rd, 2009 -almost 3 years ago. Obviously a lot&#8217;s happened and much has changed in life -or may be nothing&#8217;s changed. I recall lines from a Gulzar saab&#8217;s poem: Pal bhar mein sab kuchh badal gaya, Aur kuchh bhi nahi badla. Jo badla &#8230; </p>
<p class="link-more"><a href="https://projectbee.org/blog/archive/life-so-far/" class="more-link">Continue reading<span class="screen-reader-text"> "Life, so far&#8230;"</span></a></p>
<p>The post <a href="https://projectbee.org/blog/archive/life-so-far/">Life, so far…</a> first appeared on <a href="https://projectbee.org/blog">Code in my Bug!</a>.</p>]]></description>
										<content:encoded><![CDATA[<p>Apparently the last time I wrote something here was on <del>Jan&#8217;26th</del> Mar&#8217; 23rd, 2009 -almost 3 years ago. Obviously a lot&#8217;s happened and much has changed in life -or may be nothing&#8217;s changed. I recall lines from a Gulzar saab&#8217;s poem:</p>
<p><em>Pal bhar mein sab kuchh badal gaya,<br />
Aur kuchh bhi nahi badla.<br />
Jo badla tha, woh toh guzar gaya</em></p>
<figure style="width: 500px" class="wp-caption alignnone"><a href="https://secure.flickr.com/photos/jenson-lee/4401334015/" target="_blank"><img loading="lazy" decoding="async" class=" " title="Life" src="https://farm5.staticflickr.com/4049/4401334015_1135f82487_d.jpg" alt="Life" width="500" height="333" /></a><figcaption class="wp-caption-text">by Jen Son https://secure.flickr.com/photos/jenson-lee/4401334015/</figcaption></figure>
<p>In any case, here&#8217;s a few of my experiments I can remember:</p>
<ul>
<li>Left Satyam to join Directi and moved to Bombay  from Bangalore</li>
<li>Satyam went nearly broke and bankrupt, thanks to Mr. Raju, and the overly emotional and messed up capitalist system</li>
<li>Worked on the despicable, and yet vital, online advertisement and traffic monetization business</li>
<li>Learned about the awesome algorithms that go behind powering a beautiful, but annoying, parked page</li>
<li>Learned the art of writing Firefox addons and wrote a couple interesting ones (none open source, sorry)</li>
<li>Joined <a href="http://null.co.in/" target="_blank">null security group&#8217;s</a> core team and played the role of Mumbai chapter&#8217;s moderator</li>
<li>Did something I wanted to do for a long time -an experiment of living alone (for an year). Had the painful realization that human touch is an underrated indulgence.</li>
<li>Met a lot of crazy (and) talented people, and made some friends</li>
<li><a href="https://secure.flickr.com/photos/projectbee/4368857404/" target="_blank">Won an Olympus E450 in a photography contest</a> (Yay!). Sold both cameras and bought a Nikon D90</li>
<li>Became the proud owner of a 3rd generation Amazon Kindle B-)</li>
<li>Became an entrepreneur&#8230; eh, no, not entrepreneur. Rather a startup-businessman. Yeah, better!</li>
<li>Moved (back) to Bhubaneswar to work full time on the product</li>
<li>Volunteered for<a href="http://spicmacay.com/" target="_blank"> SPICMCAY&#8217;s</a> 26th National Convention and worked on the first ever LIVE streaming of performances</li>
<li>Launched two products, including <a href="http://entranceforms.com/?prjb" target="_blank">EntranceForms.com</a></li>
<li>Working on a third product -sort of derivative and related, but the one that&#8217;s got me pretty excited</li>
</ul>
<p>Like any startup guy would tell you, every dawn starts with a bunch of promises and hopes, and you&#8217;d be super lucky if even one of them materializes by sundown. For now, all  can say is life&#8217;s frustrating, irritating, brutal, lonely, rewarding, and fun -in short, <strong>fulfilling</strong>.</p>
<p>Oh by the way, I&#8217;m going to conduct another interesting experiment <a href="https://johnnyjacob.wordpress.com/" target="_blank">with a fellow nerd</a> &#8211;<strong>A Road Trip</strong> <img src="https://s.w.org/images/core/emoji/15.0.3/72x72/1f642.png" alt="🙂" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>
Similar Posts:<ul><li><a href="https://projectbee.org/blog/archive/how-my-kindle-cover-saved-my-kindle-or-how-i-got-robbed-of-my-dslr-and-laptop/" rel="bookmark" title="February 17, 2012">How my Kindle cover saved my Kindle, OR How I got robbed of my DSLR and laptop</a></li>

<li><a href="https://projectbee.org/blog/archive/securcamp-and-back/" rel="bookmark" title="July 12, 2008">SecurCamp and back.</a></li>

<li><a href="https://projectbee.org/blog/archive/orkut-latest-xss-worm-and-what-it-means-for-indian-orkuteers/" rel="bookmark" title="December 20, 2007">Orkut Latest XSS Worm; and what it means for Indian Orkuteers</a></li>

<li><a href="https://projectbee.org/blog/archive/a-phish-floating-in-google-survey/" rel="bookmark" title="January 29, 2008">A Phish floating in Google Survey!</a></li>

<li><a href="https://projectbee.org/blog/archive/idle-nights-devils-mind/" rel="bookmark" title="April 12, 2007">Idle Nights: Devil&#8217;s Mind</a></li>
</ul><!-- Similar Posts took 135.759 ms --><p>The post <a href="https://projectbee.org/blog/archive/life-so-far/">Life, so far…</a> first appeared on <a href="https://projectbee.org/blog">Code in my Bug!</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://projectbee.org/blog/archive/life-so-far/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">199</post-id>	</item>
		<item>
		<title>ICICI Bank&#8217;s stupid &#8220;feature&#8221; introduces privacy concerns</title>
		<link>https://projectbee.org/blog/archive/icici-banks-stupid-feature-introduces-privacy-concerns/</link>
					<comments>https://projectbee.org/blog/archive/icici-banks-stupid-feature-introduces-privacy-concerns/#comments</comments>
		
		<dc:creator><![CDATA[Bipin Upadhyay]]></dc:creator>
		<pubDate>Mon, 23 Mar 2009 05:42:49 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<guid isPermaLink="false">http://projectbee.org/blog/?p=168</guid>

					<description><![CDATA[<p>A couple of days back, I received an sms from ICICI bank informing me that I can view my credit card statement without logging into my account. As you may expect, it blew me away. It still beats me why someone would like to access her/his credit card statement without any password. No Privacy :'( &#8230; </p>
<p class="link-more"><a href="https://projectbee.org/blog/archive/icici-banks-stupid-feature-introduces-privacy-concerns/" class="more-link">Continue reading<span class="screen-reader-text"> "ICICI Bank&#8217;s stupid &#8220;feature&#8221; introduces privacy concerns"</span></a></p>
<p>The post <a href="https://projectbee.org/blog/archive/icici-banks-stupid-feature-introduces-privacy-concerns/">ICICI Bank’s stupid “feature” introduces privacy concerns</a> first appeared on <a href="https://projectbee.org/blog">Code in my Bug!</a>.</p>]]></description>
										<content:encoded><![CDATA[<p>A couple of days back, I received an sms from ICICI bank informing me that I can view my credit card statement without logging into my account. As you may expect, it blew me away. It still beats me why someone would like to access her/his credit card statement without any password.</p>
<p style="text-align: center;"><img loading="lazy" decoding="async" class="aligncenter" style="border: 1px solid black;" title="No Privacy - http://www.flickr.com/photos/paolocalvi91/2536503557/" src="https://projectbee.s3.amazonaws.com/img/Privacy.jpg" alt="No Privacy " width="470" height="315" /></p>
<p style="text-align: center;"><strong>No Privacy :'(</strong></p>
<p>To be fair to ICICI, this doesn&#8217;t mean that one can simply access the information using the credit card number. It does put three fields forward.</p>
<p><em>Field 1-</em> <strong>Card Number</strong>: The problem here is that most of the swipe machines that you come across, at least in India, will print your complete card number on the receipts. One copy is left with merchant where you shop. Moreover, in all probability, you keep you credit card in your purse which is easily accessible to your parents, wi[fe|ves], girl|boy-friend[s], and even friends. Hell, the waiter could jot it down. So let&#8217;s face it, it&#8217;s not really a secret anymore in the current scenario.</p>
<p><em>Field 2-</em> <strong>Date Of Birth</strong>: Doh!</p>
<p><em>Field 3-</em> <strong>Card valid <em>from</em></strong>: Now this one might sound a bit tricky, considering that only the <em>expiry</em> date of your credit card is specified on the receipts. However, please note that:<br />
<strong>(1)</strong> this date can be noticed by a cursory glance on the card,<br />
<strong>(2)</strong> the <em><strong>from </strong></em>and <em><strong>end </strong></em>months alomst always are the same, i.e., if your card expiry is <em><strong>05/2015</strong></em>, the start month, in all it&#8217;s probabilty will be <em><strong>05 </strong></em>(May). Just try a few combinations, and bang.</p>
<p>&#8230;and if all this sounds too complex and useless, consider that all of the above information is easily accessible to your family members and close friends. I am not sure about you, but I prefer a certain degree of privacy.</p>
<p>&#8230;and if the cynic in you is still not convinced, consider this &#8211;the total effort of keystrokes and clicks combing your <em>card number+date of birth (via a date picker)+card valid from </em>will most probably exceed the keystrokes for <em>ICICI userid+password</em>. Unless of course, you are paranoid who writes a poem in <a href="http://en.wikipedia.org/wiki/Leet#Orthography">1337</a> for the password. <img src="https://s.w.org/images/core/emoji/15.0.3/72x72/1f609.png" alt="😉" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>
<p>So although there could be a debate on the level of privacy concern that it raises, there can&#8217;t be any debate on the sheer stupidity of this <em><strong>feature. Uh!</strong></em></p>
Similar Posts:<ul><li><a href="https://projectbee.org/blog/archive/colukabki-aol-msn-yahoo-red-cross-aaah-commn-gimme-a-break/" rel="bookmark" title="January 28, 2006">&#34;COLUKABKI &#8211; AOL &#8211; MSN &#8211; YAHOO &#8211; RED CROSS&#34;&#8230;.. aaah Comm&#8217;n Gimme a break.</a></li>

<li><a href="https://projectbee.org/blog/archive/bittus-back/" rel="bookmark" title="June 12, 2008">Bittu&#8217;s back <img src="https://s.w.org/images/core/emoji/15.0.3/72x72/1f642.png" alt="🙂" class="wp-smiley" style="height: 1em; max-height: 1em;" /></a></li>

<li><a href="https://projectbee.org/blog/archive/owasp-appsec-conf-delhi-day-1/" rel="bookmark" title="August 21, 2008">OWASP AppSec Conf Delhi &#8211; Day 1</a></li>
</ul><!-- Similar Posts took 3.213 ms --><p>The post <a href="https://projectbee.org/blog/archive/icici-banks-stupid-feature-introduces-privacy-concerns/">ICICI Bank’s stupid “feature” introduces privacy concerns</a> first appeared on <a href="https://projectbee.org/blog">Code in my Bug!</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://projectbee.org/blog/archive/icici-banks-stupid-feature-introduces-privacy-concerns/feed/</wfw:commentRss>
			<slash:comments>3</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">168</post-id>	</item>
		<item>
		<title>[OT] The Rant of a &#8220;Republic&#8221; Indian Hacker</title>
		<link>https://projectbee.org/blog/archive/ot-the-rant-of-a-republic-indian-hacker/</link>
					<comments>https://projectbee.org/blog/archive/ot-the-rant-of-a-republic-indian-hacker/#respond</comments>
		
		<dc:creator><![CDATA[Bipin Upadhyay]]></dc:creator>
		<pubDate>Mon, 26 Jan 2009 17:55:24 +0000</pubDate>
				<category><![CDATA[bug]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[hackers]]></category>
		<category><![CDATA[india]]></category>
		<category><![CDATA[irony]]></category>
		<category><![CDATA[life]]></category>
		<category><![CDATA[off-topic]]></category>
		<category><![CDATA[politics]]></category>
		<category><![CDATA[rant]]></category>
		<category><![CDATA[corruption]]></category>
		<category><![CDATA[indian constitution]]></category>
		<category><![CDATA[parliament]]></category>
		<category><![CDATA[politicians]]></category>
		<category><![CDATA[reality]]></category>
		<guid isPermaLink="false">http://projectbee.org/blog/?p=162</guid>

					<description><![CDATA[<p>For me, the very foundations of Hacker-dom is based on three very fundamental steps: 1. Grasp the fundamentals 2. Question everything 3. Question everything, without being a fanatic As ironical (or rather illuminating, depending on the way you see) it may sound; as I start my very first step to understand the fundamentals of Indian &#8230; </p>
<p class="link-more"><a href="https://projectbee.org/blog/archive/ot-the-rant-of-a-republic-indian-hacker/" class="more-link">Continue reading<span class="screen-reader-text"> "[OT] The Rant of a &#8220;Republic&#8221; Indian Hacker"</span></a></p>
<p>The post <a href="https://projectbee.org/blog/archive/ot-the-rant-of-a-republic-indian-hacker/">[OT] The Rant of a “Republic” Indian Hacker</a> first appeared on <a href="https://projectbee.org/blog">Code in my Bug!</a>.</p>]]></description>
										<content:encoded><![CDATA[<p>For me, the very foundations of Hacker-dom is based on three very fundamental steps:<br />
1. Grasp the fundamentals<br />
2. Question everything<br />
3. Question everything, without being a fanatic</p>
<p><img loading="lazy" decoding="async" class="alignnone" title="courtesy http://www.daylife.com/photo/07ox1R804F80k" src="https://projectbee.s3.amazonaws.com/img/PaintedKid.jpg" alt="" width="566" height="322" /></p>
<p>As ironical (or rather illuminating, depending on the way you see) it may sound; as I start my very first step to understand the fundamentals of Indian constitution on the <strong>59th Republic Day</strong>, I also start to learn to question it. It&#8217;s disturbing to learn that the borderline difference between pretending to be a democratic nation, and actually being one, has already depleted. What pains me more is that we &#8220;celebrate&#8221; the Republic day in the form of a &#8220;holiday&#8221;, without actually caring about being sovereign and republic.</p>
<p>I am starting to get fed up of getting used to all the abnormalities in the normal flow of life.</p>
Similar Posts:<ul><li><a href="https://projectbee.org/blog/archive/slashdot-uh/" rel="bookmark" title="May 21, 2008">Slashdot, uh! <img src="https://s.w.org/images/core/emoji/15.0.3/72x72/1f610.png" alt="😐" class="wp-smiley" style="height: 1em; max-height: 1em;" /></a></li>

<li><a href="https://projectbee.org/blog/archive/zone-h-deafced-by-saudi-hackers/" rel="bookmark" title="January 23, 2007">Zone-H Deafced by Saudi Hackers.</a></li>

<li><a href="https://projectbee.org/blog/archive/a-new-home-for-us/" rel="bookmark" title="May 6, 2008">A new home for us <img src="https://s.w.org/images/core/emoji/15.0.3/72x72/1f642.png" alt="🙂" class="wp-smiley" style="height: 1em; max-height: 1em;" /></a></li>

<li><a href="https://projectbee.org/blog/archive/orkut-latest-xss-worm-and-what-it-means-for-indian-orkuteers/" rel="bookmark" title="December 20, 2007">Orkut Latest XSS Worm; and what it means for Indian Orkuteers</a></li>

<li><a href="https://projectbee.org/blog/archive/apache-headache-no-listening-sockets-available/" rel="bookmark" title="August 8, 2007">Apache Headache: &#8220;no listening sockets available&#8221;</a></li>
</ul><!-- Similar Posts took 304.252 ms --><p>The post <a href="https://projectbee.org/blog/archive/ot-the-rant-of-a-republic-indian-hacker/">[OT] The Rant of a “Republic” Indian Hacker</a> first appeared on <a href="https://projectbee.org/blog">Code in my Bug!</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://projectbee.org/blog/archive/ot-the-rant-of-a-republic-indian-hacker/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">162</post-id>	</item>
		<item>
		<title>[How To] Implementing Shindig.</title>
		<link>https://projectbee.org/blog/archive/how-to-implementing-shindig/</link>
					<comments>https://projectbee.org/blog/archive/how-to-implementing-shindig/#comments</comments>
		
		<dc:creator><![CDATA[Bipin Upadhyay]]></dc:creator>
		<pubDate>Tue, 30 Sep 2008 05:07:03 +0000</pubDate>
				<category><![CDATA[apache]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[opensocial]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[presentation]]></category>
		<category><![CDATA[bcb7]]></category>
		<category><![CDATA[phpcamp]]></category>
		<category><![CDATA[phpcamppune08]]></category>
		<category><![CDATA[ppt]]></category>
		<category><![CDATA[shindig]]></category>
		<guid isPermaLink="false">http://projectbee.org/blog/?p=146</guid>

					<description><![CDATA[<p>I should have written an article/tutorial on how to implement/use Shindig to convert your SNS into and OpenSocial compliant SNS. Time, however, has prevented me from doing it so far. May be sometime later. For now, you can have a look at my presentation on the same topic. I had presented it at Barcamp Bangalore &#8230; </p>
<p class="link-more"><a href="https://projectbee.org/blog/archive/how-to-implementing-shindig/" class="more-link">Continue reading<span class="screen-reader-text"> "[How To] Implementing Shindig."</span></a></p>
<p>The post <a href="https://projectbee.org/blog/archive/how-to-implementing-shindig/">[How To] Implementing Shindig.</a> first appeared on <a href="https://projectbee.org/blog">Code in my Bug!</a>.</p>]]></description>
										<content:encoded><![CDATA[<p>I should have written an article/tutorial on how to implement/use Shindig to convert your SNS into and OpenSocial compliant SNS. Time, however, has prevented me from doing it so far. May be sometime later.</p>
<p>For now, you can have a look at my presentation on the same topic. I had presented it at Barcamp Bangalore 7, and PHPCamp Pune. <strong>It was recommended by Dan Peterson, Google, on the Shindig developer&#8217;s mailing list. </strong><img src="https://s.w.org/images/core/emoji/15.0.3/72x72/1f642.png" alt="🙂" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>
<p>For those who don&#8217;t have an idea what I am talking about; I have been (officially) working on OpenSocial for quite sometime. OpenSocial is a specification developed by giants like Google, MySpace, Ning, etc. to provide a common platform (API) for social app developers. <a href="http://incubator.apache.org/shindig/">Shindig, an Apache incubator project,</a> is what can help your site become OpenSocial compliant.</p>
<p><iframe loading="lazy" src="//www.slideshare.net/slideshow/embed_code/616171" width="597" height="486" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" style="border:1px solid #CCC; border-width:1px; margin-bottom:5px; max-width: 100%;" allowfullscreen> </iframe> </p>
<div style="margin-bottom:5px"> <strong> <a href="https://www.slideshare.net/bipin/phpcampshindig-an-opensocial-container-presentation" title="[Phpcamp]Shindig An OpenSocial container" target="_blank">[Phpcamp]Shindig An OpenSocial container</a> </strong> from <strong><a href="http://www.slideshare.net/bipin" target="_blank">Bipin Upadhyay</a></strong> </div>
<p>By the way, I am referring to the <a href="http://en.wikipedia.org/wiki/Six_degrees_of_separation"><strong>Six degrees of Separation</strong></a> in the initial slides. <img src="https://s.w.org/images/core/emoji/15.0.3/72x72/1f642.png" alt="🙂" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>
Similar Posts:<ul><li><a href="https://projectbee.org/blog/archive/the-web-is-broken/" rel="bookmark" title="October 12, 2007">The Web is Broken</a></li>

<li><a href="https://projectbee.org/blog/archive/google-lost-me/" rel="bookmark" title="June 17, 2007">Google Lost Me!</a></li>

<li><a href="https://projectbee.org/blog/archive/google-bomb-update-diffused/" rel="bookmark" title="January 22, 2007">Google Bomb! [Update: Diffused]</a></li>

<li><a href="https://projectbee.org/blog/archive/vista-3-exclamations-is-here-why/" rel="bookmark" title="February 19, 2007">Vista!!! (3 Exclamations.) is here? (Why :-/)</a></li>

<li><a href="https://projectbee.org/blog/archive/slashdot-uh/" rel="bookmark" title="May 21, 2008">Slashdot, uh! <img src="https://s.w.org/images/core/emoji/15.0.3/72x72/1f610.png" alt="😐" class="wp-smiley" style="height: 1em; max-height: 1em;" /></a></li>
</ul><!-- Similar Posts took 150.186 ms --><p>The post <a href="https://projectbee.org/blog/archive/how-to-implementing-shindig/">[How To] Implementing Shindig.</a> first appeared on <a href="https://projectbee.org/blog">Code in my Bug!</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://projectbee.org/blog/archive/how-to-implementing-shindig/feed/</wfw:commentRss>
			<slash:comments>3</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">146</post-id>	</item>
		<item>
		<title>OWASP AppSec Conf Delhi &#8211; Day 2; and more</title>
		<link>https://projectbee.org/blog/archive/owasp-appsec-conf-delhi-day-2-and-more/</link>
					<comments>https://projectbee.org/blog/archive/owasp-appsec-conf-delhi-day-2-and-more/#comments</comments>
		
		<dc:creator><![CDATA[Bipin Upadhyay]]></dc:creator>
		<pubDate>Wed, 03 Sep 2008 18:37:45 +0000</pubDate>
				<category><![CDATA[education]]></category>
		<category><![CDATA[hackers]]></category>
		<category><![CDATA[life]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[webappsec]]></category>
		<category><![CDATA[conference]]></category>
		<category><![CDATA[delhi]]></category>
		<category><![CDATA[owasp]]></category>
		<category><![CDATA[owaspbangalore]]></category>
		<category><![CDATA[owaspdelhi]]></category>
		<category><![CDATA[travel]]></category>
		<guid isPermaLink="false">http://projectbee.org/blog/?p=130</guid>

					<description><![CDATA[<p>The pictures of Day 2 are here. The second day consisted of 6 workshops &#8211; 3 before lunch and 3 after. I was confused on choosing between Sheeraj Shah and Mano Paul&#8217;s workshops during the first half; and Jason Li&#8217;s talk on &#8220;Web 2.0  Security&#8221; and &#8220;Secure Code Review&#8221; workshop (originally by Dinis Cruz, but &#8230; </p>
<p class="link-more"><a href="https://projectbee.org/blog/archive/owasp-appsec-conf-delhi-day-2-and-more/" class="more-link">Continue reading<span class="screen-reader-text"> "OWASP AppSec Conf Delhi &#8211; Day 2; and more"</span></a></p>
<p>The post <a href="https://projectbee.org/blog/archive/owasp-appsec-conf-delhi-day-2-and-more/">OWASP AppSec Conf Delhi – Day 2; and more</a> first appeared on <a href="https://projectbee.org/blog">Code in my Bug!</a>.</p>]]></description>
										<content:encoded><![CDATA[<p><em><strong>The <a href="http://picasaweb.google.com/muxical.geek/OWASPAppSecConfDelhiAug08Day2">pictures of Day 2 are here</a>.</strong></em></p>
<p>The second day consisted of <a href="http://www.owasp.org/index.php/OWASP_AppSec_India_Conference_2008#Day_Two_.5BTrainings.2FWorkshops.5D:__Thursday_21st_August.2C_2008">6 workshops</a> &#8211; 3 before lunch and 3 after. I was confused on choosing between Sheeraj Shah and Mano Paul&#8217;s workshops during the first half; and Jason Li&#8217;s talk on &#8220;Web 2.0  Security&#8221; and &#8220;Secure Code Review&#8221; workshop (originally by Dinis Cruz, but conducted by Gaurav Kumar of Microsoft) on the second half.</p>
<p style="text-align: center;"><img loading="lazy" decoding="async" class="aligncenter" title="Threat Modelling - Mano Paul" src="https://projectbee.s3.amazonaws.com/img/ManpPaul.jpg" alt="Threat Modelling - Mano Paul" width="565" height="359" /></p>
<p style="text-align: center;"><strong>Mano Paul</strong></p>
<p>Choosing <strong>Mano Paul&#8217;s</strong> Workshop on <strong>Threat Modelling</strong> was relatively easier because I am trying to push in Threat Modeling in my company. However, the disappointment of missing Sheeraj&#8217;s talk was no less. Although, I must confess Mano Paul is one heck of a presenter. <em>I guess experience always count.</em></p>
<p style="text-align: center;"><img loading="lazy" decoding="async" class="aligncenter" title="Code Review - Gaurav Kumar" src="https://projectbee.s3.amazonaws.com/img/GauravKumar.jpg" alt="Code Review - Gaurav Kumar" width="565" height="384" /></p>
<p style="text-align: center;"><strong>Gaurav Kumar</strong></p>
<p>The decision for the second half was pretty tough. I had finally chosen <strong>Secure Code Review</strong> talk over Jason Li&#8217;s talk, because I&#8217;ve a personal interest in Code Review; added by the fact that the workshop was to be conducted by <strong>Dinis Cruz</strong>. Since we had to pre-select the talks, there was no scope to change it later. Needless to say, I was a bit disappointed initially. However, I must also mention that I don&#8217;t regret attending it. It was conducted by <strong>Gaurav Kumar</strong>, Ace Team, Microsoft. The best part about him, apart from the fact that he knows his stuff, is that he took all the M$ jokes sportingly :).</p>
<p style="text-align: center;"><img loading="lazy" decoding="async" class="aligncenter" title="Bipin with Walter and Jordan" src="https://projectbee.s3.amazonaws.com/img/Bipin-Walter-Jordan.jpg" alt="Bipin with Walter and Jordan" width="565" height="430" /></p>
<p style="text-align: center;"><strong>Bipin with Walter and Jordan</strong></p>
<p>I also got to meet <strong>Jordan Forssman </strong>(Armorize) and <strong>Walter Tsai </strong>(CTO, Armorize), although I regret not being able to spend enough time and talk some Geeky stuff. Oh and yes, Walter gifted me and Amit the <em>31337 </em>Armorize T-Shirts :D. I also got to meet a couple of more like minded people, though very briefly. I couldn&#8217;t share cards with all of them. Today Lava (whom I met during Gaurav&#8217;s workshop), contacted me today via this blog. Feel greats to be in touch with fellow geeks and to be able to share the geekiness. <img src="https://s.w.org/images/core/emoji/15.0.3/72x72/1f609.png" alt="😉" class="wp-smiley" style="height: 1em; max-height: 1em;" /> I&#8217;d like to be in touch with others too. Please feel free to  <a href="http://projectbee.org/blog/contact/">buzz me</a>.</p>
<p>I must admit, the hangover remained for quite a few days. It had motivated us to evaluate the possibility of another OWASP conf at Banglore. We&#8217;ll be discussing it at the next meet. For now, I have another interesting announcement to make. <strong>OWASP Banglore Chapter is starting Open Workshops for developers, students, and anyone interested to learn about Web Security</strong>. The first one is on Sept. 7th, at Microland, Bellandur. If you are interested kindly <a href="http://projectbee.org/blog/contact/">drop me a mail</a>; or even better, joing the <a href="http://lists.owasp.org/mailman/listinfo/owasp-bangalore">OWASP Bangalore mailing list</a> and put up your details.</p>
Similar Posts:<ul><li><a href="https://projectbee.org/blog/archive/owasp-appsec-conf-delhi-day-1/" rel="bookmark" title="August 21, 2008">OWASP AppSec Conf Delhi &#8211; Day 1</a></li>

<li><a href="https://projectbee.org/blog/archive/securitycamp-is-here-where-are-you/" rel="bookmark" title="June 25, 2008">SecurityCamp is here, where are you?</a></li>

<li><a href="https://projectbee.org/blog/archive/reviving-owasp-bangalore-chapter/" rel="bookmark" title="June 29, 2008">Reviving OWASP Bangalore Chapter</a></li>

<li><a href="https://projectbee.org/blog/archive/securcamp-and-back/" rel="bookmark" title="July 12, 2008">SecurCamp and back.</a></li>

<li><a href="https://projectbee.org/blog/archive/tpm-boys-withdraw-paper-from-blackhat-usa/" rel="bookmark" title="July 5, 2007">TPM Boys withdraw paper from BlackHat USA</a></li>
</ul><!-- Similar Posts took 293.871 ms --><p>The post <a href="https://projectbee.org/blog/archive/owasp-appsec-conf-delhi-day-2-and-more/">OWASP AppSec Conf Delhi – Day 2; and more</a> first appeared on <a href="https://projectbee.org/blog">Code in my Bug!</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://projectbee.org/blog/archive/owasp-appsec-conf-delhi-day-2-and-more/feed/</wfw:commentRss>
			<slash:comments>4</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">130</post-id>	</item>
		<item>
		<title>OWASP AppSec Conf Delhi &#8211; Day 1</title>
		<link>https://projectbee.org/blog/archive/owasp-appsec-conf-delhi-day-1/</link>
					<comments>https://projectbee.org/blog/archive/owasp-appsec-conf-delhi-day-1/#comments</comments>
		
		<dc:creator><![CDATA[Bipin Upadhyay]]></dc:creator>
		<pubDate>Thu, 21 Aug 2008 06:41:33 +0000</pubDate>
				<category><![CDATA[hackers]]></category>
		<category><![CDATA[life]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[webappsec]]></category>
		<category><![CDATA[conference]]></category>
		<category><![CDATA[delhi]]></category>
		<category><![CDATA[owasp]]></category>
		<category><![CDATA[owaspdelhi]]></category>
		<category><![CDATA[pics]]></category>
		<guid isPermaLink="false">http://projectbee.org/blog/?p=125</guid>

					<description><![CDATA[<p>Special Note: I don&#8217;t have my Canon EOS 350D with me nowadays, so I had to borrow my roomates Canon Powershot. 🙁 The quality sucks, but still, the pictures are here. I&#8217;ll be honest, going by the conf prices and some of the talk titles; I was expecting OWASP AppSec Delhi to be targeted mainly &#8230; </p>
<p class="link-more"><a href="https://projectbee.org/blog/archive/owasp-appsec-conf-delhi-day-1/" class="more-link">Continue reading<span class="screen-reader-text"> "OWASP AppSec Conf Delhi &#8211; Day 1"</span></a></p>
<p>The post <a href="https://projectbee.org/blog/archive/owasp-appsec-conf-delhi-day-1/">OWASP AppSec Conf Delhi – Day 1</a> first appeared on <a href="https://projectbee.org/blog">Code in my Bug!</a>.</p>]]></description>
										<content:encoded><![CDATA[<p><em>Special Note: I don&#8217;t have my Canon EOS 350D with me nowadays, so I had to borrow my roomates Canon Powershot. <img src="https://s.w.org/images/core/emoji/15.0.3/72x72/1f641.png" alt="🙁" class="wp-smiley" style="height: 1em; max-height: 1em;" /> The quality sucks, but still, the <a href="http://picasaweb.google.com/muxical.geek/OWASPAppSecConfDelhiAug08Day1">pictures are here</a>.</em></p>
<p>I&#8217;ll be honest, going by the conf prices and some of the talk titles; I was expecting <a href="http://www.owasp.org/index.php/OWASP_AppSec_India_Conference_2008">OWASP AppSec Delhi </a>to be targeted mainly for managers. Moreover, I didn&#8217;t really have enough hopes for the first day talks, at least. It felt even worse when I realized that Dinis Cruz hasn&#8217;t been able to make it. I was looking forward to his workshop in App Sec Code Review. But boy, what a day! <img src="https://s.w.org/images/core/emoji/15.0.3/72x72/1f642.png" alt="🙂" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>
<p>The registration was scheduled to begin at 8:15 AM and I reached at 7:45. As if that was not enough, the registration was delayed by another 40-45 minutes. I like to be punctual, but end up playing the endless wait-game more than often.  However, on the bright side I got to interact with a couple of great guys, like Amit Parekh (MPS). Quite surprisingly, I also came across Manjula (Aujas Networks). I say surprisingly because when we had discussed about the conference at a previous OWASP Bangalore chapter meet, she had no plans to visit. I am glad she decided at the last moment. <img src="https://s.w.org/images/core/emoji/15.0.3/72x72/1f642.png" alt="🙂" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>
<p>Before I mention about the talks, I feel obligated to thank Nitin of OWASP Delhi chapter for letting me attend the conference even though my company has failed to pay the conference fees at the moment due to some strange procedural issues.</p>
<p style="text-align: center;"><img loading="lazy" decoding="async" class="aligncenter" title="Bipin &amp; Amit" src="http://s3.amazonaws.com/projectbee/img/OWASP-Delhi-1.JPG" alt="Bipin &amp; Amit" width="584" height="434" /></p>
<p style="text-align: center;"><span style="color: #808000;"><strong>Bipin &amp; Amit</strong></span></p>
<p>The day began with the <strong>keynote</strong> speeches by <strong>Dhruv Soni</strong> and <strong>Puneet Mehta</strong> (OWASP Delhi Chapter), <strong>Murli Krishna</strong>(HP),<strong> Dr. Kamlesh Bajaj</strong> (DSCI), <strong>Jason Li</strong>(OWASP), and <strong>Mano Paul</strong>(ISC^2). The welcome notes by Dhruv and Puneet were followed by Dr. Bajaj and Murli Krishna&#8217;s keynotes. I couldn&#8217;t help but wish I could get seniors from the network management unit of my firm. I would love to believe that they would have had a heart change with respect to application security after the keynote <img src="https://s.w.org/images/core/emoji/15.0.3/72x72/1f609.png" alt="😉" class="wp-smiley" style="height: 1em; max-height: 1em;" /> . Jason spoke on behalf of Dinis and introduced the newbies to OWASP and a couple of its projects. In case you are unaware (like me), there has been an interesting addition to the OWASP projects called <a href="http://www.owasp.org/index.php/ESAPI"><strong>ESAPI</strong></a>. It looks good at first glance. Hopefully, I&#8217;ll be having a closer look pretty soon. Finally, Mano Paul provided some interesting metaphors to the security scenario, and also introduced the youngest hacker in the crowd, his two year old son. It&#8217;ll surely be fun to attend his workshop on <strong><em>Advanced Thread Modelling</em></strong>.</p>
<p>Following the Keynote speeches, <strong>Jason Li</strong> introduced the crowd to his <strong>AntiSamy project</strong>. I especially liked the way he&#8217;d organized his talk to compare several XSS mitigation techniques and then prove why AntiSamy&#8217;s (or HTMLPurifier&#8217;s) approach is better <img src="https://s.w.org/images/core/emoji/15.0.3/72x72/1f609.png" alt="😉" class="wp-smiley" style="height: 1em; max-height: 1em;" /> . His talk was followed by <strong>Rajesh Nayak&#8217;s</strong> (HP) talk titled <strong>Web App Security: Too costly to ignore</strong>. Although, it was more of a sales pitch, it did have some valid points; and we did manage to have our share of fun. When a certain demo of his failed a couple of times and he had to restart his system, I couldn&#8217;t control my tendency to pass on loud remarks and asked whether it was an HP laptop <img src="https://s.w.org/images/core/emoji/15.0.3/72x72/1f61b.png" alt="😛" class="wp-smiley" style="height: 1em; max-height: 1em;" /> .</p>
<p style="text-align: center;"><img loading="lazy" decoding="async" class="aligncenter" title="Bipin &amp; Amit" src="http://s3.amazonaws.com/projectbee/img/OWASP-Delhi-2.JPG" alt="Bipin &amp; Amit" width="584" height="434" /></p>
<p style="text-align: center;"><strong>Manjula, Sheeraj, &amp; Amit</strong></p>
<p>The much awaited <strong>Sheeraj Shah&#8217;s</strong> talk on <strong>Web 2.0 Security</strong> came after the lunch. As expected of him, the talk was pretty technical and wasn&#8217;t really for the noobs. He also talked about his home-brewed scripts to analyze Web 2.0 enabled/hyped portals. Later, <strong>Roshan Chandran</strong> of <strong>Paladion</strong> presented a very interesting case study on <strong>Testing 200+ applications in a $10 Billion Enterprise</strong>. This talk provoked a lot of techies in the crowd who were silent till now. Finally, <strong>Nischal Bhalla</strong> delivered a talk on <strong>Building Enterprise AppSec Program</strong>. This is something I&#8217;ve been trying to do at my workplace (with the help of my Bosses) and I guess I&#8217;ll be mailing Nischal for the presentation.</p>
<p>To summarize, none of the talks were any ground breaking research that we were not aware of, but the difference always comes in with experience; and that&#8217;s what made it an amazing day. It was great to look at things from the perception of these uber hackers. I am eagerly looking forward for tomorrows workshop&#8217;s &#8211; <strong>Advanced Threat Modelling</strong> by <strong>Mano Paul</strong>, and <strong>App Sec Code Review</strong> by <strong>Gaurav Kumar</strong> (which was originally scheduled by Dinis Cruz.</p>
<p>Oh and yes! The food was pretty good too. <img src="https://s.w.org/images/core/emoji/15.0.3/72x72/1f642.png" alt="🙂" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>
Similar Posts:<ul><li><a href="https://projectbee.org/blog/archive/owasp-appsec-conf-delhi-day-2-and-more/" rel="bookmark" title="September 4, 2008">OWASP AppSec Conf Delhi &#8211; Day 2; and more</a></li>

<li><a href="https://projectbee.org/blog/archive/reviving-owasp-bangalore-chapter/" rel="bookmark" title="June 29, 2008">Reviving OWASP Bangalore Chapter</a></li>

<li><a href="https://projectbee.org/blog/archive/securitycamp-is-here-where-are-you/" rel="bookmark" title="June 25, 2008">SecurityCamp is here, where are you?</a></li>

<li><a href="https://projectbee.org/blog/archive/securcamp-and-back/" rel="bookmark" title="July 12, 2008">SecurCamp and back.</a></li>

<li><a href="https://projectbee.org/blog/archive/tpm-boys-withdraw-paper-from-blackhat-usa/" rel="bookmark" title="July 5, 2007">TPM Boys withdraw paper from BlackHat USA</a></li>
</ul><!-- Similar Posts took 4.029 ms --><p>The post <a href="https://projectbee.org/blog/archive/owasp-appsec-conf-delhi-day-1/">OWASP AppSec Conf Delhi – Day 1</a> first appeared on <a href="https://projectbee.org/blog">Code in my Bug!</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://projectbee.org/blog/archive/owasp-appsec-conf-delhi-day-1/feed/</wfw:commentRss>
			<slash:comments>3</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">125</post-id>	</item>
		<item>
		<title>No more lectures now&#8230;</title>
		<link>https://projectbee.org/blog/archive/no-more-lectures-now/</link>
					<comments>https://projectbee.org/blog/archive/no-more-lectures-now/#respond</comments>
		
		<dc:creator><![CDATA[Bipin Upadhyay]]></dc:creator>
		<pubDate>Sat, 26 Jul 2008 10:36:53 +0000</pubDate>
				<category><![CDATA[hackers]]></category>
		<category><![CDATA[humour]]></category>
		<category><![CDATA[irony]]></category>
		<category><![CDATA[life]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[death]]></category>
		<category><![CDATA[inspiration]]></category>
		<category><![CDATA[randy pausch]]></category>
		<guid isPermaLink="false">http://projectbee.org/blog/?p=119</guid>

					<description><![CDATA[<p>Randy Pausch, fondly known as the Last Lecture Guy, is no more. If you have not heard of him, I suggest you watch his &#8220;last lecture&#8221;. A summary of the lecture and Randy Pausch&#8217;s life can be read here. p.s.: @Johnny: Thanks for updating me. @Slashdot-ters: Thanks for not making stupid and mean remarks this &#8230; </p>
<p class="link-more"><a href="https://projectbee.org/blog/archive/no-more-lectures-now/" class="more-link">Continue reading<span class="screen-reader-text"> "No more lectures now&#8230;"</span></a></p>
<p>The post <a href="https://projectbee.org/blog/archive/no-more-lectures-now/">No more lectures now…</a> first appeared on <a href="https://projectbee.org/blog">Code in my Bug!</a>.</p>]]></description>
										<content:encoded><![CDATA[<p><strong>Randy Pausch</strong>, fondly known as <strong>the Last Lecture Guy</strong>, is no more.</p>
<p>If you have not heard of him, I suggest you watch his &#8220;last lecture&#8221;. A summary of the lecture and Randy Pausch&#8217;s life can be <a href="http://www.brownalumnimagazine.com/november/december_2007/its_not_time_yet.html">read here</a>.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="src" value="http://www.youtube.com/v/ji5_MqicxSo&amp;hl=en&amp;fs=1" /></object></p>
<p>p.s.:<br />
@Johnny: Thanks for updating me.<br />
@Slashdot-ters: Thanks for not making stupid and mean remarks this time.<br />
@Randy Pausch: Rest In Peace dude.</p>
Similar Posts:<ul><li><a href="https://projectbee.org/blog/archive/open-javafx-an-alternative-to-ajax/" rel="bookmark" title="May 9, 2007">Open JavaFX, an alternative to AJAX?</a></li>

<li><a href="https://projectbee.org/blog/archive/slashdot-uh/" rel="bookmark" title="May 21, 2008">Slashdot, uh! <img src="https://s.w.org/images/core/emoji/15.0.3/72x72/1f610.png" alt="😐" class="wp-smiley" style="height: 1em; max-height: 1em;" /></a></li>

<li><a href="https://projectbee.org/blog/archive/ot-sad-demise-of-guru-ammannur-madhava-chakyar/" rel="bookmark" title="July 2, 2008">[OT] Sad demise of Guru Ammannur Madhava Chakyar</a></li>

<li><a href="https://projectbee.org/blog/archive/dreams-and-huh-reality/" rel="bookmark" title="June 4, 2007">Dreams&#8230; and (huh!) Reality.</a></li>

<li><a href="https://projectbee.org/blog/archive/apache-headache-no-listening-sockets-available/" rel="bookmark" title="August 8, 2007">Apache Headache: &#8220;no listening sockets available&#8221;</a></li>
</ul><!-- Similar Posts took 330.921 ms --><p>The post <a href="https://projectbee.org/blog/archive/no-more-lectures-now/">No more lectures now…</a> first appeared on <a href="https://projectbee.org/blog">Code in my Bug!</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://projectbee.org/blog/archive/no-more-lectures-now/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">119</post-id>	</item>
		<item>
		<title>SecurCamp and back.</title>
		<link>https://projectbee.org/blog/archive/securcamp-and-back/</link>
					<comments>https://projectbee.org/blog/archive/securcamp-and-back/#comments</comments>
		
		<dc:creator><![CDATA[Bipin Upadhyay]]></dc:creator>
		<pubDate>Sat, 12 Jul 2008 15:25:28 +0000</pubDate>
				<category><![CDATA[hackers]]></category>
		<category><![CDATA[irony]]></category>
		<category><![CDATA[life]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[webappsec]]></category>
		<category><![CDATA[owasp]]></category>
		<category><![CDATA[owaspbangalore]]></category>
		<guid isPermaLink="false">http://projectbee.org/blog/?p=113</guid>

					<description><![CDATA[<p>I spent the first half of the day at SecurCamp -1 (or Security Barcamp). It always great to get together with the community and today was no different. It came a sweet surprise to me that I have quite a few acquaintances in the community. The best part of the whole day, however, was getting &#8230; </p>
<p class="link-more"><a href="https://projectbee.org/blog/archive/securcamp-and-back/" class="more-link">Continue reading<span class="screen-reader-text"> "SecurCamp and back."</span></a></p>
<p>The post <a href="https://projectbee.org/blog/archive/securcamp-and-back/">SecurCamp and back.</a> first appeared on <a href="https://projectbee.org/blog">Code in my Bug!</a>.</p>]]></description>
										<content:encoded><![CDATA[<p>I spent the first half of the day at <a href="http://securitycamp.pbwiki.com/">SecurCamp -1</a> (or Security Barcamp). It always great to get together with the community and today was no different. It came a sweet surprise to me that I have quite a few acquaintances in the community. The best part of the whole day, however, was getting together with <a href="http://reboot.in/">Lucky</a> after a loooong time. It&#8217;s pretty strange that even after being in the same city, we haven&#8217;t been able to meet as often as we could have. So I decided to use the opportunity properly. In fact, I am now at his house, using his 1 mbs line while he&#8217;s away for his dance class (and hoping he doesn&#8217;t keep a sniffer on).</p>
<p><img loading="lazy" decoding="async" src="http://s3.amazonaws.com/projectbee/img/Camping2.jpg" alt="By flickr.com/photos/fortphoto/2563803794/" width="609" height="390" /></p>
<p>I presented on &#8220;A conceptual Phishing/Fraud IDS&#8221;, something I had worked in Jan/Feb, but have been sleeping on in for all this while. Thanks to <a href="http://johnnyjacob.wordpress.com/">Johnny&#8217;s</a> pestering, I think I&#8217;ll write a small paper on it and distribute for review. I just hope the increased official workload is minimized by the new members joining the team. <img src="https://s.w.org/images/core/emoji/15.0.3/72x72/1f642.png" alt="🙂" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>
<p>We also used the opportunity to announce the OWASP Bangalore chapter revival. I have personally been working on identifying ways to ensure OWASP&#8217;s reach to the colleges, and have prepared a list of colleges in Bangalore. Let&#8217;s hope that we make it quick on that front too. Just to re-announce, if you are a student in/around Bangalore, drop me a <a href="http://projectbee.org/blog/contact/">note</a> and we&#8217;ll put your college on top-priority. <img src="https://s.w.org/images/core/emoji/15.0.3/72x72/1f642.png" alt="🙂" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>
<p>I also had a very strange realization today. I have been a member of several communities (security and otherwise) and differences creep-in at some point. However, they are pretty quick (and a little more obvious) in the security communities. Be it mailing lists, blogs or even physical meets, people respond (and then re-respond) pretty loudly. <img src="https://s.w.org/images/core/emoji/15.0.3/72x72/1f642.png" alt="🙂" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Is it because security is pretty demanding field where there isn&#8217;t much scope for a mistake, or is it because we all in the field carry a &#8220;I CAN&#8217;T be wrong&#8221; badge, or is it some other reason?</p>
<p>Time to move now. Hancock at 9:45PM <img src="https://s.w.org/images/core/emoji/15.0.3/72x72/1f61b.png" alt="😛" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>
Similar Posts:<ul><li><a href="https://projectbee.org/blog/archive/securitycamp-is-here-where-are-you/" rel="bookmark" title="June 25, 2008">SecurityCamp is here, where are you?</a></li>

<li><a href="https://projectbee.org/blog/archive/open-javafx-an-alternative-to-ajax/" rel="bookmark" title="May 9, 2007">Open JavaFX, an alternative to AJAX?</a></li>

<li><a href="https://projectbee.org/blog/archive/reviving-owasp-bangalore-chapter/" rel="bookmark" title="June 29, 2008">Reviving OWASP Bangalore Chapter</a></li>

<li><a href="https://projectbee.org/blog/archive/owasp-appsec-conf-delhi-day-2-and-more/" rel="bookmark" title="September 4, 2008">OWASP AppSec Conf Delhi &#8211; Day 2; and more</a></li>

<li><a href="https://projectbee.org/blog/archive/zone-h-deafced-by-saudi-hackers/" rel="bookmark" title="January 23, 2007">Zone-H Deafced by Saudi Hackers.</a></li>
</ul><!-- Similar Posts took 300.301 ms --><p>The post <a href="https://projectbee.org/blog/archive/securcamp-and-back/">SecurCamp and back.</a> first appeared on <a href="https://projectbee.org/blog">Code in my Bug!</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://projectbee.org/blog/archive/securcamp-and-back/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">113</post-id>	</item>
		<item>
		<title>[OT] Sad demise of Guru Ammannur Madhava Chakyar</title>
		<link>https://projectbee.org/blog/archive/ot-sad-demise-of-guru-ammannur-madhava-chakyar/</link>
					<comments>https://projectbee.org/blog/archive/ot-sad-demise-of-guru-ammannur-madhava-chakyar/#respond</comments>
		
		<dc:creator><![CDATA[Bipin Upadhyay]]></dc:creator>
		<pubDate>Wed, 02 Jul 2008 15:06:00 +0000</pubDate>
				<category><![CDATA[music]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[off-topic]]></category>
		<category><![CDATA[ammannur madhava chakyar]]></category>
		<category><![CDATA[indian classical music]]></category>
		<category><![CDATA[spicmacay]]></category>
		<guid isPermaLink="false">http://projectbee.org/blog/?p=109</guid>

					<description><![CDATA[<p>This post is not technical. However, being a SPICMACAYite and an Indian, I felt compelled to let my readers know about the sad news; especially when the news channels are not finding any slot for this legend. Koodiyattam exponent Ammannur Madhava Chakyar, recipient of the Padma Shri as well as the Padma Bhushan honours by &#8230; </p>
<p class="link-more"><a href="https://projectbee.org/blog/archive/ot-sad-demise-of-guru-ammannur-madhava-chakyar/" class="more-link">Continue reading<span class="screen-reader-text"> "[OT] Sad demise of Guru Ammannur Madhava Chakyar"</span></a></p>
<p>The post <a href="https://projectbee.org/blog/archive/ot-sad-demise-of-guru-ammannur-madhava-chakyar/">[OT] Sad demise of Guru Ammannur Madhava Chakyar</a> first appeared on <a href="https://projectbee.org/blog">Code in my Bug!</a>.</p>]]></description>
										<content:encoded><![CDATA[<p>This post is not technical. However, being a <a href="http://spicmacay.com/">SPICMACAYite</a> and an Indian, I felt compelled to let my readers know about the sad news; especially when the news channels are not finding any slot for this legend.</p>
<p><a href="http://www.mykerala.net/koodiyattom/koodiyattom.html">Koodiyattam</a> exponent Ammannur Madhava Chakyar, recipient of the Padma Shri as well as the Padma Bhushan honours by the Govrnment of India. He was not only responsible for bringing the art form Kutiyattam (or Koodiyattam) out of temples, but also with reviving it.</p>
<p><img loading="lazy" decoding="async" class="alignleft" style="float: left;" src="http://s3.amazonaws.com/projectbee/img/Ammannur_Madhava_Chakyar.jpg" alt="Ammannur Madhava Chakyar" width="247" height="400" />The following news article from <a href="http://www.hindu.com/2008/07/02/stories/2008070258000400.htm">The Hindu</a> provides other details.</p>
<blockquote><p><em>Koodiyattom expert Ammannur Madhava Chakyar died at his residence, Ammannur Chakyar Madom, at Irinjalakuda, near here, on Tuesday. He was 92.<br />
The end came around 9.30 p.m.<br />
The history of modern Koodiyattom is inexorably entwined with Madhava Chakyar’s life and art.<br />
He did not want Koodiyattam to be restricted to the temple arena. His major contribution to the art was to take it beyond traditional confines.<br />
Ammannur’s debut performance was at the age of 11 at the Thirumandhamkunnu temple, Angadipuram. He played the role of Sutradhara in the play ‘Balacharita.’ His first-ever Prabandha Koothuwas held at Trikkovil temple at Chendamangalam.<br />
He trained under the princes of the royal family of erstwhile Kodungallur. He played his first major role, Sreerama in ‘Soorpanakankam’ at the Koodalmanikya temple in Irinjalakuda. He was a recipient of Padma Bhushan, Kalidasa Samman, Kerala Sangeeta Nataka Akademi Award and Kendra Sangeet Nataka Akademi Award. He is survived by his wife Parukutty Nangiaramma.</em></p></blockquote>
<p><strong>May his soul rest in peace.</strong></p>
Similar Posts:<ul><li><a href="https://projectbee.org/blog/archive/fake-steve-jobs-revealed/" rel="bookmark" title="August 6, 2007">Fake Steve Jobs Revealed</a></li>

<li><a href="https://projectbee.org/blog/archive/iframes-to-be-or-not-to-be/" rel="bookmark" title="September 10, 2007">IFrames &#8211; To be or not to be?</a></li>

<li><a href="https://projectbee.org/blog/archive/tpm-boys-withdraw-paper-from-blackhat-usa/" rel="bookmark" title="July 5, 2007">TPM Boys withdraw paper from BlackHat USA</a></li>

<li><a href="https://projectbee.org/blog/archive/reviving-owasp-bangalore-chapter/" rel="bookmark" title="June 29, 2008">Reviving OWASP Bangalore Chapter</a></li>

<li><a href="https://projectbee.org/blog/archive/orkut-latest-xss-worm-and-what-it-means-for-indian-orkuteers/" rel="bookmark" title="December 20, 2007">Orkut Latest XSS Worm; and what it means for Indian Orkuteers</a></li>
</ul><!-- Similar Posts took 143.382 ms --><p>The post <a href="https://projectbee.org/blog/archive/ot-sad-demise-of-guru-ammannur-madhava-chakyar/">[OT] Sad demise of Guru Ammannur Madhava Chakyar</a> first appeared on <a href="https://projectbee.org/blog">Code in my Bug!</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://projectbee.org/blog/archive/ot-sad-demise-of-guru-ammannur-madhava-chakyar/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">109</post-id>	</item>
		<item>
		<title>Adieu, Billy Boy!</title>
		<link>https://projectbee.org/blog/archive/adieu-billy-boy/</link>
					<comments>https://projectbee.org/blog/archive/adieu-billy-boy/#respond</comments>
		
		<dc:creator><![CDATA[Bipin Upadhyay]]></dc:creator>
		<pubDate>Mon, 30 Jun 2008 12:17:21 +0000</pubDate>
				<category><![CDATA[Bill Gates]]></category>
		<category><![CDATA[humour]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[adieu]]></category>
		<category><![CDATA[comic]]></category>
		<category><![CDATA[geek]]></category>
		<category><![CDATA[geekculture]]></category>
		<guid isPermaLink="false">http://projectbee.org/blog/?p=108</guid>

					<description><![CDATA[<p>Taken from Joy of Tech On a personal note, you did change the world Billy Boy. Hope you do the same again. 🙂 p.s. BTW, Joy Of Tech guys are good. Subscribe to them if you like a laugh once in a while. Similar Posts:Bill Gates no more The Richest Apache Headache: &#8220;no listening sockets &#8230; </p>
<p class="link-more"><a href="https://projectbee.org/blog/archive/adieu-billy-boy/" class="more-link">Continue reading<span class="screen-reader-text"> "Adieu, Billy Boy!"</span></a></p>
<p>The post <a href="https://projectbee.org/blog/archive/adieu-billy-boy/">Adieu, Billy Boy!</a> first appeared on <a href="https://projectbee.org/blog">Code in my Bug!</a>.</p>]]></description>
										<content:encoded><![CDATA[<p>Taken from <a href="http://www.geekculture.com/joyoftech/joyarchives/1122.html">Joy of Tech</a></p>
<p style="text-align: center;"><img loading="lazy" decoding="async" src="http://s3.amazonaws.com/projectbee/img/Billy.jpg" alt="by Joy Of Tech -- geekculture.com" width="516" height="707" /></p>
<p>On a personal note, you did change the world Billy Boy. Hope you do the same again. <img src="https://s.w.org/images/core/emoji/15.0.3/72x72/1f642.png" alt="🙂" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>
<p><em>p.s. BTW, Joy Of Tech guys are good. <a href="http://www.joyoftech.com/joyoftech/jotblog/index.xml">Subscribe</a> to them if you like a laugh once in a while.</em></p>
Similar Posts:<ul><li><a href="https://projectbee.org/blog/archive/bill-gates-no-more-the-richest/" rel="bookmark" title="July 4, 2007">Bill Gates no more The Richest</a></li>

<li><a href="https://projectbee.org/blog/archive/apache-headache-no-listening-sockets-available/" rel="bookmark" title="August 8, 2007">Apache Headache: &#8220;no listening sockets available&#8221;</a></li>

<li><a href="https://projectbee.org/blog/archive/dreams-and-huh-reality/" rel="bookmark" title="June 4, 2007">Dreams&#8230; and (huh!) Reality.</a></li>

<li><a href="https://projectbee.org/blog/archive/tpm-boys-withdraw-paper-from-blackhat-usa/" rel="bookmark" title="July 5, 2007">TPM Boys withdraw paper from BlackHat USA</a></li>

<li><a href="https://projectbee.org/blog/archive/the-web-is-broken/" rel="bookmark" title="October 12, 2007">The Web is Broken</a></li>
</ul><!-- Similar Posts took 168.409 ms --><p>The post <a href="https://projectbee.org/blog/archive/adieu-billy-boy/">Adieu, Billy Boy!</a> first appeared on <a href="https://projectbee.org/blog">Code in my Bug!</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://projectbee.org/blog/archive/adieu-billy-boy/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">108</post-id>	</item>
		<item>
		<title>Reviving OWASP Bangalore Chapter</title>
		<link>https://projectbee.org/blog/archive/reviving-owasp-bangalore-chapter/</link>
					<comments>https://projectbee.org/blog/archive/reviving-owasp-bangalore-chapter/#respond</comments>
		
		<dc:creator><![CDATA[Bipin Upadhyay]]></dc:creator>
		<pubDate>Sun, 29 Jun 2008 14:23:56 +0000</pubDate>
				<category><![CDATA[life]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[webappsec]]></category>
		<category><![CDATA[community]]></category>
		<category><![CDATA[owasp]]></category>
		<category><![CDATA[owaspbangalore]]></category>
		<guid isPermaLink="false">http://projectbee.org/blog/?p=106</guid>

					<description><![CDATA[<p>Update &#8211; Jan&#8217; 13th, 2014: I&#8217;m excited to let you know that Bangalore OWASP chapter has been up and running, and growing for the last three years now. I no longer live in Bangalore, but the chapter and its people remain a source of knowledge exchange (read, nerd-talk). For more information, check out the OWASP &#8230; </p>
<p class="link-more"><a href="https://projectbee.org/blog/archive/reviving-owasp-bangalore-chapter/" class="more-link">Continue reading<span class="screen-reader-text"> "Reviving OWASP Bangalore Chapter"</span></a></p>
<p>The post <a href="https://projectbee.org/blog/archive/reviving-owasp-bangalore-chapter/">Reviving OWASP Bangalore Chapter</a> first appeared on <a href="https://projectbee.org/blog">Code in my Bug!</a>.</p>]]></description>
										<content:encoded><![CDATA[<p><strong>Update &#8211; Jan&#8217; 13th, 2014</strong>: I&#8217;m excited to let you know that Bangalore OWASP chapter has been up and running, and growing for the last three years now. I no longer live in Bangalore, but the chapter and its people remain a source of knowledge exchange (read, nerd-talk). For more information, check out the <a href="https://www.owasp.org/index.php/Bangalore" target="_blank">OWASP Bangalore homepage</a>.<br />
If need be, you may contact the chapter leads Akash Mahajan (akash [DOT] mahajan {AT} owasp [DOT] org), and KV Prashant (kvprashant {AT} owasp [DOT] org.)</p>
<p>&#8212;&#8211;</p>
<p>The <a href="http://www.owasp.org/index.php/Bangalore">OWASP Bangalore Chapter</a> met after almost an year today, and I was priviledged to be a part of it. As happens often with technical groups, including LUGs (Linux User Groups), they tend to loose participation and go to indefinite hibernation mode. OWASP-Bangalore&#8217;s fate was no different.</p>
<p style="text-align: center;"><img loading="lazy" decoding="async" class="aligncenter size-medium wp-image-107" title="Meeting room stencil graffiti by -- flickr.com/photos/clagnut/252185030/" alt="Meeting room stencil graffiti by -- flickr.com/photos/clagnut/252185030/" src="http://projectbee.s3.amazonaws.com/img/Meeting.jpg" width="500" height="375" /></p>
<p>Anyhoo! The important point is that we finally met today. There were around 12 peole who turned up, and boy, It&#8217;s always an honour to meet enthusiastic people from the Security community. Minutes of the meeting will be posted by Hari, Chapter coordinator, pretty soon on the OWASP-Bangalore mailing list. To cut things short, we discussed and decided on a couple of points to revive the Bangalore Chapter. I&#8217;ll personally be looking forward to spreading the information to younger audience. So, <strong>just in case you are a part of some College around Bangalore, <a href="http://projectbee.org/blog/contact/">feel free to drop me a note</a></strong>. We&#8217;d love to visit your campus and deliver talks, free of charge. <img src="https://s.w.org/images/core/emoji/15.0.3/72x72/1f642.png" alt="🙂" class="wp-smiley" style="height: 1em; max-height: 1em;" /><br />
As for the regular meetings, we&#8217;ve decided to meet every fourth Wednesday of the month. Venues will of course, keep changing.</p>
<p><em>p.s. I love the song &#8220;Jaane Kya Baat Hai&#8221; from the movie Sunny. But somehow, I am not able to get the other song,&#8221;Aur Kya Ahde Wafaa Hote Hain&#8221;, out of my mind since morning. Not that I am complaining <img src="https://s.w.org/images/core/emoji/15.0.3/72x72/1f609.png" alt="😉" class="wp-smiley" style="height: 1em; max-height: 1em;" /></em></p>
<table style="background-color: #ffffff; border-color: #cccccc; color: #0000ff; font-family: Arial, Helvetica, sans-serif; font-size: 11px; padding: 0px; border-width: 1px; border-style: solid;" border="0" cellspacing="0" cellpadding="4">
<tbody>
<tr>
<td align="center"><object width="92" height="140" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" bgcolor="#FFFFFF"><param name="flashvars" value="autoPlay=no&amp;theFile=http://www.esnips.com//nsdoc/25708aa0-66eb-430c-be00-49a660bae4f4&amp;theName=Aur Kya Ahede Wafa Hote Hai - Sunny&amp;thePlayerURL=http://www.esnips.com//escentral/images/widgets/flash/mp3WidgetPlayer.swf" /><param name="src" value="http://www.esnips.com//escentral/images/widgets/flash/candle.swf" /></object></td>
</tr>
<tr>
<td style="font-size: 11px;" align="center" valign="bottom"><a style="color: #0000ff;" href="http://www.esnips.com/doc/25708aa0-66eb-430c-be00-49a660bae4f4/Aur-Kya-Ahede-Wafa-Hote-Hai---Sunny/?widget=flash_player_candle">Aur Kya Ahede Wafa&#8230;</a></td>
</tr>
</tbody>
</table>
Similar Posts:<ul><li><a href="https://projectbee.org/blog/archive/securcamp-and-back/" rel="bookmark" title="July 12, 2008">SecurCamp and back.</a></li>

<li><a href="https://projectbee.org/blog/archive/securitycamp-is-here-where-are-you/" rel="bookmark" title="June 25, 2008">SecurityCamp is here, where are you?</a></li>

<li><a href="https://projectbee.org/blog/archive/owasp-appsec-conf-delhi-day-2-and-more/" rel="bookmark" title="September 4, 2008">OWASP AppSec Conf Delhi &#8211; Day 2; and more</a></li>

<li><a href="https://projectbee.org/blog/archive/owasp-appsec-conf-delhi-day-1/" rel="bookmark" title="August 21, 2008">OWASP AppSec Conf Delhi &#8211; Day 1</a></li>

<li><a href="https://projectbee.org/blog/archive/yahoo-gone-insane/" rel="bookmark" title="August 11, 2007">Yahoo! gone Insane!</a></li>
</ul><!-- Similar Posts took 271.057 ms --><p>The post <a href="https://projectbee.org/blog/archive/reviving-owasp-bangalore-chapter/">Reviving OWASP Bangalore Chapter</a> first appeared on <a href="https://projectbee.org/blog">Code in my Bug!</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://projectbee.org/blog/archive/reviving-owasp-bangalore-chapter/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">106</post-id>	</item>
	</channel>
</rss>
