<?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/"
	>

<channel>
	<title>88plug &#187; Interest</title>
	<atom:link href="http://88plug.com/category/interest/feed" rel="self" type="application/rss+xml" />
	<link>http://88plug.com</link>
	<description>paris / new york / san francisco</description>
	<lastBuildDate>Thu, 17 May 2012 17:30:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>VyprVPN by Giganews Server Locations</title>
		<link>http://88plug.com/vyprvpn-by-giganews-server-locations</link>
		<comments>http://88plug.com/vyprvpn-by-giganews-server-locations#comments</comments>
		<pubDate>Fri, 24 Feb 2012 17:15:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Asides]]></category>
		<category><![CDATA[Interest]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://88plug.com/?p=614</guid>
		<description><![CDATA[These are the most up-to-date server locations for connecting to the VyprVPN by Giganews. Don&#8217;t have an account yet?  Learn more here]]></description>
			<content:encoded><![CDATA[<p>These are the most up-to-date server locations for connecting to the VyprVPN by Giganews.</p>
<p>Don&#8217;t have an account yet?  <a href="http://www.giganews.com/?c=gn188508">Learn more here</a></p>

			<div class='tabs-left et_sliderfx_fade et_sliderauto_false et_sliderauto_speed_5000 et_slidertype_left_tabs' id='tabs-left876'>
				<ul class='et-tabs-control'>
			<li><a href='#'>
			Los Angeles, CA
		</a></li> 
		<li><a href='#'>
			Washington, DC
		</a></li> 
		<li><a href='#'>
			Amsterdam
		</a></li> 
		<li><a href='#'>
			Hong Kong
		</a></li> 
		<li><a href='#'>
			London
		</a></li> 
		<li><a href='#'>
			Paris
		</a></li> 
		<li><a href='#'>
			Frankfurt
		</a></li>
		</ul> <!-- .et-tabs-control --> 
		<div class='et-tabs-content'>
			<div class='et_slidecontent'>
			us1.vpn.giganews.com
		</div> 
		<div class='et_slidecontent'>
			us2.vpn.giganews.com
		</div> 
		<div class='et_slidecontent'>
			eu1.vpn.giganews.com
		</div>
		<div class='et_slidecontent'>
			hk1.vpn.giganews.com
		</div>
		<div class='et_slidecontent'>
			uk1.vpn.giganews.com
		</div>
		<div class='et_slidecontent'>
			fr1.vpn.giganews.com
		</div>
		<div class='et_slidecontent'>
			de1.vpn.giganews.com
		</div>
		</div>
			</div> <!-- .tabs-left -->
]]></content:encoded>
			<wfw:commentRss>http://88plug.com/vyprvpn-by-giganews-server-locations/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add jail shelled FTP/SSH user on CentOS / Plesk</title>
		<link>http://88plug.com/add-jail-shelled-ftp-ssh-user-centos-plesk</link>
		<comments>http://88plug.com/add-jail-shelled-ftp-ssh-user-centos-plesk#comments</comments>
		<pubDate>Thu, 22 Apr 2010 13:47:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Interest]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://88plug.com/?p=307</guid>
		<description><![CDATA[The process of adding a new FTP user with SSH access to a Plesk / CentOS server is more difficult than it needs to be.  Plesk will only allow you to add WebUsers to your domains which have FTP accounts, not full SSH accounts.  Here is the quick and dirty. We want our new user [...]]]></description>
			<content:encoded><![CDATA[<p>The process of adding a new FTP user with SSH access to a Plesk / CentOS server is more difficult than it needs to be.  Plesk will only allow you to add WebUsers to your domains which have FTP accounts, not full SSH accounts.  Here is the quick and dirty. We want our new user to be in <a href="http://en.wikipedia.org/wiki/Chroot">chroot</a> jail and to inherit the same permissions as another user on the system.  The user will be restricted to the top level directory you define (for example httpdocs in this case).</p>
<p>Login as Root:</p>
<p>1. </p>
<div class="codecolorer-container text blackboard" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">cat /etc/passwd/ | grep 'anyusername'</div></td></tr></tbody></table></div>
<p>This will return:</p>
<p><code class="codecolorer text blackboard"><span class="text">anyusername:x:10009:2524::/var/www/vhosts/anydomain.com:/bin/bash</span></code></p>
<p>The first set of numbers after &#8220;:x:&#8221; is the UID or <a href="http://en.wikipedia.org/wiki/User_identifier">User Identifier</a>.  We will use this in the next command to copy the same permissions.</p>
<p>2.</p>
<div class="codecolorer-container text blackboard" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">useradd -u 10009 -o -d /var/www/vhosts/anydomain.com/httpdocs/ -g psaserv -s /usr/local/psa/bin/chrootsh newusername</div></td></tr></tbody></table></div>
<p>Replace &#8220;anydomain.com&#8221; with your domain, and &#8220;newusername&#8221; with the new user you would like to add.</p>
<p>3.</p>
<div class="codecolorer-container text blackboard" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">passwd newusername</div></td></tr></tbody></table></div>
<p>Gives the user a password.</p>
<p>4.</p>
<div class="codecolorer-container text blackboard" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">usermod -s /bin/bash newusername</div></td></tr></tbody></table></div>
<p>Boom! Done.</p>
<p>Extras:<br />
For an in-depth discussion on working with rssh, chroot, and users &#8211; see <a href="http://www.cyberciti.biz/tips/rhel-centos-linux-install-configure-rssh-shell.html">UnixCraft</a></p>
]]></content:encoded>
			<wfw:commentRss>http://88plug.com/add-jail-shelled-ftp-ssh-user-centos-plesk/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Acer Aspire 3690 Broadcom Wireless 43xx Ubuntu 9.10 Karmic</title>
		<link>http://88plug.com/acer-aspire-3690-broadcom-wireless-43xx-ubuntu-9-10-karmic</link>
		<comments>http://88plug.com/acer-aspire-3690-broadcom-wireless-43xx-ubuntu-9-10-karmic#comments</comments>
		<pubDate>Mon, 22 Feb 2010 21:51:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[France]]></category>
		<category><![CDATA[Interest]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Sample Work]]></category>

		<guid isPermaLink="false">http://88plug.com/?p=284</guid>
		<description><![CDATA[Issue : After installing Ubuntu 9.10 wireless and wired networking are either working sporadicly or not at all.  The most vanilla solution you will find. Target : Acer Aspire 3690-2159 OS : ubuntu-9.10-desktop-i386 Hardware : Broadcom 4318 Wireless Adapter Ensure your wireless switch is turned on in the front before reading step 1. 1.  Install [...]]]></description>
			<content:encoded><![CDATA[<p>Issue : After installing Ubuntu 9.10 wireless and wired networking are either working sporadicly or not at all.  The most vanilla solution you will find.</p>
<p>Target : <a href="http://support.acer-euro.com/drivers/notebook/as_3690.html">Acer Aspire 3690</a>-2159</p>
<p>OS : <a href="http://www.ubuntu.com/getubuntu/download">ubuntu-9.10-desktop-i386</a></p>
<p>Hardware : Broadcom 4318 Wireless Adapter</p>
<p><span style="text-decoration: underline;">Ensure your wireless switch is turned on in the front before reading step 1.</span></p>
<p>1.  Install Ubuntu 9.10</p>
<p>2.  Plug in active internet connection the Wired ethernet</p>
<p>3.  Run update-manager</p>
<p>4.  Restart after Kernel update</p>
<p>5.  Now with internet still plugged in, goto System&gt;Administration&gt;Hardware Drivers</p>
<p>6.  Select the Broadcom B43 wireless drive and click activate.</p>
<p>7.  Type in your administrator password</p>
<p>8.  Restart</p>
<p>et Voila.</p>
]]></content:encoded>
			<wfw:commentRss>http://88plug.com/acer-aspire-3690-broadcom-wireless-43xx-ubuntu-9-10-karmic/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Facebook Chat is not Secure</title>
		<link>http://88plug.com/facebook-chat-is-not-secure</link>
		<comments>http://88plug.com/facebook-chat-is-not-secure#comments</comments>
		<pubDate>Wed, 02 Dec 2009 02:37:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Interest]]></category>

		<guid isPermaLink="false">http://88plug.com/?p=267</guid>
		<description><![CDATA[Armed to the teeth with Backtrack 4, any reasonably intelligent individual can execute a MITM or Man-In-The-Middle by packet sniffing and injecting packets into the stream against Facebook. This is of concern when on public wireless networks, or public local area networks. Read the documentation here. Protect yourself by running a desktop client like Adium, [...]]]></description>
			<content:encoded><![CDATA[<p>Armed to the teeth with <a href="http://www.remote-exploit.org/backtrack.html">Backtrack 4</a>, any reasonably intelligent individual can execute a MITM or Man-In-The-Middle by packet sniffing and injecting packets into the stream against <a href="http://facebook.com">Facebook</a>.</p>
<p>This is of concern when on public wireless networks, or public local area networks.</p>
<p>Read the <a href="http://www.theagarwals.net/Vikrant/Privacy_of_Facebook.pdf">documentation</a> here.<br />
Protect yourself by running a desktop client like <a href="http://adium.im/">Adium</a>, and encrypting your chats.</p>
<p>In Adium, go to <code class="codecolorer text blackboard"><span class="text">File - Facebook - Edit account - Privacy</span></code> tab then change Encryption to &#8220;Encrypt Chats Automatically&#8221;</p>
<p>Sadly, as this is a step forward it&#8217;s still not a solution.  If and when you have Facebook open, either in a current session or by starting one your chat&#8217;s will be populated with your Adium activity &#8211; thus reversing the &#8220;encryption&#8221;</p>
<p>So, to prevent accidently sending insecure information back into your browser, disable Facebook Chat!</p>
<p>Log into your account and click <code class="codecolorer text blackboard"><span class="text">Chat - Options - Offline</span></code></p>
<p>This is a step forward, but the fact remains that most will use the Facebook website for its convenience (no desktop client required) and accessibility &#8211; and consequently be vulnerable to attack.  Never ever ever send passwords, credit card numbers, social security numbers, or anything that you wouldn&#8217;t want a stranger in the street to find in your trash over Facebook chat.  You have been warned.</p>
]]></content:encoded>
			<wfw:commentRss>http://88plug.com/facebook-chat-is-not-secure/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Animata &#8211; Real Time Animation in SL</title>
		<link>http://88plug.com/animata-real-time-animation-in-sl</link>
		<comments>http://88plug.com/animata-real-time-animation-in-sl#comments</comments>
		<pubDate>Tue, 17 Feb 2009 18:53:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Interest]]></category>
		<category><![CDATA[Animata Jazz Pub;]]></category>
		<category><![CDATA[animation;]]></category>
		<category><![CDATA[Gabor Csordas;]]></category>
		<category><![CDATA[Gabor Papp;]]></category>
		<category><![CDATA[http://animata.kibu.hu;]]></category>
		<category><![CDATA[open source real-time animation software;]]></category>
		<category><![CDATA[Peter Nemeth;]]></category>
		<category><![CDATA[software makes;]]></category>

		<guid isPermaLink="false">http://88plug.com/?p=27</guid>
		<description><![CDATA[http://animata.kibu.hu/ Video after the break! Reverse Shadow Theatre from gabor papp on Vimeo. Animata Jazz Pub from gabor papp on Vimeo. &#8220;Animata is a cross-platform open source real-time animation software for live performance developed in Kitchen Budapest in 2007. The software makes it really easy to create scenes with virtual puppets, which can be moved [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://animata.kibu.hu/">http://animata.kibu.hu/</a></p>
<p>Video after the break!</p>
<p><object width="400" height="251" data="http://vimeo.com/moogaloop.swf?clip_id=706938&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" type="application/x-shockwave-flash"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://vimeo.com/moogaloop.swf?clip_id=706938&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" /></object><br />
<a href="http://vimeo.com/706938">Reverse Shadow Theatre</a> from <a href="http://vimeo.com/gabor">gabor papp</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
<p><object width="400" height="251" data="http://vimeo.com/moogaloop.swf?clip_id=664556&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" type="application/x-shockwave-flash"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://vimeo.com/moogaloop.swf?clip_id=664556&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" /></object><br />
<a href="http://vimeo.com/664556">Animata Jazz Pub</a> from <a href="http://vimeo.com/gabor">gabor papp</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
<p>&#8220;Animata is a cross-platform open source real-time animation software for live performance developed in Kitchen Budapest in 2007.</p>
<p>The software makes it really easy to create scenes with virtual puppets, which can be moved according to live input signals received from various physical sensors, microphones or cameras.</p>
<p>This video demonstrates Animata reacting to live audio input.</p>
<p>Credits:</p>
<p>Bence Samu &#8211; video, animation, programming<br />
Peter Nemeth, Gabor Papp &#8211; programming<br />
Janos Gardos &#8211; graphics<br />
Gabor Csordas &#8211; sound</p>
<p>animata.kibu.hu&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://88plug.com/animata-real-time-animation-in-sl/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

