<?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>sidenote</title>
	<atom:link href="http://sidenote.hu/feed/" rel="self" type="application/rss+xml" />
	<link>http://sidenote.hu</link>
	<description></description>
	<lastBuildDate>Sat, 04 Feb 2012 08:06:39 +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>Makefile for Large LaTeX Projects</title>
		<link>http://sidenote.hu/2012/02/04/makefile-for-large-latex-projects/</link>
		<comments>http://sidenote.hu/2012/02/04/makefile-for-large-latex-projects/#comments</comments>
		<pubDate>Sat, 04 Feb 2012 08:06:18 +0000</pubDate>
		<dc:creator>szantaii</dc:creator>
				<category><![CDATA[alkotunk]]></category>
		<category><![CDATA[munka]]></category>
		<category><![CDATA[szoftver]]></category>
		<category><![CDATA[TeX/LaTeX]]></category>

		<guid isPermaLink="false">http://sidenote.hu/?p=6814</guid>
		<description><![CDATA[Using a makefile for large LaTeX projects is a real time saver if you don&#8217;t use LaTeX IDEs (e.g. Texmaker, TeXworks). For example some of&#8230;]]></description>
			<content:encoded><![CDATA[<p>Using a makefile for large LaTeX projects is a real time saver if you don&#8217;t use LaTeX IDEs (e.g. <a href="http://www.xm1math.net/texmaker/">Texmaker</a>, <a href="http://www.tug.org/texworks/">TeXworks</a>). For example some of my friends have to log in to a central server, which provides the same LaTeX setup for everyone in their institution, to compile their documents. In this particular case using <em>make</em> is a <em>must do!</em> thing if you don&#8217;t want to fiddle around keeping track of which was the last command you executed or is your pdf up to date.</p>
<p><em>So, what are these makefile and make things?</em></p>
<blockquote><p>Make is a tool which controls the generation of executables and other non-source files of a program from the program&#8217;s source files.</p>
<p>Make gets its knowledge of how to build your program from a file called the <em>makefile</em>, which lists each of the non-source files and how to compute it from other files. When you write a program, you should write a makefile for it, so that it is possible to use Make to build and install the program.</p>
<p>[&hellip;]</p>
<p>Make figures out automatically which files it needs to update, based on which source files have changed. It also automatically determines the proper order for updating files, in case one non-source file depends on another non-source file. </p>
</blockquote>
<p><a href="http://www.gnu.org/software/make/">GNU Make</a></p>
<p>Here is my standard makefile template for projects utilizing <em>pdflatex</em> and <em>bibtex</em> (also downloadable at the end of the post):</p>
<blockquote><pre># Makefile for my LaTeX project

# LaTeX
LC=pdflatex

# Bibtex
BC=bibtex

# The main tex file (without extension)
MAIN=main

# The tex files that are included in the project's main tex file
DEPS=./tex/chapter1.tex ./tex/chapter2.tex ./tex/chapter3.tex

MIDTARGET=$(MAIN).pdf

# The desired filename
TARGET=myprojectv01.pdf

.PHONY: clean show all

all: $(TARGET)

$(TARGET): $(MIDTARGET)
	cp $(MIDTARGET) $(TARGET)

$(MIDTARGET): $(MAIN).tex $(MAIN).aux
	$(BC) $(MAIN).aux
	$(LC) $(MAIN).tex
	$(LC) $(MAIN).tex

$(MAIN).aux: $(MAIN).tex $(DEPS)
	$(LC) $(MAIN).tex

show: $(TARGET)
	xdg-open $< &#038;

clean:
	rm $(MAIN).out $(MAIN).aux $(MAIN).toc $(MAIN).lof $(MAIN).lot $(MAIN).log \
$(MAIN).bbl $(MAIN).blg $(MIDTARGET) $(TARGET)
</pre>
</blockquote>
<p>I won't go into the details, but if you want to complement this makefile for using <em>latex</em> instead of pdflatex then you'll have to create another middle target for creating the dvi file. For those who'll use this makefile in a non-X environment don't use the <em>show</em> target beacuse <em>xdg-open</em> is meant to be used under X.</p>
<p>I think the <a href="http://www.gnu.org/software/make/manual/">GNU Make Manual</a> is detailed enough to understand what I was talking about. But feel free to <a href="http://mailhide.recaptcha.net/d?k=01WJaJJnRSA8a4SyH5EPavKQ==&amp;c=se3ETJWwE6jinyR8vHzVftItootepBxqjwO5qkXt5VE=" onclick="window.open('http://mailhide.recaptcha.net/d?k=01WJaJJnRSA8a4SyH5EPavKQ==&amp;c=se3ETJWwE6jinyR8vHzVftItootepBxqjwO5qkXt5VE=', '', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=500,height=300'); return false;" title="Kattints egy e-mail címért!">contact me</a> if you have any questions.</p>
<p>Download: <a href='http://sidenote.hu/wp-content/uploads/2012/02/makefile.tar.gz'>makefile.tar.gz</a></p>
]]></content:encoded>
			<wfw:commentRss>http://sidenote.hu/2012/02/04/makefile-for-large-latex-projects/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sakamichi no Apollon</title>
		<link>http://sidenote.hu/2012/01/28/sakamichi-no-apollon/</link>
		<comments>http://sidenote.hu/2012/01/28/sakamichi-no-apollon/#comments</comments>
		<pubDate>Sat, 28 Jan 2012 09:58:58 +0000</pubDate>
		<dc:creator>szantaii</dc:creator>
				<category><![CDATA[animáció]]></category>
		<category><![CDATA[anime]]></category>
		<category><![CDATA[Japán]]></category>
		<category><![CDATA[zene]]></category>
		<category><![CDATA[jazz]]></category>
		<category><![CDATA[videó]]></category>

		<guid isPermaLink="false">http://sidenote.hu/?p=6789</guid>
		<description><![CDATA[A coming of age story taking place in the 1960&#8242;s, the story tells about two young men and their passion for jazz music. Sakamichi no&#8230;]]></description>
			<content:encoded><![CDATA[<p><img src="http://sidenote.hu/wp-content/uploads/2012/01/sakamichi_no_apollon.jpg" alt="" title="Sakamichi no Apollon" width="705" height="468" class="alignnone size-full wp-image-6800" /></p>
<blockquote><p>A coming of age story taking place in the 1960&#8242;s, the story tells about two young men and their passion for jazz music.</p>
</blockquote>
<p><a href="http://en.wikipedia.org/wiki/Sakamichi_no_Apollon">Sakamichi no Apollon &ndash; Wikipedia</a></p>
<p><iframe width="705" height="422" src="http://www.youtube.com/embed/nzY6Y-AHEaw?rel=0" frameborder="0" allowfullscreen></iframe></p>
<p><a href="http://www.animenewsnetwork.com/encyclopedia/people.php?id=774">Shinichiro Watanabe</a>, a Cowboy Bebop és a Samurai Champloo rendezőjének új sorozata. A fantasztikus zene garantált!</p>
<p>Máris az &bdquo;év animéje&rdquo;-ként emlegetik, pedig csak áprilisban kezdik majd vetíteni.</p>
]]></content:encoded>
			<wfw:commentRss>http://sidenote.hu/2012/01/28/sakamichi-no-apollon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu HUD</title>
		<link>http://sidenote.hu/2012/01/24/ubuntu-hud/</link>
		<comments>http://sidenote.hu/2012/01/24/ubuntu-hud/#comments</comments>
		<pubDate>Tue, 24 Jan 2012 17:35:05 +0000</pubDate>
		<dc:creator>szantaii</dc:creator>
				<category><![CDATA[gizmó]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[szoftver]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://sidenote.hu/?p=6781</guid>
		<description><![CDATA[Itt az újabb magic! Még a héten lecsekkolom, de most legyen elég egy screenshot és egy videó Mark Shuttleworth-től. This is the HUD. It’s a&#8230;]]></description>
			<content:encoded><![CDATA[<p>Itt az újabb magic! Még a héten lecsekkolom, de most legyen elég egy screenshot és egy videó Mark Shuttleworth-től.</p>
<p><a href="http://sidenote.hu/wp-content/uploads/2012/01/Pangolin_matrix_v1-3e.png"><img src="http://sidenote.hu/wp-content/uploads/2012/01/Pangolin_matrix_v1-3e-705x440.png" alt="" title="Say hello to the Head-Up Display, or HUD." width="705" height="440" class="alignnone size-large wp-image-6782" /></a></p>
<blockquote><p>This is the HUD. It’s a way for you to express your intent and have the application respond appropriately. We think of it as “beyond interface”, it’s the “intenterface”.  This concept of “intent-driven interface” has been a primary theme of our work in the Unity shell, with dash search as a first class experience pioneered in Unity. Now we are bringing the same vision to the application, in a way which is completely compatible with existing applications and menus.</p>
</blockquote>
<p><a href="http://www.markshuttleworth.com/archives/939">Mark Shuttleworth  &raquo; Introducing the HUD. Say hello to the future of the menu.</a></p>
<p><iframe width="705" height="388" src="http://www.youtube.com/embed/w_WW-DHqR3c?rel=0" frameborder="0" allowfullscreen></iframe></p>
<p>Nem tudom, hogy sírjak-e vagy nevessek, mindenesetre egy 720p-s videónak jobban örültem volna.</p>
]]></content:encoded>
			<wfw:commentRss>http://sidenote.hu/2012/01/24/ubuntu-hud/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Truffaz</title>
		<link>http://sidenote.hu/2012/01/21/truffaz/</link>
		<comments>http://sidenote.hu/2012/01/21/truffaz/#comments</comments>
		<pubDate>Sat, 21 Jan 2012 17:49:34 +0000</pubDate>
		<dc:creator>szantaii</dc:creator>
				<category><![CDATA[zene]]></category>
		<category><![CDATA[jazz]]></category>
		<category><![CDATA[videó]]></category>

		<guid isPermaLink="false">http://sidenote.hu/?p=6770</guid>
		<description><![CDATA[KIDAM film production]]></description>
			<content:encoded><![CDATA[<p><embed src='http://www.kidam.tv/_sites/KIDAM/player/player.swf' height='416' width='705' bgcolor='0x000000' allowscriptaccess='always' allowfullscreen='true' flashvars="&#038;author=Kidam&#038;autostart=false&#038;backcolor=0x000000&#038;date=2010&#038;description=(extrait%20de%3A%20Erik%20Truffaz%20-%20EPK)&#038;file=http%3A%2F%2Fwww.kidam.tv%2FFLV%2FEPK_Truffaz.flv&#038;frontcolor=0xcccccc&#038;lightcolor=0xff7f00&#038;plugins=viral-2&#038;skin=http%3A%2F%2Fwww.kidam.tv%2F_sites%2FKIDAM%2Fplayer%2Fstylish.swf&#038;viral.allowmenu=true&#038;viral.email_footer=www.kidam.tv&#038;viral.email_subject=video%20sur%20kidam&#038;viral.oncomplete=true"/></p>
<p><a href="http://www.kidam.tv/supports/music.php?idvecteur=56">KIDAM film production</a></p>
]]></content:encoded>
			<wfw:commentRss>http://sidenote.hu/2012/01/21/truffaz/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apollo 11 Lunar Landing Visualization, 1969 (2011)</title>
		<link>http://sidenote.hu/2012/01/09/apollo-11-lunar-landing-visualization-1969-2011/</link>
		<comments>http://sidenote.hu/2012/01/09/apollo-11-lunar-landing-visualization-1969-2011/#comments</comments>
		<pubDate>Mon, 09 Jan 2012 21:11:58 +0000</pubDate>
		<dc:creator>szantaii</dc:creator>
				<category><![CDATA[gizmó]]></category>
		<category><![CDATA[ismeretterjesztő]]></category>
		<category><![CDATA[videó]]></category>
		<category><![CDATA[világűr]]></category>

		<guid isPermaLink="false">http://sidenote.hu/?p=6766</guid>
		<description><![CDATA[MIT Laboratory for Automation, Robotics, and Society Directed by David Mindell Visualization Design: Yanni Loukissas Research Assistant: Francisco Alonso The Apollo 11 visualization draws together&#8230;]]></description>
			<content:encoded><![CDATA[<p><iframe src="http://player.vimeo.com/video/28199826?title=0&amp;byline=0&amp;portrait=0" width="705" height="529" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></p>
<blockquote><p>MIT Laboratory for Automation, Robotics, and Society<br />
Directed by David Mindell</p>
<p>Visualization Design: Yanni Loukissas<br />
Research Assistant: Francisco Alonso</p>
<p>The Apollo 11 visualization draws together social and technical data from the 1969 moon landing in a dynamic 2D graphic. The horizontal axis is an interactive timeline. The vertical axis is divided into several sections, each corresponding to a data source. At the top, commentators are present in narratives from Digital Apollo and NASA technical debriefings. Just below are the members of ground control. The middle section is a log-scale graph stretching from Earth (~10E9 ft. away) to the Moon. Utterances from the landing CAPCOM, Duke, the command module pilot, Collins, the mission commander, Armstrong, and the lunar module pilot, Aldrin, are plotted on this graph. The graph is partially overlaid on a composite image of the lunar surface. Data from the Apollo computer systems, the DSKY (display/keyboard interface to the Apollo computer) and the AGC (Abort Guidance Computer) occupies the bottom of the visualization. Each circle on the graph represents an utterance by one member of the team or ground control, with the size of the circle proportional to the length of the utterance. Lines connecting subsequent utterances represent inquiries and responses between team members. Specific events are labeled, such as computer program changes and program alarms. During a real-time playback, the white line moves across the horizontal axis as audio plays, and the crew’s specific utterances are spelled out to the right. In sync with the human dialog, the AGC and DSKY display values and modes. In these dynamics, one can trace the trading of workload and authority during the critical final phases of landing, and how that workload was offloaded from the lunar module to Houston in response to the program alarms.</p>
</blockquote>
<p><a href="http://vimeo.com/28199826">Apollo 11 Lunar Landing Visualization, 1969 (2011)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://sidenote.hu/2012/01/09/apollo-11-lunar-landing-visualization-1969-2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Néhány dolog a hyperref csomaggal kapcsolatban</title>
		<link>http://sidenote.hu/2012/01/07/nehany-dolog-a-hyperref-csomaggal-kapcsolatban/</link>
		<comments>http://sidenote.hu/2012/01/07/nehany-dolog-a-hyperref-csomaggal-kapcsolatban/#comments</comments>
		<pubDate>Sat, 07 Jan 2012 21:29:49 +0000</pubDate>
		<dc:creator>szantaii</dc:creator>
				<category><![CDATA[gizmó]]></category>
		<category><![CDATA[ismeretterjesztő]]></category>
		<category><![CDATA[munka]]></category>
		<category><![CDATA[szoftver]]></category>
		<category><![CDATA[TeX/LaTeX]]></category>
		<category><![CDATA[tipográfia]]></category>

		<guid isPermaLink="false">http://sidenote.hu/?p=6748</guid>
		<description><![CDATA[Ez azoknak szól, akik &#8211; hozzám hasonlóan &#8211; sokat szoptak már a hyperref csomaggal. Szeptemberben volt egy alkalom, amikor fekvő A4-es méretű lappal kellett dolgoznom.&#8230;]]></description>
			<content:encoded><![CDATA[<p>Ez azoknak szól, akik &ndash; hozzám hasonlóan &ndash; sokat szoptak már a <em>hyperref</em> csomaggal.</p>
<p>Szeptemberben volt egy alkalom, amikor fekvő A4-es méretű lappal kellett dolgoznom. Ez eddig nem ügy, amíg később rá nem jöttem, hogy kell nekem <em>hyperref</em> is. Betöltöttem hát. Ekkor borult fel minden, mert az elkészült oldal valami félig fekete, álló A4-es dokumentum lett. Alászálltam a net legmélyebb bugyraiba, ahol megtaláltam a választ a kérdésemre. Először töltsük be a <em>hyperref</em> csomagot a <code>setpagesize=false</code> opcióval és csak aztán a <em>geometry</em>-t.</p>
<blockquote><pre>\documentclass{memoir}
\usepackage[setpagesize=false, xetex]{hyperref}
\usepackage[a4paper, landscape, xetex]{geometry}</pre>
</blockquote>
<p>Ma pedig nekiálltam review-olni egy egy évvel korábbi projektemet. Egy darab kommentet nem írtam hozzá, úgyhogy ezzel el is ment a napom nagy része. Aztán ugyanabba a problémába ütköztem, amibe már egy évvel ezelőtt is. Vagyis a kész PDF-ben az összes bookmarkot egyetlen láncba fűzve, nem pedig szép fát találtam. Újfent alászálltam a mélybe, és egy <a href="http://lists.debian.org/debian-tetex-maint/2005/04/msg00159.html">Debian maintenance levlistán</a> találtam meg a megoldást.</p>
<blockquote><p>&#8220;magyar.ldf&#8221; redefines most of the essential commands<br />
that also hyperref must change. A patch would have to<br />
include many of hyperref/driver stuff/nameref, adopted<br />
to magyar.ldf.</p>
</blockquote>
<p>Alatta pedig ott volt egy gyönyörű makró:</p>
<blockquote><pre>\makeatletter
\let\Hy@magyar@saved@refstepcounter\refstepcounter
\addto\extrasmagyar{%
  \let\H@refstepcounter\refstepcounter
  \let\refstepcounter\Hy@magyar@saved@refstepcounter
  \expandafter\renewcommand\expandafter*\expandafter\@ssect
      \expandafter[\expandafter 5\expandafter]\expandafter{%
    \expandafter\def\expandafter\@currentlabelname\expandafter{%
      \expandafter #\expandafter 5\expandafter
    }%
    \@ssect{#1}{#2}{#3}{#4}{#5}%
    \phantomsection
  }%
  \expandafter\Hy@magyar@patch@sect\expandafter{%
    \@sect{#1}{#2}{#3}{#4}{#5}{#6}[{#7}]{#8}%
  }{#1#2#3#4#5#6[#7]#8}{#2}{#7}%
}
\def\Hy@magyar@patch@sect#1#2#3#4{%
  \def\@sect#2{%
    \setcounter{section@level}{#3}%
    \def\@currentlabelname{#4}%
    \ifnum #3>\c@secnumdepth
      \Hy@GlobalStepCount\Hy@linkcounter
      \xdef\@currentHref{section*.\the\Hy@linkcounter}%
    \fi
    #1%
    \ifnum #3>\c@secnumdepth
      \Hy@raisedlink{\hyper@anchorstart{\@currentHref}\hyper@anchorend}%
    \fi
  }%
}
\makeatother</pre>
</blockquote>
<p>Őszintén megmondom, még nem néztem át tüzetesebben, de eddig minden gondomat megoldotta.</p>
]]></content:encoded>
			<wfw:commentRss>http://sidenote.hu/2012/01/07/nehany-dolog-a-hyperref-csomaggal-kapcsolatban/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>sidenote Tumblr oldal</title>
		<link>http://sidenote.hu/2012/01/05/sidenote-tumblr-oldal/</link>
		<comments>http://sidenote.hu/2012/01/05/sidenote-tumblr-oldal/#comments</comments>
		<pubDate>Thu, 05 Jan 2012 09:02:06 +0000</pubDate>
		<dc:creator>szantaii</dc:creator>
				<category><![CDATA[a blog]]></category>
		<category><![CDATA[web2]]></category>

		<guid isPermaLink="false">http://sidenote.hu/?p=6733</guid>
		<description><![CDATA[Haladni kell a korral, ezért a sidenote már Tumblren is fent van. Tumbászok, örvendjetek! A magyar Tumblr-közösséget eredetileg indexes újságírók és húszas éveikben járó egyetemisták&#8230;]]></description>
			<content:encoded><![CDATA[<p>Haladni kell a korral, ezért a <em>sidenote</em> már Tumblren is fent van. Tumbászok, örvendjetek!</p>
<blockquote><p>A magyar Tumblr-közösséget eredetileg indexes újságírók és húszas éveikben járó egyetemisták alkották. Nekik legalább 500 követőjük van és átlagosan 2 éve van Tumblr-blogjuk. Érezhető azonban egy új hullám is, rengeteg friss és egyre fiatalabb felhasználóval &#8211; legalábbis egy pszichológushallgató <a href="http://www.mohaonline.hu/eszme/a_tumblr_pszichologiaja">tavaly nyáron publikált tanulmánya szerint</a>. Egy átlagos magyar &bdquo;tumbász&rdquo; eszerint 24 éves, van Facebook-profilja, más közösségi oldalakon is aktív, és naponta egy-két órát a blogjával foglalkozik.</p>
</blockquote>
<p><a href="http://hvg.hu/Tudomany/20120103_tumblr">IT | Tudomány: 2012 a Tumblr éve lehet itthon &#8211; HVG.hu</a></p>
<p><img src="http://sidenote.hu/wp-content/uploads/2012/01/sidenote_tumblr.png" alt="" title="sidenote Tumblr oldal" width="705" height="456" class="alignnone size-full wp-image-6735" /></p>
<p><a href="http://sidenotehu.tumblr.com/">sidenote Tumblr oldal</a></p>
]]></content:encoded>
			<wfw:commentRss>http://sidenote.hu/2012/01/05/sidenote-tumblr-oldal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Boldog</title>
		<link>http://sidenote.hu/2011/12/24/boldog/</link>
		<comments>http://sidenote.hu/2011/12/24/boldog/#comments</comments>
		<pubDate>Sat, 24 Dec 2011 11:00:30 +0000</pubDate>
		<dc:creator>szantaii</dc:creator>
				<category><![CDATA[holiday]]></category>
		<category><![CDATA[humor]]></category>
		<category><![CDATA[void *]]></category>
		<category><![CDATA[videó]]></category>

		<guid isPermaLink="false">http://sidenote.hu/?p=6727</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><iframe width="705" height="427" src="http://www.youtube.com/embed/uJs-h6JEE00?rel=0&amp;hd=1" frameborder="0" allowfullscreen></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://sidenote.hu/2011/12/24/boldog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ani-Kuri 15</title>
		<link>http://sidenote.hu/2011/12/19/ani-kuri-15/</link>
		<comments>http://sidenote.hu/2011/12/19/ani-kuri-15/#comments</comments>
		<pubDate>Mon, 19 Dec 2011 20:10:01 +0000</pubDate>
		<dc:creator>szantaii</dc:creator>
				<category><![CDATA[animáció]]></category>
		<category><![CDATA[anime]]></category>
		<category><![CDATA[Japán]]></category>
		<category><![CDATA[művészet, dizájn]]></category>
		<category><![CDATA[reklám]]></category>
		<category><![CDATA[videó]]></category>

		<guid isPermaLink="false">http://sidenote.hu/?p=6713</guid>
		<description><![CDATA[Az Ani Kuri tévéműsor mellé készült 15 db. egyperces animét 2007-2008-ban láthatták a japán nézők az NHK csatornán, mindegyiket más-más rendezte. Többek közt Makoto Shinkai,&#8230;]]></description>
			<content:encoded><![CDATA[<blockquote><p>Az Ani Kuri tévéműsor mellé készült 15 db. egyperces animét 2007-2008-ban láthatták a japán nézők az NHK csatornán, mindegyiket más-más rendezte. Többek közt Makoto Shinkai, Michael Arias, Mamoru Oshii és Satoshi Kon.</p>
</blockquote>
<p><a href="http://asiafan.hu/archives/2011/12/18/Ani-Kuri_15/">Keleti Szél</a></p>
<p>Playlistbe rendeztem őket, tessék:</p>
<p><iframe width="705" height="427" src="http://www.youtube.com/embed/videoseries?list=PLDD9F8E5C92E624C0&amp;hl=hu_HU&amp;hd=1" frameborder="0" allowfullscreen></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://sidenote.hu/2011/12/19/ani-kuri-15/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apró figyelmesség</title>
		<link>http://sidenote.hu/2011/12/17/apro-figyelmesseg/</link>
		<comments>http://sidenote.hu/2011/12/17/apro-figyelmesseg/#comments</comments>
		<pubDate>Sat, 17 Dec 2011 07:56:19 +0000</pubDate>
		<dc:creator>szantaii</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[szoftver]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://sidenote.hu/?p=6706</guid>
		<description><![CDATA[It&#8217;s safer to connect the computer to AC power before updating. Az ilyet szeretem.]]></description>
			<content:encoded><![CDATA[<p><img src="http://sidenote.hu/wp-content/uploads/2011/12/like_ubuntu_update.png" alt="" title="It's safer to connect the computer to AC power before updating." width="600" height="91" class="alignnone size-full wp-image-6707" /></p>
<blockquote><p>It&#8217;s safer to connect the computer to AC power before updating.</p>
</blockquote>
<p>Az ilyet szeretem.</p>
]]></content:encoded>
			<wfw:commentRss>http://sidenote.hu/2011/12/17/apro-figyelmesseg/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

