<?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>Oscars Blag</title>
	<atom:link href="http://oscarhjelm.com/blag/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://oscarhjelm.com/blag</link>
	<description>Legendawesome.</description>
	<lastBuildDate>Tue, 30 Apr 2013 17:16:27 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>How to set up and compile Aircrack-ng on a Raspberry Pi</title>
		<link>http://oscarhjelm.com/blag/?p=1207</link>
		<comments>http://oscarhjelm.com/blag/?p=1207#comments</comments>
		<pubDate>Tue, 30 Apr 2013 17:16:27 +0000</pubDate>
		<dc:creator>Oscar</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://oscarhjelm.com/blag/?p=1207</guid>
		<description><![CDATA[The Aircrack-ng suite is a collection of useful tools aiding you in collecting wireless data and recovering wireless passwords. Perhaps it&#8217;s questionable to call it &#8220;password recovery&#8221;, since surely it&#8217;s easier logging into the wireless access point and read the password &#8211; but at least it has some legitimate uses. I wanted to dump all [...]]]></description>
				<content:encoded><![CDATA[<p>The Aircrack-ng suite is a collection of useful tools aiding you in collecting wireless data and recovering wireless passwords. Perhaps it&#8217;s questionable to call it &#8220;password recovery&#8221;, since surely it&#8217;s easier logging into the wireless access point and read the password &#8211; but at least it has some legitimate uses.</p>
<p>I wanted to dump all of my wireless traffic in order to check how much data I was actually transmitting. In order to do this, I needed the following:<br />
1. A device to store and process the data<br />
2. A wireless network card</p>
<p>I chose to use my Raspberry Pi together with a USB WiFi card &#8211; and this is how I did it.</p>
<h2>Step 1 &#8211; Install Raspbian</h2>
<p>I&#8217;ve only used raspbian, so it&#8217;s no surprise I&#8217;ll suggest you to install it prior to trying this. I&#8217;m confident you can get this to work with any Debian-based distro, but don&#8217;t quote me on it.</p>
<h2>Step 2 &#8211; Download the Source Code for Aircrack-ng</h2>
<p>Connect to your Raspberry Pi via SSH or use a monitor and keyboard to access it. Then run the following command (you do need internet access):</p>
<blockquote>
<pre>wget http://download.aircrack-ng.org/aircrack-ng-1.1.tar.gz</pre>
</blockquote>
<p>Congratulations &#8211; you now have the source code. Go ahead and unpack it with the following:</p>
<blockquote>
<pre>tar -zxvf aircrack-ng-1.1.tar.gz</pre>
</blockquote>
<p>Enter the folder with:</p>
<blockquote>
<pre>cd aircrack-ng-1.1</pre>
</blockquote>
<p>All done? Good.</p>
<h2>Step 3 &#8211; Getting the Dependencies.</h2>
<p>If you try to compile the source right away, you&#8217;ll get something like&#8230;</p>
<blockquote>
<pre>crypto.h:12:26: fatal error: openssl/hmac.h: No such file or directory</pre>
</blockquote>
<p>&#8230; which means you need to get OpenSSL.</p>
<p>This takes care of that:</p>
<blockquote>
<pre>sudo apt-get install libssl-dev</pre>
</blockquote>
<h2>Step 4 &#8211; Compiling the source</h2>
<p>You should now have the required libraries and a functioning compiler already, but if in doubt go ahead and run:</p>
<blockquote>
<pre>sudo apt-get install build-essential</pre>
</blockquote>
<p>I&#8217;ve had issues with the default makefile, so let&#8217;s fix that real quick.</p>
<blockquote>
<pre>nano common.mak</pre>
</blockquote>
<p>Find the two lines starting with &#8220;CFLAGS&#8221; and remove &#8220;-Werror&#8221; from it. Werror makes all warnings into errors, which halts the progress. It works fine anyway. Press CTRL+O and then Enter to save. Then CTRL+X to exit.</p>
<p>Time to make:</p>
<blockquote>
<pre>make</pre>
</blockquote>
<p>And finally:</p>
<blockquote>
<pre>sudo make install</pre>
</blockquote>
<p>(Optionally you can run &#8220;sudo airodump-ng-oui-update&#8221; as prompted to update the OUI file).</p>
<h2>All Done!</h2>
<p>I won&#8217;t cover how the software works, but you should now have it set up and fully functioning. Compiling and installing code from source isn&#8217;t as hard as it might first seem.</p>
]]></content:encoded>
			<wfw:commentRss>http://oscarhjelm.com/blag/?feed=rss2&#038;p=1207</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Raspberry Pi &#8211; Control the on board LED lights</title>
		<link>http://oscarhjelm.com/blag/?p=1204</link>
		<comments>http://oscarhjelm.com/blag/?p=1204#comments</comments>
		<pubDate>Wed, 27 Mar 2013 16:06:26 +0000</pubDate>
		<dc:creator>Oscar</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://oscarhjelm.com/blag/?p=1204</guid>
		<description><![CDATA[If you want to control a LED from the command line, but you&#8217;re not comfortable using the GPIO (and perhaps soldering), then feel free to use the HDD Status LED on the Raspberry Pi chip. It&#8217;s a fun feature, but pretty useless. Most of Raspberry Pi&#8217;s LEDs are hardware-controlled, meaning you can&#8217;t control them from [...]]]></description>
				<content:encoded><![CDATA[<p>If you want to control a LED from the command line, but you&#8217;re not comfortable using the GPIO (and perhaps soldering), then feel free to use the HDD Status LED on the Raspberry Pi chip.</p>
<p>It&#8217;s a fun feature, but pretty useless. Most of Raspberry Pi&#8217;s LEDs are hardware-controlled, meaning you can&#8217;t control them from the operating system or software. But if you don&#8217;t mind the other LEDs flashing distractingly, then it might be more useful to you.</p>
<p>First you want to disable the trigger with:</p>
<blockquote><p>echo none &gt; /sys/class/leds/led0/trigger</p></blockquote>
<p>Now you&#8217;re free to set the state. It goes from 0 to 255, but anything above 0 will turn the LED on. The follow would light it up:</p>
<blockquote><p>echo 1 &gt;/sys/class/leds/led0/brightness</p></blockquote>
<p>And this would shut it down:</p>
<blockquote><p>echo 0 /sys/class/leds/led0/brightness</p></blockquote>
<p>I&#8217;d suggest a full reboot to restore the diode when (if?) you&#8217;re done playing with it.</p>
<p>(You might need to use sudo, as with anything fun. At your own risk and so on.)</p>
]]></content:encoded>
			<wfw:commentRss>http://oscarhjelm.com/blag/?feed=rss2&#038;p=1204</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Raspberry Pi Temperature</title>
		<link>http://oscarhjelm.com/blag/?p=1202</link>
		<comments>http://oscarhjelm.com/blag/?p=1202#comments</comments>
		<pubDate>Wed, 27 Mar 2013 15:51:36 +0000</pubDate>
		<dc:creator>Oscar</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://oscarhjelm.com/blag/?p=1202</guid>
		<description><![CDATA[You&#8217;re able to check the temperature of your Raspberry Pi easily. Simply run the command below /opt/vc/bin/vcgencmd measure_temp That should output the CPU temperature of the Raspberry Pi. Or at least the temperature of the sensor. Works for me on Raspbian &#8220;Wheezy&#8221; (image 2013-12-09).]]></description>
				<content:encoded><![CDATA[<p>You&#8217;re able to check the temperature of your Raspberry Pi easily. Simply run the command below</p>
<blockquote><p>/opt/vc/bin/vcgencmd measure_temp</p></blockquote>
<p>That should output the CPU temperature of the Raspberry Pi. Or at least the temperature of the sensor.</p>
<p>Works for me on Raspbian &#8220;Wheezy&#8221; (image 2013-12-09).</p>
]]></content:encoded>
			<wfw:commentRss>http://oscarhjelm.com/blag/?feed=rss2&#038;p=1202</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Raspbery Pi &#8211; Getting HDMI to Work Properly</title>
		<link>http://oscarhjelm.com/blag/?p=1200</link>
		<comments>http://oscarhjelm.com/blag/?p=1200#comments</comments>
		<pubDate>Wed, 27 Mar 2013 15:46:07 +0000</pubDate>
		<dc:creator>Oscar</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://oscarhjelm.com/blag/?p=1200</guid>
		<description><![CDATA[I used a HDMI cable with a DVI adapter without issue, but I started having issues when I ditched the adapter. The resolution went down, and the smaller image was centered, leaving a big black border. So how did I fix it? Uncomment or add the following line to /boot/config.txt hdmi_drive=2 Value 2 means normal [...]]]></description>
				<content:encoded><![CDATA[<p>I used a HDMI cable with a DVI adapter without issue, but I started having issues when I ditched the adapter. The resolution went down, and the smaller image was centered, leaving a big black border.</p>
<p>So how did I fix it? Uncomment or add the following line to /boot/config.txt</p>
<blockquote><p>hdmi_drive=2</p></blockquote>
<p>Value 2 means normal HDMI (sound will be sent over HDMI if enabled). Value 1 would be DVI mode. No idea why the adapter made it work perfectly without the settings change. Autoconfig?</p>
<p>I think it&#8217;s amazing that the Raspberry Pi can handle 1080p.</p>
]]></content:encoded>
			<wfw:commentRss>http://oscarhjelm.com/blag/?feed=rss2&#038;p=1200</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>i3wm &#8211; i3status unable to detect battery fix</title>
		<link>http://oscarhjelm.com/blag/?p=1196</link>
		<comments>http://oscarhjelm.com/blag/?p=1196#comments</comments>
		<pubDate>Wed, 27 Feb 2013 15:57:52 +0000</pubDate>
		<dc:creator>Oscar</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://oscarhjelm.com/blag/?p=1196</guid>
		<description><![CDATA[If you install i3wm and i3status fail to detect your battery, here&#8217;s one solution: Open /etc/i3status.conf and look for &#8220;battery 0 {&#8220;. Add the following line inside the battery config: path = &#8220;/sys/class/power_supply/BAT1/uevent&#8221; The location might differ, so navigate to power_supply and find the BATX appropriate for you. I&#8217;ve seen someone use BAT%d in their [...]]]></description>
				<content:encoded><![CDATA[<p>If you install i3wm and i3status fail to detect your battery, here&#8217;s one solution:</p>
<p>Open /etc/i3status.conf and look for &#8220;battery 0 {&#8220;. Add the following line inside the battery config:</p>
<blockquote><p>path = &#8220;/sys/class/power_supply/BAT1/uevent&#8221;</p></blockquote>
<p>The location might differ, so navigate to power_supply and find the BAT<em><strong>X</strong></em> appropriate for you. I&#8217;ve seen someone use BAT%d in their config (%d would refer to an integer), but I havn&#8217;t tested it.</p>
<p>i3status should now automatically detect your battery, log out or reboot to see the changes.</p>
]]></content:encoded>
			<wfw:commentRss>http://oscarhjelm.com/blag/?feed=rss2&#038;p=1196</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to set up Syslog-ng server on Debian</title>
		<link>http://oscarhjelm.com/blag/?p=1193</link>
		<comments>http://oscarhjelm.com/blag/?p=1193#comments</comments>
		<pubDate>Mon, 11 Feb 2013 19:16:36 +0000</pubDate>
		<dc:creator>Oscar</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://oscarhjelm.com/blag/?p=1193</guid>
		<description><![CDATA[Syslog is a great standard for handling logs, especially over a network. So how do you set it up on Debian? Sending logs over a network isn&#8217;t rocket science. Step 1 &#8211; install syslog-ng First, run &#8220;sudo apt-get update&#8221; and &#8220;sudo apt-get upgrade&#8221; in order to update your packages. Then install syslog-ng with &#8220;sudo apt-get [...]]]></description>
				<content:encoded><![CDATA[<p><a href="http://en.wikipedia.org/wiki/Syslog">Syslog </a>is a great standard for handling logs, especially over a network. So how do you set it up on Debian? Sending logs over a network isn&#8217;t rocket science.</p>
<p>Step 1 &#8211; install syslog-ng</p>
<p>First, run &#8220;sudo apt-get update&#8221; and &#8220;sudo apt-get upgrade&#8221; in order to update your packages. Then install syslog-ng with &#8220;sudo apt-get install syslog-ng&#8221;. Repeat this on all systems which should use syslog.</p>
<p>Step 2 &#8211; configure the clients</p>
<p>Open up &#8220;/etc/syslog-ng/syslog-ng.conf&#8221;, scroll down to the bottom and write:</p>
<blockquote><p>destination d_tcp { tcp(&#8220;192.168.1.100&#8243; port(1234) localport(999)); };<br />
log { source(s_src); destination(d_tcp); };</p></blockquote>
<p>The first line defines a destination called d_tcp, which is a TCP connection to 192.168.1.100 on port 1234 from the local port 999. You should make sure that the IP is the IP of your syslog server. You may need to change the ports, depending on your configuration.</p>
<p>The second line tells syslog to send everything from s_scr (which is already defines, and has everything we need) to d_tcp. Basically, everything is sent to your server.</p>
<p>Do this for all clients.</p>
<p>Step 3- configure the server</p>
<p>Open up &#8220;/etc/syslog-ng/syslog-ng.conf&#8221;, scroll down to the bottom and write:</p>
<blockquote><p>source s_net { tcp(ip(192.168.1.100) port(1234)); };</p>
<p>destination collector {<br />
file(&#8220;/var/log/HOSTS/$HOST/$YEAR/$MONTH/$DAY/$FACILITY.log&#8221;<br />
owner(root) group(root) perm(0600) dir_perm(0700) create_dirs(yes)<br />
);<br />
};</p>
<p>log { source(s_net); destination(collector); };</p></blockquote>
<p>The first line defines a source, which listens on TCP port 1234 and IP 192.168.1.100. Modify this to match your environment.</p>
<p>Collector is a destination which, just like d_tcp, defines where stuff goes. Here we want to write a file and automatically create folders depending on time, host and what type of log entry. The $-sign in the path means it&#8217;s a variable.</p>
<p>And, just like before, the last line makes sure everything we collect from s_net goes to the proper destination.</p>
<p>If everything works as it should, you&#8217;ll see a folder HOSTS in /var/log, which in turn contains one folder per host that is sending logs.</p>
]]></content:encoded>
			<wfw:commentRss>http://oscarhjelm.com/blag/?feed=rss2&#038;p=1193</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Netseclab &#8211; nu lossnade det!</title>
		<link>http://oscarhjelm.com/blag/?p=1189</link>
		<comments>http://oscarhjelm.com/blag/?p=1189#comments</comments>
		<pubDate>Fri, 08 Feb 2013 15:44:54 +0000</pubDate>
		<dc:creator>Oscar</dc:creator>
				<category><![CDATA[BTH]]></category>
		<category><![CDATA[Svenska]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://oscarhjelm.com/blag/?p=1189</guid>
		<description><![CDATA[Eller hur är det frustrerande när saker och ting inte fungerar som man vill? Särskilt teknik. Särskilt när man inte ser varför det inte fungerar. I tillämpad nätverkssäkerhet så ska vi sätta upp ett par maskiner och säkra upp dem så att vi ser om något händer&#8230; och vad som händer. Det finns, på gott [...]]]></description>
				<content:encoded><![CDATA[<p>Eller hur är det frustrerande när saker och ting inte fungerar som man vill? Särskilt teknik. Särskilt när man inte ser varför det inte fungerar.</p>
<p>I tillämpad nätverkssäkerhet så ska vi sätta upp ett par maskiner och säkra upp dem så att vi ser om något händer&#8230; och vad som händer. Det finns, på gott och ont, en hel del verktyg att tillgå.</p>
<p>Snort</p>
<p><a href="http://oscarhjelm.com/blag/wp-content/uploads/base.png"><img class="aligncenter size-full wp-image-1190" alt="base" src="http://oscarhjelm.com/blag/wp-content/uploads/base.png" width="560" height="428" /></a> För att övervaka nätverket drog vi igång snort med acidbase. Ger en helt okej överblick och är snällt att använda. Datorn är kopplad till en Switched Port Analyzer (SPAN), och kan därför se all trafik på hela nätverket. Om man sitter fast kan jag rekommendera att läsa <a href="http://www.aboutdebian.com/snort.htm">http://www.aboutdebian.com/snort.htm</a></p>
<p>Syslog</p>
<p><a href="http://oscarhjelm.com/blag/wp-content/uploads/analyzer.png"><img class="aligncenter size-full wp-image-1191" alt="analyzer" src="http://oscarhjelm.com/blag/wp-content/uploads/analyzer.png" width="560" height="409" /></a>Men det räcker inte att se skiten på nätverket, om man inte kan se vad som sker i datorerna. När man väl har förstått hur syslog fungerar så är det inga problem att använda det, men det är en rätt tuff tröskel att ta sig över. Att få in en webbfront tog också sin lilla stund.</p>
<p>Jag och min labbkamrat satt först och försökte få <a href="http://en.wikipedia.org/wiki/OSSIM">OSSIM </a>att fungera, men utan vidare framsteg. Bara för att det är enklare innebär inte att det&#8230; ja&#8230; är enklare.</p>
]]></content:encoded>
			<wfw:commentRss>http://oscarhjelm.com/blag/?feed=rss2&#038;p=1189</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bastion Review</title>
		<link>http://oscarhjelm.com/blag/?p=1185</link>
		<comments>http://oscarhjelm.com/blag/?p=1185#comments</comments>
		<pubDate>Tue, 08 Jan 2013 15:31:54 +0000</pubDate>
		<dc:creator>Oscar</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[Games]]></category>

		<guid isPermaLink="false">http://oscarhjelm.com/blag/?p=1185</guid>
		<description><![CDATA[Bastion Playtime: 6h, easily replayable another 6h. Genre: Adventure Rating: 8/10 Such a great game, with such an awesome narrating. Story and art comes together to form something very well. The levels are beautiful, and said to be hand-drawn. The levels feature a lot of detail, and an unique style. As you play, the world [...]]]></description>
				<content:encoded><![CDATA[<p>Bastion<br />
Playtime: 6h, easily replayable another 6h.<br />
Genre: Adventure<br />
Rating: 8/10</p>
<p>Such a great game, with such an awesome narrating. Story and art comes together to form something very well.</p>
<p>The levels are beautiful, and said to be hand-drawn. The levels feature a lot of detail, and an unique style. As you play, the world forms around your character, which makes it that much more interesting when it comes to exploring the map. You don&#8217;t know if you can walk a certain path, until you&#8217;ve tried.</p>
<p>Talking about art &#8211; the music is great. It blends very well in with the rest of the game. You can listen to the soundtrack out of the game, and really enjoy it. At times you might hear the same track over and over, but it really doesn&#8217;t matter.</p>
<p>So yeah, it&#8217;s a great view, but what about gameplay? Well, Bastion features nothing unique here, but it performs very well. You have a primary and secondary weapon (select and mix as you want) together with a &#8220;secret skill&#8221;, which is some kind of combat ability. You want to use that shield of yours a lot, and time it well, as you can counter incoming attacks and retaliate. Fights are fast-paced and requires skill in order to be efficient.</p>
<p>I appreciate the story and how it&#8217;s being told. Throughout the game you&#8217;ll hear a stranger narrating what&#8217;s happening as you go along. You are, in a way, experiencing the story as it&#8217;s being told. It&#8217;s a great approach, and Bastion does it exceedingly well. Without this, Bastion would be just another 3rd-person adventure game.</p>
<p>Positive:<br />
Great art and music.<br />
Challenging levels.<br />
&#8220;Proving gounds&#8221; testing your abilities.<br />
Replayable (you can even bring all your previous gear with you into a new game!)<br />
Great story.</p>
<p>Negative:<br />
The optional reflection-levels might get a little repetitive.</p>
<p>Bottom line: An amazing single-player experience.</p>
]]></content:encoded>
			<wfw:commentRss>http://oscarhjelm.com/blag/?feed=rss2&#038;p=1185</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Automate EVERYTHING</title>
		<link>http://oscarhjelm.com/blag/?p=1181</link>
		<comments>http://oscarhjelm.com/blag/?p=1181#comments</comments>
		<pubDate>Fri, 14 Dec 2012 15:46:11 +0000</pubDate>
		<dc:creator>Oscar</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[Me]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://oscarhjelm.com/blag/?p=1181</guid>
		<description><![CDATA[There&#8217;s a certain beauty to automatization. The machine works silently, completing time-wasting tasks for you, while you spend your time doing things that matter. I like to keep my computer tidy &#8211; a cluttered desktop just makes me frustrated. Why? Because it takes forever to find something in a digital mess. The desktop tends to [...]]]></description>
				<content:encoded><![CDATA[<p>There&#8217;s a certain beauty to automatization. The machine works silently, completing time-wasting tasks for you, while you spend your time doing things that matter.</p>
<p>I like to keep my computer tidy &#8211; a cluttered desktop just makes me frustrated. Why? Because it takes forever to find something in a digital mess. The desktop tends to become cluttered, however, because cleaning isn&#8217;t fun. Moving icons to the right folders is in many ways just like cleaning, and cleaning is a chore. Chores are for the most part never fun.</p>
<p>To battle this, I wrote a script some time back which cleaned my desktop once per boot and put the contents into a folder with today&#8217;s date. With the hard drive storage capacity available, storing the vast amounts of files isn&#8217;t an issue. I have a lot of trash stored, but it&#8217;s easy to navigate and it keeps my desktop tidy.</p>
<p>Today, I took care of another issue. How do you keep track of your files if you have two computers? How do you transfer files? And why should you have to spend time on moving files? I bought a new laptop for school and work, which meant I had to find a way to move files. Windows file sharing works, but it&#8217;s time consuming. Dropbox could eliminate the problem, but it&#8217;s not suitable for large amounts of data. I do use Dropbox if it&#8217;s important only to have one version of the file, or if I need to access it on other devices, however.</p>
<p>I wrote another script as the solution. Every time i log on, it moves all the contents of an upload-folder to my server if I&#8217;m connected to my home network. This way, I can drop files into the folder, and forget about them. The script also downloads all files from a remote folder, and stores them locally in another folder. Essentially, I can move files asynchronous via a server.</p>
<p>All of this took some time to set up, but I&#8217;ll save more time in the long run.</p>
]]></content:encoded>
			<wfw:commentRss>http://oscarhjelm.com/blag/?feed=rss2&#038;p=1181</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Egna projekt</title>
		<link>http://oscarhjelm.com/blag/?p=1179</link>
		<comments>http://oscarhjelm.com/blag/?p=1179#comments</comments>
		<pubDate>Sat, 08 Dec 2012 14:27:38 +0000</pubDate>
		<dc:creator>Oscar</dc:creator>
				<category><![CDATA[Me]]></category>
		<category><![CDATA[Svenska]]></category>

		<guid isPermaLink="false">http://oscarhjelm.com/blag/?p=1179</guid>
		<description><![CDATA[Någonstans under berget av läxor var det lätt att tappa poängen med vad skolan egentligen är till för. Skoltvånget, något på gott och ont, sågs negativt. Det var lätt att få för sig att skolan var ett ställe där man satt av sin tid och behövde komma ihåg en serie av tråkiga fakta. Men ju [...]]]></description>
				<content:encoded><![CDATA[<p>Någonstans under berget av läxor var det lätt att tappa poängen med vad skolan egentligen är till för. Skoltvånget, något på gott och ont, sågs negativt. Det var lätt att få för sig att skolan var ett ställe där man satt av sin tid och behövde komma ihåg en serie av tråkiga fakta.</p>
<p>Men ju roligare kurser man läser, ju mer kommer poängen tillbaka. Skolan är inte något man måste göra, kunskap är inte något man måste ta in. Om man vill lära sig något eller inte är ett aktivt val man gör som individ, och det man lär sig kan då ses som ett intresseområde. Det gäller i vart fall när man går på högskola. För, helt ärligt, man vore galen om man tog studielån för att plåga sig själv med ointressanta ämnen.</p>
<p>Därför är det helt okej att sitta långa timmar och studera. Det är intressant, någon mer anledning behövs inte. Fast, ja, att kunna tjäna pengar på det sen är väl fördelaktigt.</p>
<p>Jag känner till ett par som har egna projekt vid sidan om studierna, inklusive mig själv. Det kan vara föreningar, företag eller små hobbyprojekt &#8211; någonting som utvecklar personerna. Att ha egna projekt är givande. Det är så pass givande att det till och med ingår i min utbildning att arbeta med ett projekt mot kund.</p>
]]></content:encoded>
			<wfw:commentRss>http://oscarhjelm.com/blag/?feed=rss2&#038;p=1179</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
