<?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>AI NO TENSHi &#187; IT</title>
	<atom:link href="http://www.ainotenshi.org/category/it/feed" rel="self" type="application/rss+xml" />
	<link>http://www.ainotenshi.org</link>
	<description>awesomeness &#38; geekery</description>
	<lastBuildDate>Sun, 07 Aug 2011 12:21:27 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>‘sudo’ for Powershell, sorta</title>
		<link>http://www.ainotenshi.org/710/%e2%80%98sudo%e2%80%99-for-powershell-sorta</link>
		<comments>http://www.ainotenshi.org/710/%e2%80%98sudo%e2%80%99-for-powershell-sorta#comments</comments>
		<pubDate>Tue, 24 Feb 2009 18:16:04 +0000</pubDate>
		<dc:creator>Julian Saraceni</dc:creator>
				<category><![CDATA[IT]]></category>
		<category><![CDATA[powershell]]></category>
		<category><![CDATA[sudo]]></category>
		<category><![CDATA[vista]]></category>

		<guid isPermaLink="false">http://www.ainotenshi.org/?p=710</guid>
		<description><![CDATA[Using powershell one thing I found annoying is just could’t figure out how to run processes with elevated rights without having to start a new, elevated powershell. I was looking for a sudo kind of command/script. I was hitting the &#8230; <a href="http://www.ainotenshi.org/710/%e2%80%98sudo%e2%80%99-for-powershell-sorta">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Using powershell one thing I found annoying is just could’t figure out how to run processes with elevated rights without having to start a new, elevated powershell. I was looking for a sudo kind of command/script.</p>
<p>I was hitting the big lower case g (google) and found <a href="http://tsukasa.jidder.de/blog/2008/03/15/scripting-sudo-with-powershell" target="_blank">this</a>. Thanks to Tsukasa I finally found a ‘sudo’ for powershell.</p>
<p>I just had to figure out a why to get it to work. Probably there are others looking for the same I thought I might just summarise the steps it took to make it work.<span id="more-710"></span></p>
<p>Since I don’t know what editor is available on your system we’re going to use notepad.exe. Personally I’m using ‘e’, there is a free trial but it’s pretty much worth the money. So you might think about buying it.</p>
<p>let’s start with…</p>
<h3>step 0.5 , creating a script: mount.</h3>
<p> </p>
<p>It’s no really necessary but might save you some time, so if you don’t care just skip to step 1.</p>
<p>First we’re going to create a directory to put all your scripts in</p>

<div class="wp_syntax"><div class="code"><pre class="powershell" style="font-family:monospace;"><span style="color: #008080; font-weight: bold;">New-Item</span> <span style="color: #008080; font-style: italic;">-ItemType</span> directory <span style="color: #800080;">$HOME</span>\Documents\Scripts</pre></div></div>

<p>After that we need to mount that directory so it’s easily accessible from everywhere within PS using the New-PSDrive cmdlet. The one draw back of that cmdlet is that all mounted directories only last as long as you current PS session. We need it to stay mounted, or at least get mounted at the beginning of every new session and there is a simple way to solve the problem. Put the mount command in your ps-profile. if you never bothered with it there probably isn’t a profile file yet, but Microsoft thought ahead and created a variable for it.</p>

<div class="wp_syntax"><div class="code"><pre class="powershell" style="font-family:monospace;">notepad.exe $PROFILE</pre></div></div>

<p>and put this in it:</p>

<div class="wp_syntax"><div class="code"><pre class="powershell" style="font-family:monospace;"><span style="color: #008080; font-weight: bold;">New-PSDrive</span> <span style="color: #008080; font-style: italic;">-name</span> script <span style="color: #008080; font-style: italic;">-PSProvider</span> FileSystem <span style="color: #008080; font-style: italic;">-Root</span> <span style="color: #800080;">$HOME</span>\Documents\Scripts</pre></div></div>

<p>save, exit.</p>
<p>restart your powershell session by typing powershell into powershell. You should see the directory getting mounted, we’re good to go now.</p>

<div class="wp_syntax"><div class="code"><pre class="powershell" style="font-family:monospace;"><span style="color: #008080; font-weight: bold;">cd</span> script:</pre></div></div>

<p>will take you to the script directory.</p>
<h3>step 1, getting the script</h3>
<p> </p>
<p>Go to your script directory or any other directory where you want to put your script and type</p>

<div class="wp_syntax"><div class="code"><pre class="powershell" style="font-family:monospace;">notepad.exe sudo.ps1</pre></div></div>

<p>Notepad will appear and you’ll need to put the following into it</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
</pre></td><td class="code"><pre class="powershell" style="font-family:monospace;"><span style="color: #800080;">$file</span><span style="color: pink;">,</span> <span style="color: #000000;">&#91;</span><span style="color: #008080;">string</span><span style="color: #000000;">&#93;</span><span style="color: #800080;">$arguments</span> <span style="color: pink;">=</span> <span style="color: #000080;">$args</span>;
<span style="color: #0000FF;">if</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#91;</span>System.IO.File<span style="color: #000000;">&#93;</span>::Exists<span style="color: #000000;">&#40;</span><span style="color: #800000;">&quot;$(get-location)\$file&quot;</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span>
<span style="color: #000000;">&#123;</span>
<span style="color: #800080;">$file</span> <span style="color: pink;">=</span> <span style="color: #800000;">&quot;$(Get-Location)\$file&quot;</span>;
<span style="color: #000000;">&#125;</span>
<span style="color: #800080;">$psi</span> <span style="color: pink;">=</span> <span style="color: #008080; font-weight: bold;">new-object</span> System.Diagnostics.ProcessStartInfo <span style="color: #800080;">$file</span>;
<span style="color: #800080;">$psi</span>.Arguments <span style="color: pink;">=</span> <span style="color: #800080;">$arguments</span>;
<span style="color: #800080;">$psi</span>.Verb <span style="color: pink;">=</span> <span style="color: #800000;">&quot;runas&quot;</span>;
<span style="color: #000000;">&#91;</span>System.Diagnostics.Process<span style="color: #000000;">&#93;</span>::Start<span style="color: #000000;">&#40;</span><span style="color: #800080;">$psi</span><span style="color: #000000;">&#41;</span>;</pre></td></tr></table></div>

<p>save, exit</p>
<p>The script is already working, and you can run it from everywhere by typing the whole path and since that’s a major PITA we’re going to assign an alias.</p>
<h3>step 2, assigning an alias</h3>
<p> </p>
<p>Open your PS profile</p>

<div class="wp_syntax"><div class="code"><pre class="powershell" style="font-family:monospace;">notepad.exe $PROFILE</pre></div></div>

<p>adding the following line</p>

<div class="wp_syntax"><div class="code"><pre class="powershell" style="font-family:monospace;"><span style="color: #008080; font-weight: bold;">New-Alias</span> <span style="color: #008080; font-style: italic;">-Name</span> sudo <span style="color: #800000;">'script:\sudo.ps1'</span></pre></div></div>

<p>(or the respective directory)</p>
<p>save, exit</p>
<p>restart the session.</p>
<p>Now you’re able to start any application with elevated rights. e.g.</p>

<div class="wp_syntax"><div class="code"><pre class="powershell" style="font-family:monospace;">sudo notepad.exe</pre></div></div>

<p>or</p>

<div class="wp_syntax"><div class="code"><pre class="powershell" style="font-family:monospace;">sudo powershell</pre></div></div>

<p>to get a elevated shell but I’ve yet to find a way to make the elevated shell being opened in the working dir where the command was executed.</p>
<h3  class="related_post_title">You might also like</h3><ul class="related_post"><li><a href="http://www.ainotenshi.org/704/playing-with-windows-powershell" title="Playing with Windows PowerShell">Playing with Windows PowerShell</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.ainotenshi.org/710/%e2%80%98sudo%e2%80%99-for-powershell-sorta/feed</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Playing with Windows PowerShell</title>
		<link>http://www.ainotenshi.org/704/playing-with-windows-powershell</link>
		<comments>http://www.ainotenshi.org/704/playing-with-windows-powershell#comments</comments>
		<pubDate>Mon, 23 Feb 2009 21:25:29 +0000</pubDate>
		<dc:creator>Julian Saraceni</dc:creator>
				<category><![CDATA[IT]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[powershell]]></category>
		<category><![CDATA[vista]]></category>

		<guid isPermaLink="false">http://www.ainotenshi.org/playing-with-windows-powershell</guid>
		<description><![CDATA[Making the switch from XP to Vista64 I found myself playing around with the OS and some of Microsoft&#8217;s current projects and tools. As a Linux command line enthusiast I was always bothered by the lack of a good shell &#8230; <a href="http://www.ainotenshi.org/704/playing-with-windows-powershell">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Making the switch from XP to Vista64 I found myself playing around with the OS and some of Microsoft&#8217;s current projects and tools. As a Linux command line enthusiast I was always bothered by the lack of a good shell for the Windows part of my computer life. Cygwin just felt wrong and since I heard about the new MS shell called Powershell a while back I thought maybe I should give it shot. Getting used to it. </p>
<p><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" border="0" alt="" src="http://www.ainotenshi.org/wp-content/uploads/2009/02/proc101.png" width="640" height="383" /></p>
<p>What I really liked is the fact that they took a lot of familiar u/*nix shell commands, using them as aliases to their own commands. So, there are different commands you can use to achieve the same task. Pretty simple example everyone should be familiar with is listing files in a directory.Doing a &#8216;Get-ChildItem&#8217; will get you to your list just as &#8216;ls&#8217; or &#8216;dir&#8217; does.</p>
<p>&#8216;Get-Process&#8217; and &#8216;ps&#8217; is just another example and the only strange thing about it, is that the aliases always seem to be be the better choice, since they&#8217;re much shorter and therefore quicker to type.</p>
<p>Why would you type &#8216;Get-Help New-PSDrive&#8217; if you can do the same typing &#8216;man mount&#8217; ? </p>
<p>That&#8217;s it for now. Next time I&#8217;ll tell you how to get a little sudo-like command for Powershell.</p>
<h3  class="related_post_title">You might also like</h3><ul class="related_post"><li><a href="http://www.ainotenshi.org/710/%e2%80%98sudo%e2%80%99-for-powershell-sorta" title="‘sudo’ for Powershell, sorta">‘sudo’ for Powershell, sorta</a></li><li><a href="http://www.ainotenshi.org/914/microsoft-office-for-mac-2011-communicator-and-lion" title="Microsoft Office for Mac 2011 Communicator and Lion">Microsoft Office for Mac 2011 Communicator and Lion</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.ainotenshi.org/704/playing-with-windows-powershell/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>In the mood…</title>
		<link>http://www.ainotenshi.org/696/in-the-mood</link>
		<comments>http://www.ainotenshi.org/696/in-the-mood#comments</comments>
		<pubDate>Sun, 15 Feb 2009 18:06:39 +0000</pubDate>
		<dc:creator>Julian Saraceni</dc:creator>
				<category><![CDATA[IT]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[bored]]></category>
		<category><![CDATA[stuff-to-come]]></category>

		<guid isPermaLink="false">http://www.ainotenshi.org/in-the-mood</guid>
		<description><![CDATA[Sometimes you feel like everything you do is just boring and nothing could change that. Sometimes you don’t feel like blogging at all, because you’re not sure if there is anything to write about. Sometimes however you do feel like &#8230; <a href="http://www.ainotenshi.org/696/in-the-mood">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Sometimes you feel like everything you do is just boring and nothing could change that.</p>
<p>Sometimes you don’t feel like blogging at all, because you’re not sure if there is anything to write about.</p>
<p>Sometimes however you do feel like writing a blog post because it could be the revelation you’re looking for.</p>
<p> </p>
<p>I haven’t been actively doing anything with my blogs or websites for quite some time now and I think it’s the right time to change that. While I was being bored I managed to do some things that I’m going to write about in the days and weeks to come.</p>
<p>Among those things are a guide on how to set up your own Ubuntu server in Virtual Box on Windows to use to get some ssh and web action going. Another thing I plan writing about is setting up IIS7 on Vista and getting some applications and modules up and running.</p>
<p>So, that’s it for now. Hope to see you next time.</p>
<h3  class="related_post_title">You might also like</h3><ul class="related_post"><li><a href="http://www.ainotenshi.org/124/good-blog-writing-software-for-linux-or-lack-thereof" title="Good blog writing software for Linux or lack thereof">Good blog writing software for Linux or lack thereof</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.ainotenshi.org/696/in-the-mood/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Three reasons why Windows 7 won&#8217;t kill Linux</title>
		<link>http://www.ainotenshi.org/609/three-reasons-why-windows-7-wont-kill-linux</link>
		<comments>http://www.ainotenshi.org/609/three-reasons-why-windows-7-wont-kill-linux#comments</comments>
		<pubDate>Sun, 09 Nov 2008 17:26:00 +0000</pubDate>
		<dc:creator>Julian Saraceni</dc:creator>
				<category><![CDATA[IT]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[free software]]></category>
		<category><![CDATA[Linux business]]></category>
		<category><![CDATA[windows 7]]></category>

		<guid isPermaLink="false">http://www.ainotenshi.org/?p=609</guid>
		<description><![CDATA[Windows 7, Microsoft&#8217;s new Operating system is on it&#8217;s way to be released mid 2009 and because of its, in comparison to prior abominations from Redmod more modular structure, lighter appearance and promotion of Netbook usage some have already announced &#8230; <a href="http://www.ainotenshi.org/609/three-reasons-why-windows-7-wont-kill-linux">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Windows 7, Microsoft&#8217;s new Operating system is on it&#8217;s way to be released mid 2009 and because of its, in comparison to prior abominations from Redmod more modular structure, lighter appearance and promotion of Netbook usage some have already announced the death of the Linux world. Here are five reasons why this won&#8217;t be the case and why you should <strong>not</strong> erase Linux from your hard drive as soon as Windows 7 hits the shelves.<span id="more-609"></span></p>
<h3>#1 Wait for the release before praising it</h3>
<p>It seems there is some kind of mass hypnosis going on, every single tech site seems to be exited about what Redmond will bring to live a few months from now, forgotten is the Vista disaster, forgotten all broken promises of the Past. The OS isn&#8217;t released, it&#8217;s not done and has never been used in productive Environments by the average user. You don&#8217;t know yet how users will react, if adaption will increase compared to Vista and if users forgot about all the bad publicity it brought with it.</p>
<h3>#2 Independence</h3>
<p>Companies choose Linux because they want to be independent of one supplier, no longer be forced to change the way the work depending on how their OS wants them to but to make your OS work the way you want. While home users probably never touch the source code of any application they use on their PC, this is something larger companies can effectively use to create their own slick application and operating system for their own needs. Windows 7 will bring some modularity, but you will still have to use Microsoft&#8217;s choice of components not your own. More and more public institutions, especially outside of the United States don&#8217;t want to depend on foreign controlled infrastructure any longer and are slowly but steadily making progress adapting Linux systems. The German foreign ministry and the French Gendarmerie are good, prominent examples of this.</p>
<h3>#3 cost of transition</h3>
<p>One of the killer arguments against the use of Linux has always been the cost of transition to Linux powered solutions from the ones from Redmond. You had to train your employees, buy new service contracts with Linux companies, maybe get some new hardware and so on. Nonetheless a lot of companies and even home users made the switch, got used to the new environment and build upon in. The cost of transition works both ways, reverting back to solutions from Redmond will cost a lot of money in form of licenses, re-development of your own applications, training employees etc and of course your loss of independence as mentioned in #2 which will lead to even more cost.</p>
<h3  class="related_post_title">You might also like</h3><ul class="related_post"><li><a href="http://www.ainotenshi.org/516/you-cant-make-money-with-the-linux-desktop" title="You can&#8217;t make money with the Linux Desktop">You can&#8217;t make money with the Linux Desktop</a></li><li><a href="http://www.ainotenshi.org/491/re-the-netbook-battlefront" title="RE: The NetBook Battlefront">RE: The NetBook Battlefront</a></li><li><a href="http://www.ainotenshi.org/435/openids-the-stallmanian-way" title="OpenIDs the Stallmanian way">OpenIDs the Stallmanian way</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.ainotenshi.org/609/three-reasons-why-windows-7-wont-kill-linux/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>thoughts on Digital Rights Management</title>
		<link>http://www.ainotenshi.org/528/thoughts-on-digital-rights-management</link>
		<comments>http://www.ainotenshi.org/528/thoughts-on-digital-rights-management#comments</comments>
		<pubDate>Sun, 02 Nov 2008 15:35:48 +0000</pubDate>
		<dc:creator>Julian Saraceni</dc:creator>
				<category><![CDATA[IT]]></category>
		<category><![CDATA[drm]]></category>
		<category><![CDATA[mp3]]></category>
		<category><![CDATA[music]]></category>

		<guid isPermaLink="false">http://www.ainotenshi.org/?p=528</guid>
		<description><![CDATA[This isn&#8217;t actually news, but I happened to have a discussion about whether DRM is good for you so I&#8217;m sharing some of my thoughts. First of all, DRM is bad, and that&#8217;s already all what most people heard and &#8230; <a href="http://www.ainotenshi.org/528/thoughts-on-digital-rights-management">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>This isn&#8217;t actually news, but I happened to have a discussion about whether DRM is good for you so I&#8217;m sharing some of my thoughts. First of all, DRM is bad, and that&#8217;s already all what most people heard and know about it if they heard about it at all. So why is that, what makes it bad, evil or defective by design like slashdotters like to call it.<span id="more-528"></span></p>
<p>It depends on your point of view, if you&#8217;re the industry this stuff is like magical pixie dust, it makes you greediest dreams come true. And If you&#8217;re the customer? Well, then you should be angry because you get screwed, not that this would be something never happened before but this time they got away with it and news about DRM-free music isn&#8217;t something too many people will be happy about, or at least shouldn&#8217;t be.</p>
<p>DRM usually works like this. Let&#8217;s say you just bought a piece of music, online. This information is getting stored in your account data, and on the general DRM server. The DRM server keeps track of what you do and what you&#8217;re allowed to do with your music, like burning it on CD three times, putting it on five of your PCs and carry it around on one two of your portable music players. OK, fine you can live with that. At least that&#8217;s what they make you believe. Your music, isn&#8217;t actually your music, you just bought a license that allows you to play the music. This license has to be renewed every now and then so you can still listen to the music, if the license is revoked or gets invalid for whatever reason, you can&#8217;t play &#8216;your&#8217; songs any more.</p>
<p>On of the reasons licenses may get invalid is because the company where you bought your music might decide to shut down their DRM server. Maybe because they switched to DRM free music, maybe because they went out of business or maybe because of the Thermonuclear Holocaust. Just imagine, you&#8217;re standing where the Trafalgar Square used to be, talking with you zombie friends and suddenly you music stops playing because Apple decided that survivors, zombies and mutants don&#8217;t need to listen to their music.</p>
<p>The only thing you can do to remain in control of your music is to not buy DRM-infected music in the first place, if you already bought some, they&#8217;ll become useless at some point when you&#8217;re LPs and CDs are still working. My conclusion, don&#8217;t buy DRM, period.</p>
<h3  class="related_post_title">You might also like</h3><ul class="related_post"><li>You might also like</li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.ainotenshi.org/528/thoughts-on-digital-rights-management/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Stop pirating Adobe software, use Free Software instead</title>
		<link>http://www.ainotenshi.org/502/stop-pirating-adobe-software-use-free-software-instead</link>
		<comments>http://www.ainotenshi.org/502/stop-pirating-adobe-software-use-free-software-instead#comments</comments>
		<pubDate>Mon, 27 Oct 2008 13:21:20 +0000</pubDate>
		<dc:creator>Julian Saraceni</dc:creator>
				<category><![CDATA[IT]]></category>
		<category><![CDATA[adobe photoshop]]></category>
		<category><![CDATA[FOSS]]></category>
		<category><![CDATA[gimp]]></category>
		<category><![CDATA[pirating]]></category>

		<guid isPermaLink="false">http://www.ainotenshi.org/?p=502</guid>
		<description><![CDATA[I really don&#8217;t get it how people can continue pirating proprietary software like some Adobe products (Photoshop, Illustrator, etc.) when there are quality, Free Software alternatives like the Gimp or Inkscape. Sure, Gimp currently lacks some features you need for &#8230; <a href="http://www.ainotenshi.org/502/stop-pirating-adobe-software-use-free-software-instead">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I really don&#8217;t get it how people can continue pirating proprietary software like some Adobe products (Photoshop, Illustrator, etc.) when there are quality, Free Software alternatives like the Gimp or Inkscape.</p>
<p>Sure, Gimp currently lacks some features you need for professional printing like CMYK, but that doesn&#8217;t disqualify for the use in non- or semi-professional environments, at home.<span id="more-502"></span> You can even use Photoshop brushes in Gimp, so you won&#8217;t miss those. Good resources for Photoshop brushes are <a href="http://qbrushes.com/" target="_blank">Qbrushes</a> and DeviantArt.</p>
<p>Working with the Gimp might be a little different, many complain about the interface but it&#8217;s not as bad a people say once, you got used to it and start using hot-keys. Try using &lt;TAB&gt; in one of the newer releases, and you won&#8217;t have to complain about multiple windows anymore. In most of Linux&#8217; window managers you can set any window to stay in front, all the time which is another method to get those windows not to float around behind the main window when you need it. If you&#8217;re using windows, just get <a href="http://dm2.sourceforge.net/" target="_blank">DM2</a> to get the same functionality. It&#8217;s a little app, that doesn&#8217;t even need installation.</p>
<p>To get started you should take a look at those numerous tutorials for Gimp available on the Internet. You can ask google for some, but those I found most helpful were <a href="http://gimp-tutorials.net/" target="_blank">gimp-tutorials.net</a> and <a href="http://www.gimp-tutorials.com/">gimp-tutorials.com</a>.</p>
<h3  class="related_post_title">You might also like</h3><ul class="related_post"><li><a href="http://www.ainotenshi.org/320/my-favourite-open-source-applications-for-windows" title="my favourite open source applications for Windows">my favourite open source applications for Windows</a></li><li><a href="http://www.ainotenshi.org/624/greyscale-picture-with-coloured-highlight" title="Greyscale picture with coloured highlight">Greyscale picture with coloured highlight</a></li><li><a href="http://www.ainotenshi.org/563/new-version-of-the-wordpress-vigilance-theme-released" title="New version of the Wordpress Vigilance theme released">New version of the Wordpress Vigilance theme released</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.ainotenshi.org/502/stop-pirating-adobe-software-use-free-software-instead/feed</wfw:commentRss>
		<slash:comments>63</slash:comments>
		</item>
		<item>
		<title>Stallman, a man the Free Software movement needs</title>
		<link>http://www.ainotenshi.org/384/stallman-a-man-the-free-software-movement-needs</link>
		<comments>http://www.ainotenshi.org/384/stallman-a-man-the-free-software-movement-needs#comments</comments>
		<pubDate>Mon, 06 Oct 2008 17:03:41 +0000</pubDate>
		<dc:creator>Julian Saraceni</dc:creator>
				<category><![CDATA[IT]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[direction]]></category>
		<category><![CDATA[free software]]></category>
		<category><![CDATA[leader]]></category>
		<category><![CDATA[linus]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[rms]]></category>
		<category><![CDATA[stallman]]></category>
		<category><![CDATA[torvalds]]></category>

		<guid isPermaLink="false">http://www.ainotenshi.org/?p=384</guid>
		<description><![CDATA[Last week Richard M. Stallman, founder of the Free Software movement caused some head scratching when he made some remarks about cloud computing and web applications calling them stupid. He argued that to cease control over your data, isn&#8217;t really &#8230; <a href="http://www.ainotenshi.org/384/stallman-a-man-the-free-software-movement-needs">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a rel="nofollow" href="http://www.ainotenshi.org/2008/09/30/stallman-calls-use-of-web-apps-worse-than-stupidity/" target="_blank">Last week</a> Richard M. Stallman, founder of the Free Software movement caused some head scratching when he made some remarks about cloud computing and web applications calling them stupid. He argued that to cease control over your data, isn&#8217;t really a good thing to do as you start depending on big companies good will, entrusting them with private, sensible and even corporate data. While I do agree that it might be dangerous to rely on others taking care of your data, I don&#8217;t think it&#8217;s stupid in all cases, at least as long as you stay aware of the risks.<span id="more-384"></span></p>
<p>It is of utmost importance to rise people&#8217;s awareness of these issues, in the end it&#8217;s their choice but without knowledge, there is no choice. Richard Stallman might often seem radical in his ideas, compared to other ideological leaders of the Free Software movement but he has a point and he&#8217;s being consistent. The Movement needs vocal people like him to point in a direction and to rise awareness of ongoing issues in a non free world. However leading us there is the job of pragmatics, like Torvalds, Shuttleworth or De Icaza.</p>
<p>Stallman might not be someone doing great in front of Cameras, looking like the cliche of a geek living in his mother&#8217;s basement, but people do listen to what he says and people respond loudly to controversial statements he makes, proving his importance to the movement.  Arguing about whether or not software, or wisdom should be free is almost impossible without mentioning his name or what he believes in.</p>
<p>A Free Software world may be out of reach at this point and in a time when cost reduction has become the driving force behind spreading Free Software instead of ideology in  one man stands up to point at the right direction, so the movement doesn&#8217;t forget about its goals and its responsibilitto the people.</p>
<h3  class="related_post_title">You might also like</h3><ul class="related_post"><li><a href="http://www.ainotenshi.org/320/my-favourite-open-source-applications-for-windows" title="my favourite open source applications for Windows">my favourite open source applications for Windows</a></li><li><a href="http://www.ainotenshi.org/103/its-not-just-about-privacy-its-about-user-autonomy" title="&#8220;It&#8217;s not just about privacy. It&#8217;s about user autonomy&#8221;">&#8220;It&#8217;s not just about privacy. It&#8217;s about user autonomy&#8221;</a></li><li><a href="http://www.ainotenshi.org/100/infrarecorder-free-open-source-cddvd-burning-solution-for-windows" title="InfraRecorder, free open source CD/DVD burning solution for Windows">InfraRecorder, free open source CD/DVD burning solution for Windows</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.ainotenshi.org/384/stallman-a-man-the-free-software-movement-needs/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Stallman calls use of web apps worse than stupidity</title>
		<link>http://www.ainotenshi.org/346/stallman-calls-use-of-web-apps-worse-than-stupidity</link>
		<comments>http://www.ainotenshi.org/346/stallman-calls-use-of-web-apps-worse-than-stupidity#comments</comments>
		<pubDate>Tue, 30 Sep 2008 07:51:54 +0000</pubDate>
		<dc:creator>Julian Saraceni</dc:creator>
				<category><![CDATA[Gimp Tutorials]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[J-Blog]]></category>
		<category><![CDATA[Real World]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[www]]></category>
		<category><![CDATA[evil]]></category>
		<category><![CDATA[freedom]]></category>
		<category><![CDATA[fsf]]></category>
		<category><![CDATA[gmail]]></category>
		<category><![CDATA[stallman]]></category>
		<category><![CDATA[web apps]]></category>
		<category><![CDATA[worse than stupidity]]></category>

		<guid isPermaLink="false">http://www.ainotenshi.org/?p=346</guid>
		<description><![CDATA[As it turns out Stallman doesn&#8217;t like web applications, he doesn&#8217;t like them at all and says that using GMail and its kind is &#8220;worse than stupidity&#8221; and just as bad as proprietary software. One reason you should not use &#8230; <a href="http://www.ainotenshi.org/346/stallman-calls-use-of-web-apps-worse-than-stupidity">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<div id="attachment_347" class="wp-caption aligncenter" style="width: 510px"><img class="size-full wp-image-347" title="stallman" src="http://www.ainotenshi.org/wp-content/uploads/2008/09/stallman.png" alt="original picture by Elke Wetzig, CC-SA-BY 2.0 Germany" width="500" height="189" /><p class="wp-caption-text">original picture by Elke Wetzig, CC-SA-BY 2.0 Germany</p></div>
<p>As it <a href="http://www.guardian.co.uk/technology/2008/sep/29/cloud.computing.richard.stallman" target="_blank">turns</a> <a href="http://blogoscoped.com/archive/2008-09-30-n12.html" target="_blank">out</a> Stallman doesn&#8217;t like web applications, he doesn&#8217;t like them at all and says that using GMail and its kind is &#8220;worse than stupidity&#8221; and just as bad as proprietary software.<span id="more-346"></span></p>
<blockquote><p>One reason you should not use web applications to do your computing is that you lose control &#8230; It’s just as bad as using a proprietary program. Do your own computing on your own computer with your copy of a freedom-respecting program. If you use a proprietary program or somebody else’s web server, you’re defenceless. You’re putty in the hands of whoever developed that software.</p></blockquote>
<p>The FSF itself created a license for web applications called AGPL which is used by projects like identi.ca, so this little rant really surprised me. Why do you create a license for some kind of software if it is evil anyway?</p>
<p>I could agree with Stallman on many issues but clearly not on this one. While it is true that we don&#8217;t have control over our data, applications aren&#8217;t available on every PC, obviously not everyone is able to set up his own server and/or build personal web applications. I run a couple of applications namely irssi, mutt, ejabberd and my webdev environment on my personal server right next to me and Ubuntu does a great job helping you to set all of those things up, but you simply can not expect all people to learn how to set up servers, bother with ports and ips and dynamic dns. This isn&#8217;t Sparta but it still is madness.</p>
<p>What&#8217;s next? Should I produce my own electricity, drill for water and get some cows living in my flat? I really don&#8217;t think so.</p>
<p>Anyway, if now you&#8217;re concerned about your data and think about hosting your own services and apps you may take a look at <a href="http://www.ubuntu.com/products/whatisubuntu/serveredition" target="_blank">Ubuntu Server</a> and <a href="http://www.ubuntu.com/products/whatisubuntu/serveredition/jeos" target="_blank">Ubuntu Jeos</a></p>
<h3  class="related_post_title">You might also like</h3><ul class="related_post"><li><a href="http://www.ainotenshi.org/888/web-apps-on-your-desktop" title="Web apps on your desktop">Web apps on your desktop</a></li><li><a href="http://www.ainotenshi.org/636/get-your-gmails-into-your-feed-reader" title="Get your GMails into your feed reader">Get your GMails into your feed reader</a></li><li><a href="http://www.ainotenshi.org/400/appnr-searching-and-finding-ubuntu-apps" title="Appnr, searching and finding Ubuntu apps">Appnr, searching and finding Ubuntu apps</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.ainotenshi.org/346/stallman-calls-use-of-web-apps-worse-than-stupidity/feed</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>my favourite open source applications for Windows</title>
		<link>http://www.ainotenshi.org/320/my-favourite-open-source-applications-for-windows</link>
		<comments>http://www.ainotenshi.org/320/my-favourite-open-source-applications-for-windows#comments</comments>
		<pubDate>Mon, 29 Sep 2008 08:42:44 +0000</pubDate>
		<dc:creator>Julian Saraceni</dc:creator>
				<category><![CDATA[IT]]></category>
		<category><![CDATA[dm2]]></category>
		<category><![CDATA[favorite]]></category>
		<category><![CDATA[favourite]]></category>
		<category><![CDATA[filezilla]]></category>
		<category><![CDATA[FOSS]]></category>
		<category><![CDATA[free software]]></category>
		<category><![CDATA[gimp]]></category>
		<category><![CDATA[infrarecorder]]></category>
		<category><![CDATA[keepass]]></category>
		<category><![CDATA[list]]></category>
		<category><![CDATA[notepad++]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[pidgin]]></category>
		<category><![CDATA[putty]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://www.ainotenshi.org/?p=320</guid>
		<description><![CDATA[Using Windows as a free software enthusiast is isn't always easy but often people don't have a real choice and nothing can be done. But that doesn't mean you have to abandon free software altogether salving one's conscience. I'll leave Firefox and OpenOffice.org out of the List. <a href="http://www.ainotenshi.org/320/my-favourite-open-source-applications-for-windows">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Using Windows as a free software enthusiast is isn&#8217;t always easy but often people don&#8217;t have a real choice and nothing can be done. But that doesn&#8217;t mean you have to abandon free software altogether salving one&#8217;s conscience. I&#8217;ll leave Firefox out of the List.<span id="more-320"></span></p>
<ul>
<p style="text-align: left;"><strong><a href="http://notepad-plus.sourceforge.net/" target="_blank">Notepad++</a></strong></p>
<p><a href="http://www.ainotenshi.org/wp-content/uploads/2008/09/nppp.png"><img class="alignleft size-thumbnail wp-image-323" title="nppp" src="http://www.ainotenshi.org/wp-content/uploads/2008/09/nppp-150x150.png" alt="" width="150" height="150" /></a>Although slim and minimalistic in its appearance Notepad++ is one feature filled editor. Tabs, syntax highlighting for a variety of languages, a FTP-client, Hex-editor, a customisable interface and split screen you name it. It&#8217;s not Emacs, there are no mp3 player nor are there any doing-you-laundry-while-you&#8217;re-sleeping features, the only thing it does is to help you view and edit code and it does so very well.</p>
<p>There are autocompletion, regexp and plugin functionality for the lazy/effective ones of you.</p>
<p style="text-align: left;"><strong><a href="http://www.chiark.greenend.org.uk/~sgtatham/putty/" target="_blank">Putty</a></strong></p>
</ul>
<ul><a href="http://www.ainotenshi.org/wp-content/uploads/2008/09/putty.png"><img class="alignleft size-thumbnail wp-image-327" title="putty" src="http://www.ainotenshi.org/wp-content/uploads/2008/09/putty-150x150.png" alt="" width="150" height="150" /></a>Using Windows won&#8217;t make your server or your Linux machine at home home go away, and what do you need to access them? SSH! And if you&#8217;re looking for a SSH client, look no further this is all you need. Putty itself can be configured to be somewhat portable (check the docs) and is tiny in size. It&#8217;s just a simple executable.</p>
<p>There are however several other executables to enhance your Putty experience, take a look at Pageant and PuttyGen.</ul>
<ul><a href="http://filezilla-project.org/" target="_blank"><strong>Filezilla</strong></a></p>
<p><a href="http://www.ainotenshi.org/wp-content/uploads/2008/09/filezilla.png"><img class="alignleft size-thumbnail wp-image-333" title="filezilla" src="http://www.ainotenshi.org/wp-content/uploads/2008/09/filezilla-150x150.png" alt="" width="150" height="150" /></a>Filezilla actually managed to become a very popular, free FTP client in the Windows world and offers all the features you&#8217;d expect from it. In addition it integrates with Putty&#8217;s Pageant, using its assigned public SSH keys and serves as a SFTP client.</p>
<p>There isn&#8217;t much more you can say about it. It&#8217;s a FTP client, not Emacs! <img src='http://www.ainotenshi.org/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </ul>
<ul>
<p style="text-align: left;"><strong><a href="http://www.keepass.info" target="_blank">Keepass</a></strong></p>
<p><a href="http://www.ainotenshi.org/wp-content/uploads/2008/09/keepass.png"><img class="alignleft size-thumbnail wp-image-329" title="keepass" src="http://www.ainotenshi.org/wp-content/uploads/2008/09/keepass-150x150.png" alt="" width="150" height="150" /></a>Everyone needs to remember passwords, everyone needs to remember account names. Keepass remembers them for you and not only that. Keypass helps you creating secure, random and customisable passwords for all your accounts. You can easily manage all of your countless accounts, adding comments and URLs to the specific entries. There is a plugin helping you to import all accounts saved in your Firefox profile to Keepass to help you getting started. The Databases are encrypted and can only be opened by a Password, a Keyfile or both of them.</ul>
<ul><strong><a href="http://www.pidgin.im" target="_blank">Pidgin</a></strong></p>
<p><a href="http://www.ainotenshi.org/wp-content/uploads/2008/09/pidgin.png"><img class="alignleft size-thumbnail wp-image-330" title="pidgin" src="http://www.ainotenshi.org/wp-content/uploads/2008/09/pidgin-150x150.png" alt="" width="150" height="150" /></a>Tired of installing various IM/Chat clients to keep in touch with your friends and business relations and don&#8217;t want to trust closed source applications like Digsby or Trillian? Then Pidgin is what you&#8217;re looking for.</p>
<p>Formerly known as Gaim, Pidgin is able to use a variety of protocols (MSN, OSCAR, Gadu-Gadu, IRC, MySpace, Facebook, Novell GroupWise, Silc, Yahoo, Lotus Sametime, QQ, SIP, Bonjour) by default and others like Twitter can be added via third party plugins. Talking of which, Pidgin comes with a bunch preinstalled and even more are ready for download or being linked on the website.</p>
<p>Theming, via GTK is possible.</ul>
<ul><strong><a href="http://www.gimp.org" target="_blank">Gimp</a></strong></p>
<p><a href="http://www.ainotenshi.org/wp-content/uploads/2008/09/gimp.png"><img class="alignleft size-thumbnail wp-image-331" title="gimp" src="http://www.ainotenshi.org/wp-content/uploads/2008/09/gimp-150x150.png" alt="" width="150" height="150" /></a>Photoshop may be the leader in this field, but if you don&#8217;t want to spent or have a lot of money, or just prefer free software GIMP is basically all you need to draw some pictures, tweak your photos and create a graphics for you website. There are countless plugins, scripts and tutorials for GIMP on the web and it is compatible to Photoshop brushes and after you set up Ghostscript able to handle Adobe&#8217;s Postscript files as well. Layers, masks, filers if offers all you need for your semi-professional, image manipulating experience</ul>
<ul><strong><a href="http://infrarecorder.sourceforge.net/" target="_blank">InfraRecorder</a></strong></p>
<p><a href="http://www.ainotenshi.org/wp-content/uploads/2008/09/infrarecorder.png"><img class="alignleft size-thumbnail wp-image-328" title="infrarecorder" src="http://www.ainotenshi.org/wp-content/uploads/2008/09/infrarecorder-150x150.png" alt="" width="150" height="150" /></a>I already wrote about InfraRecorder in an earlier post. It&#8217;s a free software CD/DVD burning solution built upon cdrecord. Its interface is similar to Nero&#8217;s classic interface which in turn looks like some kind of FTP client &#8212; you get the idea. In addition it offers the InfraExpress interface which does the same as the NeroExpress interface: Showing only those options and functions you&#8217;re likely going to use, opening the classic view only if needed. Today&#8217;s burning suits have become emacs like monsters and if you&#8217;re only looking for some easy and straightforward way to burn files on a disc you found your solution.</ul>
<ul><strong><a href="http://dm2.sourceforge.net/" target="_blank">DM2</a></strong></p>
<p><a href="http://www.ainotenshi.org/wp-content/uploads/2008/09/dm2.png"><img class="alignleft size-thumbnail wp-image-332" title="dm2" src="http://www.ainotenshi.org/wp-content/uploads/2008/09/dm2-150x150.png" alt="" width="150" height="150" /></a>Working with Gimp on Windows and on Linux environments made me miss one thing. Window&#8217;s window manager doesn&#8217;t offer &#8220;stay on top&#8221; functionality, you can&#8217;t roll up your windows. DM2 offers this without installation, just download it, start it and set it to autostart if you like and set windows to stay on top.</p>
<p>But it doesn&#8217;t stop there also makes it possible to changing Windows transparency, setting their priority and minimising them into the systray or giving them a floating icon. There is some basic, multiple workspace functionality as well but lacking a pager I really couldn&#8217;t be bothered using it.</ul>
<p>You can stop counting. I made 3 Emacs references!</p>
<h3  class="related_post_title">You might also like</h3><ul class="related_post"><li><a href="http://www.ainotenshi.org/100/infrarecorder-free-open-source-cddvd-burning-solution-for-windows" title="InfraRecorder, free open source CD/DVD burning solution for Windows">InfraRecorder, free open source CD/DVD burning solution for Windows</a></li><li><a href="http://www.ainotenshi.org/107/keepassx-cross-platform-password-manager" title="KeePassX, Cross Platform Password Manager">KeePassX, Cross Platform Password Manager</a></li><li><a href="http://www.ainotenshi.org/106/create-flvs-with-mencoder-on-windows" title="Create FLVs with Mencoder on Windows">Create FLVs with Mencoder on Windows</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.ainotenshi.org/320/my-favourite-open-source-applications-for-windows/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Firefox 3.0.2 released. Finally offers option to set GMail as default mail app</title>
		<link>http://www.ainotenshi.org/314/firefox-302-released-finally-offers-gmail-as-mail-app</link>
		<comments>http://www.ainotenshi.org/314/firefox-302-released-finally-offers-gmail-as-mail-app#comments</comments>
		<pubDate>Wed, 24 Sep 2008 07:38:45 +0000</pubDate>
		<dc:creator>Julian Saraceni</dc:creator>
				<category><![CDATA[IT]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[gmail]]></category>
		<category><![CDATA[mailto]]></category>
		<category><![CDATA[update]]></category>

		<guid isPermaLink="false">http://www.ainotenshi.org/?p=314</guid>
		<description><![CDATA[The new version was released this night and features, in addition to the usual security and bug fixes, a long awaited option &#8212; at least for me. It is now possible to choose GMail aka Google Mail as you default &#8230; <a href="http://www.ainotenshi.org/314/firefox-302-released-finally-offers-gmail-as-mail-app">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The new version was released this night and features, in addition to the usual security and bug fixes, a long awaited option &#8212; at least for me. It is now possible to choose GMail aka Google Mail as you default email application in the Application Settings dialog.<span id="more-314"></span></p>
<p>Until now users had to use self made scripts and batch files. For Windows users exists/existed the possibilty to auto-assign Firefox to use Gmail via the Google Talk Chat client.</p>
<p>Now, the steps to follow to get it all set up are quite easy:</p>
<p>Open the <strong>options/preferences</strong> dialog, go to the <strong>applications</strong> tab, look for <strong>mailto</strong> and change action to <strong>use gmail</strong></p>
<p><img class="aligncenter size-full wp-image-315" title="ff302gmail" src="http://www.ainotenshi.org/wp-content/uploads/2008/09/ff302gmail.png" alt="" width="499" height="406" /></p>
<h6><a href="http://mozillalinks.org/wp/2008/09/bug-fixes-more-languages-and%e2%80%a6-gmail-in-firefox-302" target="_blank">source:Mozilla Links</a></h6>
<h3  class="related_post_title">You might also like</h3><ul class="related_post"><li><a href="http://www.ainotenshi.org/636/get-your-gmails-into-your-feed-reader" title="Get your GMails into your feed reader">Get your GMails into your feed reader</a></li><li><a href="http://www.ainotenshi.org/375/cleaning-up-your-gmail-inbox" title="Cleaning up your GMail inbox">Cleaning up your GMail inbox</a></li><li><a href="http://www.ainotenshi.org/346/stallman-calls-use-of-web-apps-worse-than-stupidity" title="Stallman calls use of web apps worse than stupidity">Stallman calls use of web apps worse than stupidity</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.ainotenshi.org/314/firefox-302-released-finally-offers-gmail-as-mail-app/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

