<?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 &#187; szoftver</title>
	<atom:link href="http://sidenote.hu/category/szoftver/feed/" rel="self" type="application/rss+xml" />
	<link>http://sidenote.hu</link>
	<description></description>
	<lastBuildDate>Mon, 06 Feb 2012 08:46:52 +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 whether your pdf is 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>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>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>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>
		<item>
		<title>_A. Vilag. Legjobb. Jateka._</title>
		<link>http://sidenote.hu/2011/12/10/_a-vilag-legjobb-jateka-_/</link>
		<comments>http://sidenote.hu/2011/12/10/_a-vilag-legjobb-jateka-_/#comments</comments>
		<pubDate>Sat, 10 Dec 2011 09:04:06 +0000</pubDate>
		<dc:creator>szantaii</dc:creator>
				<category><![CDATA[humor]]></category>
		<category><![CDATA[játék]]></category>
		<category><![CDATA[szoftver]]></category>
		<category><![CDATA[autó]]></category>
		<category><![CDATA[videó]]></category>

		<guid isPermaLink="false">http://sidenote.hu/?p=6688</guid>
		<description><![CDATA[Hajnalban kaptam ezt a mailt: Itt a vilag legjobb jateka. Ennyi. Kesz. Abba lehet fejezni a jatekfejlesztest ezutan. A jatek cime Desert Bus. Jol jegyezzetek&#8230;]]></description>
			<content:encoded><![CDATA[<p>Hajnalban kaptam ezt a mailt:</p>
<blockquote><p>Itt a vilag legjobb jateka. Ennyi. Kesz. Abba lehet fejezni a jatekfejlesztest ezutan.</p>
<p>A jatek cime Desert Bus. Jol jegyezzetek meg ezt a nevet.</p>
<p>Egy buszt kell elvezetni Arizonabol Nevadaba egy nyilegyenes uton valos idoben (nyolc oraig tart az ut) aztan VISSZA. A busz enyhen jobbra tart, ezert vegig ott kell ulni, es kanyarodni vele, hogy ne menjen le az utrol. Ez utobbi esetben az arokba szalad, es visszavontatjak Arizonaba. Termeszetesen ezt is valos idoben.</p>
<p>Itt a link, jatsszatok!</p>
<p><a href="http://desertbus-game.org/">http://desertbus-game.org/</a></p>
<p>Itt a leiras, addig is.</p>
<p><a href="http://desertbus.org/the-rules-of-desert-bus/">http://desertbus.org/the-rules-of-desert-bus/</a></p>
<p>Mondom, lehet, hogy ez csak nekem vicces, de en majdnem megfulladtam a rohogestol. Baldur&#8217;s Gate. Lofasz.</p>
</blockquote>
<p><iframe width="705" height="388" src="http://www.youtube.com/embed/nBr7EhL6Jpg?rel=0&amp;hd=1" frameborder="0" allowfullscreen></iframe></p>
<p><a href="http://www.youtube.com/watch?v=yfysmVFcZ2E">48 részes speed run</a> :)</p>
<p>Review:</p>
<p><iframe width="705" height="388" src="http://www.youtube.com/embed/4RsYxIDNjHo?rel=0" frameborder="0" allowfullscreen></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://sidenote.hu/2011/12/10/_a-vilag-legjobb-jateka-_/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Patent?</title>
		<link>http://sidenote.hu/2011/12/05/patent/</link>
		<comments>http://sidenote.hu/2011/12/05/patent/#comments</comments>
		<pubDate>Mon, 05 Dec 2011 09:10:48 +0000</pubDate>
		<dc:creator>szantaii</dc:creator>
				<category><![CDATA[szoftver]]></category>
		<category><![CDATA[void *]]></category>

		<guid isPermaLink="false">http://sidenote.hu/?p=6671</guid>
		<description><![CDATA[[15:32] &#60;ClassBot&#62; kamilnadeem asked: Your reaction on the latest thrashing of Micro$oft by Barnes &#038; Noble against their way of using litigation instead of Innovations&#8230;]]></description>
			<content:encoded><![CDATA[<blockquote><p><code>[15:32] &lt;ClassBot&gt; kamilnadeem asked: Your reaction on the latest thrashing of<br />
Micro$oft by Barnes &#038; Noble against their way of using litigation instead of<br />
Innovations philosophy?<br />
[15:33] &lt;sabdfl&gt; the biggest mistake microsoft made was to decide that patents<br />
would be an effective defence against new competitors<br />
[15:33] &lt;sabdfl&gt; because that stops you from really innovating yourself<br />
[15:33] &lt;sabdfl&gt; so Microsoft wasted most of a decade, thinking they could use<br />
patents to defend the castle.<br />
[15:33] &lt;sabdfl&gt; Meanwhile, others were innovating for real.<br />
[15:34] &lt;sabdfl&gt; The whole patent system is a sham, unfortunately.<br />
[15:34] &lt;sabdfl&gt; Patent authorities cannot realistically do their job; it<br />
[15:34] &lt;sabdfl&gt; it's an impossible job to do.<br />
[15:34] &lt;sabdfl&gt; and the patent system has slowly been twisted to do the exact<br />
opposite of its PR<br />
[15:35] &lt;sabdfl&gt; it's not, as many think, a system to defend the little inventor<br />
against the big bad corporate.<br />
[15:35] &lt;sabdfl&gt; Instead, it's a system to ensure the big bad corporate doesn't<br />
get any scary new competition.<br />
[15:35] &lt;sabdfl&gt; Patents were invented to encourage inventors to publish their<br />
trade secrets, because society would benefit from the disclosure.<br />
[15:36] &lt;sabdfl&gt; But we now allow patents on things you could never keep secret<br />
in the first place, like software and business methods and medicines.<br />
[15:36] &lt;sabdfl&gt; That's insanity. Innovation happens because people solve<br />
problems, not because they might get a monopoly on it.<br />
[15:37] &lt;sabdfl&gt; The reason this is not being changed is simple: legislation<br />
evolves to suit those who can influence legislators. And large patent holders<br />
tend to be influential in that regard.</code></p></blockquote>
<p><a href="http://irclogs.ubuntu.com/2011/11/23/%23ubuntu-classroom.txt">#ubuntu-classroom IRC Log on the Freenode IRC network 24-Nov-2011</a></p>
<blockquote><p><em>Duncan McLeod:</em> Looking at all the software patent battles that are going on in the industry at the moment between Apple and Microsoft and Google and Samsung and HTC and so on, what is your view of the situation?</p>
<p><em>Mark Shuttleworth:</em> The patent system is often misunderstood. It’s sold as a way of giving the little guy an opportunity to create something big … when in fact patents don’t really work that way at all.</p>
<p>What they do very well is keep the big guys entrenched and the little guys out. For example, it’s very common in established industries for all of the majors to buy up or file as many patents as they can covering a particular area. They know and accept that the other majors are all in the same industry and essentially cross-license each other to keep the peace within that defined market. But they use that arsenal to stop new entrants coming in and disrupting the market.</p>
<p>That’s almost the exact opposite of the way people think about the patent system. They think it’s supposed to catalyse disruption and innovation, but in reality it has the opposite effect.</p>
<p>What we’re seeing in the mobile space is that game being played out at large because Google is trying to disrupt that cosy ecosystem by entering the market with a product [Android] that is highly disruptive. And it’s disruptive to all of the majors, so what you’re seeing is this cascading series of suits and countersuits.</p>
<p>None of it is particularly constructive and it’s hugely expensive, often at the cost of end users who don’t have the real range of choice they should have.</p></blockquote>
<p><a href="http://www.techcentral.co.za/mark-shuttleworth-on-patents-tablets-and-the-future-of-ubuntu/25192/">Mark Shuttleworth on patents, tablets and the future of Ubuntu | TechCentral</a></p>
<p>Szerintem igaza van, ez már rég nem patent.</p>
]]></content:encoded>
			<wfw:commentRss>http://sidenote.hu/2011/12/05/patent/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Szabad Szoftver Konferencia és Kiállítás 2011, Budapest</title>
		<link>http://sidenote.hu/2011/10/06/szabad-szoftver-konferencia-es-kiallitas-2011-budapest/</link>
		<comments>http://sidenote.hu/2011/10/06/szabad-szoftver-konferencia-es-kiallitas-2011-budapest/#comments</comments>
		<pubDate>Thu, 06 Oct 2011 10:25:12 +0000</pubDate>
		<dc:creator>szantaii</dc:creator>
				<category><![CDATA[ismeretterjesztő]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[szoftver]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[konferencia]]></category>
		<category><![CDATA[LibreOffice]]></category>
		<category><![CDATA[tipográfia]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://sidenote.hu/?p=6578</guid>
		<description><![CDATA[2011. november 12., Budapest, Infopark, BME Informatikai épülete A részvétel a látogatók számára ingyenes, de regisztrációhoz kötött Az FSF.hu Alapítvány 2011-ben újra megrendezi a Szabad&#8230;]]></description>
			<content:encoded><![CDATA[<blockquote><p><em>2011. november 12., Budapest, Infopark, BME Informatikai épülete<br />
A részvétel a látogatók számára ingyenes, de regisztrációhoz kötött</em></p>
<p>Az FSF.hu Alapítvány 2011-ben újra megrendezi a Szabad Szoftver Konferenciát és Kiállítást Budapesten.</p>
<p>A rendezvény Budapesten, a <a href="http://www.google.com/search?client=ubuntu&#038;channel=fs&#038;q=47.472654%2C+19.059653">BME épületében, az Infoparkban</a> kerül megrendezésre, az időpont <em>2011. november 12-e.</em> A konferencia reggel kilenc órától délután negyed hatig tart. Előadói szekciói és a kiállítás párhuzamosan zajlanak, így minden látogató találhat számára érdekes előadásokat, megfelelő elfoglaltságot.</p>
<p>A konferencia programja hamarosan kikerül a honlapra. Amint véglegessé válik, a regisztráltak értesítést kapnak róla. </p>
<p><em>A konferencia kiemelt előadói</em></p>
<p><em>Kadlecsik József,</em> a Linux kernel csomagszűrő alrendszerének, a netfilter-nek egyik vezető fejlesztője, <em>Tímár András,</em> a Firefox és a LibreOffice magyar honosításának lelke és a LibreOffice Engineering Steering Comittee tagja, valamint <em>Torma László (Toros),</em> a hazai Ubuntu közösség egyik vezéralakja, fáradhatatlan blogger és szervező. Ők fogják a jelentkező előadók közül kiválasztani azokat, akik várhatóan érdekes és hasznos előadásokat fognak tartani.</p>
<p>A konferenciára Magyarország legjobb előadóit, kiállítóként pedig minél több szabad szoftverekkel foglalkozó civil, szakmai szervezeteket valamint cégeket hívunk meg. A részvétel látogatók számára ingyenes lesz, de regisztrációhoz kötött. Az előadások anyagából konferenciakiadvány készül, melynek ISBN számot is fogunk kérni.</p>
<p>Amennyiben szívesen látogatnál el, adnál elő vagy állítanál ki a konferencián, akkor kérjük regisztráld magad a bal oldalon található regisztrációs menüpontok valamelyikénél!</p>
<p>A potenciális kiállítók és támogatók az egyszerűség kedvéért küldhetnek azonnal levelet a konf2011@fsf.hu címre, és megkezdjük velük az egyeztetést.</p>
<p>Üdvözlettel:<br />
<em>Konferenciaszervező csapat, <a href="http://fsf.hu/" title="FSF.hu">FSF.hu Alapítvány</a></em></p>
</blockquote>
<p><a href="http://konf.fsf.hu/cgis/ossc" title="Szabad Szoftver Konferencia és Kiállítás 2011, Budapest">Szabad Szoftver Konferencia és Kiállítás 2011, Budapest</a></p>
]]></content:encoded>
			<wfw:commentRss>http://sidenote.hu/2011/10/06/szabad-szoftver-konferencia-es-kiallitas-2011-budapest/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>20 éves a Linux</title>
		<link>http://sidenote.hu/2011/08/25/20-eves-a-linux/</link>
		<comments>http://sidenote.hu/2011/08/25/20-eves-a-linux/#comments</comments>
		<pubDate>Thu, 25 Aug 2011 18:00:07 +0000</pubDate>
		<dc:creator>szantaii</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[szoftver]]></category>

		<guid isPermaLink="false">http://sidenote.hu/?p=5787</guid>
		<description><![CDATA[From: torva&#8230;@klaava.Helsinki.FI (Linus Benedict Torvalds) Newsgroups: comp.os.minix Subject: What would you like to see most in minix? Summary: small poll for my new operating system&#8230;]]></description>
			<content:encoded><![CDATA[<blockquote><p>From: torva&#8230;@klaava.Helsinki.FI (Linus Benedict Torvalds)<br />
Newsgroups: comp.os.minix<br />
Subject: What would you like to see most in minix?<br />
Summary: small poll for my new operating system<br />
Keywords: 386, preferences<br />
Message-ID: <1991Aug25.205708.9541@klaava.Helsinki.FI><br />
Date: 25 Aug 91 20:57:08 GMT<br />
Organization: University of Helsinki</p>
<p>Hello everybody out there using minix -</p>
<p>I&#8217;m doing a (free) operating system (just a hobby, won&#8217;t be big and<br />
professional like gnu) for 386(486) AT clones.  This has been brewing<br />
since april, and is starting to get ready.  I&#8217;d like any feedback on<br />
things people like/dislike in minix, as my OS resembles it somewhat<br />
(same physical layout of the file-system (due to practical reasons)<br />
among other things). </p>
<p>I&#8217;ve currently ported bash(1.08) and gcc(1.40), and things seem to work.<br />
This implies that I&#8217;ll get something practical within a few months, and<br />
I&#8217;d like to know what features most people would want.  Any suggestions<br />
are welcome, but I won&#8217;t promise I&#8217;ll implement them :-)</p>
<p>Linus (torva&#8230;@kruuna.helsinki.fi)</p>
<p>PS.  Yes &#8211; it&#8217;s free of any minix code, and it has a multi-threaded fs.<br />
It is NOT protable (uses 386 task switching etc), and it probably never<br />
will support anything other than AT-harddisks, as that&#8217;s all I have :-(.</p></blockquote>
<p>Már-már vicces ez a húsz éves levél. Történelem.</p>
]]></content:encoded>
			<wfw:commentRss>http://sidenote.hu/2011/08/25/20-eves-a-linux/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>GNOME 3</title>
		<link>http://sidenote.hu/2011/07/26/gnome-3/</link>
		<comments>http://sidenote.hu/2011/07/26/gnome-3/#comments</comments>
		<pubDate>Tue, 26 Jul 2011 08:45:02 +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=5719</guid>
		<description><![CDATA[Tegnap PPA-ból feltettem a GNOME 3-at. Egy napig bírtam, szoptam vele rendesen. Elég volt. :) A fenti képpel elég sokszor találkoztam tegnap és ma reggel,&#8230;]]></description>
			<content:encoded><![CDATA[<p>Tegnap PPA-ból feltettem a <a href="http://gnome3.org/">GNOME 3</a>-at. Egy napig bírtam, szoptam vele rendesen. Elég volt. :)</p>
<p><img src="http://sidenote.hu/wp-content/uploads/2011/07/gnome3_in_virtualbox.png" alt="" title="GNOME 3 Error in VirtualBox" width="640" height="480" class="alignnone size-full wp-image-5720" /></p>
<p>A fenti képpel elég sokszor találkoztam tegnap és ma reggel, többször &bdquo;vakon&rdquo; kellett leállítanom és elindítanom a GNOME-ot.</p>
<p>Nem akarom én leszólni, de egy nap alatt nem sikerült megszokni, sokat kellett tweakelni, és a fontjaimat is tökrevágta, azt pedig nem tűröm! Azt hiszem, várok őszig, vagy kipróbálom más disztrón, még nem tudom. Valószínűleg csak én voltam türelmetlen, de egyelőre elég volt.</p>
<p><em>Tanács:</em> először VirtualBoxon próbáljátok ki, és használjátok a <a href="http://www.virtualbox.org/manual/ch01.html#snapshots">Snapshot funkciót</a>! Hasznos.</p>
]]></content:encoded>
			<wfw:commentRss>http://sidenote.hu/2011/07/26/gnome-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hajnalban írtam</title>
		<link>http://sidenote.hu/2011/07/15/hajnalban-irtam/</link>
		<comments>http://sidenote.hu/2011/07/15/hajnalban-irtam/#comments</comments>
		<pubDate>Fri, 15 Jul 2011 06:20:37 +0000</pubDate>
		<dc:creator>szantaii</dc:creator>
				<category><![CDATA[alkotunk]]></category>
		<category><![CDATA[gizmó]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[szoftver]]></category>

		<guid isPermaLink="false">http://sidenote.hu/?p=5663</guid>
		<description><![CDATA[Mert nem tudtam aludni.]]></description>
			<content:encoded><![CDATA[<p>Mert nem tudtam aludni.</p>
<p><iframe width="705" height="500" src="http://www.youtube.com/embed/cfgfmyZ5myY?rel=0" frameborder="0" allowfullscreen></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://sidenote.hu/2011/07/15/hajnalban-irtam/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

