<?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; alkotunk</title>
	<atom:link href="http://sidenote.hu/category/alkotunk/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>TypoTux</title>
		<link>http://sidenote.hu/2011/11/16/typotux/</link>
		<comments>http://sidenote.hu/2011/11/16/typotux/#comments</comments>
		<pubDate>Wed, 16 Nov 2011 20:54:02 +0000</pubDate>
		<dc:creator>szantaii</dc:creator>
				<category><![CDATA[alkotunk]]></category>
		<category><![CDATA[gizmó]]></category>
		<category><![CDATA[rajz]]></category>
		<category><![CDATA[TeX/LaTeX]]></category>
		<category><![CDATA[tipográfia]]></category>

		<guid isPermaLink="false">http://sidenote.hu/?p=6643</guid>
		<description><![CDATA[This is my submission for the Show Off Your Skillz in TeX &#038; Friends Contest at TeX.sx. Full LaTeX source and description coming soon below&#8230;]]></description>
			<content:encoded><![CDATA[<p>This is my submission for the <a href="http://tex.stackexchange.com/questions/34482/contest-show-off-your-skillz-in-tex-friends-tex-sx-birthday/35132#35132">Show Off Your Skillz in TeX &#038; Friends Contest</a> at <a href="http://tex.stackexchange.com/">TeX.sx</a>.</p>
<p>Full LaTeX source and description <del datetime="2011-11-18T14:38:37+00:00">coming soon</del> below the picture.</p>
<p><img src="http://sidenote.hu/wp-content/uploads/2011/11/typotux.png" alt="" title="TypoTux" width="705" height="907" class="alignnone size-full wp-image-6645" /></p>
<blockquote><pre>% TypoTux
% Created by szantaii
% Compiled with pdflatex using TeX Live 2011
%
% Use it as you like, but please send me an e-mail if you do.

\documentclass[10pt,a4paper]{article}

% Specifying input encoding
\usepackage[utf8]{inputenc}

% Using the TikZ library for drawing Tux, and clipping
\usepackage{tikz}

% Loaded for unnumbered captions
\usepackage{caption}

% For inserting lorem ipsum text
\usepackage{lipsum}

% Setting baselines smaller
\setlength{\baselineskip}{6pt}

\begin{document}

%\lipsum[1]

\begin{figure}[h!]
\centering
\begin{tikzpicture}[y=0.80pt,x=0.80pt,yscale=-1, inner sep=0pt, outer sep=0pt,scale=0.25]
\begin{scope}[shift={(-249.6684,-294.38903)}]
%\begin{scope}[cm={{0.55569,0.0,0.0,0.55569,(249.6684,292.4824)}}]
\begin{scope}

% Tux's path used for clipping
% Generated with Inkscape / http://inkscape.org/
% Using the inkscape2tikz extension / http://code.google.com/p/inkscape2tikz/
\path[clip] (265.5000,1063.0000) .. controls (252.9000,1061.0000) and
% Tux's path used for clipping cut from here because it's too long to include.
% See link for full compilable source at the end of the post.

% Adding lorem ipsum text using TikZ nodes, and the lipsum package
\node[inner sep=0,text width=10cm] (text1) at (450,450) {\LARGE\textit{\lipsum[1]}};
\node[inner sep=0,text width=10cm] (text1) at (500,500) {\LARGE\textit{\lipsum[2]}};
\node[inner sep=0,text width=10cm] (text1) at (450,450) {\textit{\lipsum[3-4]}};
\node[inner sep=0,text width=10cm] (text1) at (500,500) {\textit{\lipsum[5-6]}};
\node[inner sep=0,text width=10cm] (text2) at (450,450) {\scriptsize\textit{\lipsum[7-11]}};
\node[inner sep=0,text width=10cm] (text2) at (475,475) {\scriptsize\textit{\lipsum[12-16]}};
\node[inner sep=0,text width=10cm] (text2) at (500,500) {\scriptsize\textit{\lipsum[17-21]}};
\end{scope}
\end{scope}
\end{tikzpicture}

\caption*{TypoTux}
\end{figure}

%\lipsum[2]

\end{document}</pre>
</blockquote>
<p>I have always wanted to create something like this. After I read about this contest I decided to make a Tux who&#8217;s drawn by text. I chose <a href="http://ftp.roedu.net/mirrors/ctan.org/help/Catalogue/entries/pgf.html">TikZ &#038; PGF</a> for this purpose since it&#8217;s very powerful, and I used it several times before for path clipping.</p>
<p>Step-by-step description how I made this:</p>
<ol>
<li>Grabbed a 2D vectorized Tux image from <a href="http://en.wikipedia.org/wiki/File%3aTux-simple.svg">Wikipedia</a>.</li>
<li>Removed colored and unnecessary white paths from the image, resized page with <a href="http://inkscape.org/">Inkscape</a>.</li>
<li>Saved the black &#038; white image as a standalone TikZ image with Inkscape using the <a href="http://code.google.com/p/inkscape2tikz/">inkscape2tikz</a> extension.</li>
<li>Removed some unnecessary paths from the tex source file, changed path filling to clipping.</li>
<li>Added nodes filled with different size of <em>lorem ipsum</em> text using the <code>lipsum</code> package. Note: this was the hardest part, because there was no other way but trying to place the text under the clip path.</li>
<li>A little bit of fancying, and cleaning up.</li>
</ol>
<p>Use it for whatever you want to, but please let me know if you do. I compiled it with <code>pdflatex</code> using TeX Live 2011.</p>
<p><a href='http://sidenote.hu/wp-content/uploads/2011/11/typotux.tex_.tar.gz'>Full compilable source</a></p>
]]></content:encoded>
			<wfw:commentRss>http://sidenote.hu/2011/11/16/typotux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Melyik szebb?</title>
		<link>http://sidenote.hu/2011/09/27/melyik-szebb/</link>
		<comments>http://sidenote.hu/2011/09/27/melyik-szebb/#comments</comments>
		<pubDate>Tue, 27 Sep 2011 10:25:11 +0000</pubDate>
		<dc:creator>szantaii</dc:creator>
				<category><![CDATA[alkotunk]]></category>
		<category><![CDATA[gizmó]]></category>
		<category><![CDATA[TeX/LaTeX]]></category>
		<category><![CDATA[tipográfia]]></category>

		<guid isPermaLink="false">http://sidenote.hu/?p=6475</guid>
		<description><![CDATA[A felső egy könyvből van, az alsót pedig én csináltam LaTeX-ben. Szerintem az enyém szebb. :) (Elnézést, ha hibás a cellulóz molekula, nem értek hozzá.)&#8230;]]></description>
			<content:encoded><![CDATA[<p><img src="http://sidenote.hu/wp-content/uploads/2011/09/celluorosomething_1.png" alt="" title="Cellulóz" width="702" height="193" class="alignnone size-full wp-image-6476" /></p>
<p><img src="http://sidenote.hu/wp-content/uploads/2011/09/celluorosomething_2.png" alt="" title="Cellulóz" width="665" height="92" class="alignnone size-full wp-image-6496" /></p>
<p>A felső egy könyvből van, az alsót pedig én csináltam LaTeX-ben. Szerintem az enyém szebb. :) (Elnézést, ha hibás a cellulóz molekula, nem értek hozzá.)</p>
<p>Forrás alant, a <a href="http://www.ctan.org/tex-archive/macros/latex/contrib/chemfig" title="CTAN web interface: Directory listing for /macros/latex/contrib/chemfig">chemfig</a> csomag szükséges hozzá.</p>
<blockquote><pre>\setcrambond{3pt}{}{}
\setpolymerdelim{[}{]}
\chemfig[][]{HO-[:15](-[:-105](-[:-195]HO)<[:15](-[:-105,0.5]-[:-75,0.75]OH)-%
[:-15,,,,line width=3pt]O>[:75])-[:-15](-[:75]OH)-[:15]-[:-15]O-[:15]%
(-[:-15](-[:105,0.5]-[:75,0.75]OH)-[:15]O)<[:-75](-[:-195]HO)-[:15,,,,line width=3pt]%
(-[:-75]OH)>[:-15](-[:105,0.75])-[@{op,.75}:15]O-[:-15](-[:75](-[:195]HO)-[:-15]%
(-[:75]OH)-[:15])<[:15](-[:-105,0.5]-[:-75,0.75]OH)-[:-15,,,,line width=3pt]O>[:75]-%
[:-15]O-[:15](-[:-15](-[:105,0.5]-[:75,0.75]OH)-[:15]O)<[:-75](-[:-195]HO)-%
[:15,,,,line width=3pt](-[:-60]OH)>[:-15](-[:105,0.75])-[@{cl,.25}:15]O-%
[:-15](-[:75](-[:195]HO)-[:-15](-[:75]OH)-[:15])<[:15](-[:-105,0.5]-[:-75,0.75]OH)-%
[:-15,,,,line width=3pt]O>[:75]-[:-15]O-[:15](<[:-75](-[:-195]OH)-%
[:15,,,,line width=3pt](-[:-75]OH)>[:-15](-[:15]OH)-[:105,0.75])-[:-15]%
(-[:105,0.5]-[:75,0.75]OH)-[:15]O}
\makebraces[65pt,40pt]{n}{op}{cl}}</pre>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://sidenote.hu/2011/09/27/melyik-szebb/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu Font Study</title>
		<link>http://sidenote.hu/2011/09/12/ubuntu-font-study/</link>
		<comments>http://sidenote.hu/2011/09/12/ubuntu-font-study/#comments</comments>
		<pubDate>Mon, 12 Sep 2011 19:07:22 +0000</pubDate>
		<dc:creator>szantaii</dc:creator>
				<category><![CDATA[alkotunk]]></category>
		<category><![CDATA[TeX/LaTeX]]></category>
		<category><![CDATA[tipográfia]]></category>

		<guid isPermaLink="false">http://sidenote.hu/?p=5807</guid>
		<description><![CDATA[Ezt nemrég fejeztem be, full LaTeX: Elég ronda ez a Google Docs Viewer, de nem kell aggódni, itt a pdf. Holnap szerintem submittelem a TeX&#8230;]]></description>
			<content:encoded><![CDATA[<p>Ezt nemrég fejeztem be, full LaTeX:</p>
<p><iframe src="http://docs.google.com/viewer?url=http%3A%2F%2Fsidenote.hu%2Fwp-content%2Fuploads%2F2011%2F09%2Fubuntu_font_study.pdf&#038;embedded=true" width="705" height="530" style="border: none;"></iframe></p>
<p>Elég ronda ez a Google Docs Viewer, de nem kell aggódni, <a href='http://sidenote.hu/wp-content/uploads/2011/09/ubuntu_font_study.pdf'>itt a pdf</a>. Holnap szerintem submittelem a TeX showcase-be.</p>
]]></content:encoded>
			<wfw:commentRss>http://sidenote.hu/2011/09/12/ubuntu-font-study/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>
		<item>
		<title>LaTeX szimbólumkereső</title>
		<link>http://sidenote.hu/2011/02/03/latex-szimbolumkereso/</link>
		<comments>http://sidenote.hu/2011/02/03/latex-szimbolumkereso/#comments</comments>
		<pubDate>Thu, 03 Feb 2011 13:30:00 +0000</pubDate>
		<dc:creator>szantaii</dc:creator>
				<category><![CDATA[alkotunk]]></category>
		<category><![CDATA[munka]]></category>
		<category><![CDATA[TeX/LaTeX]]></category>
		<category><![CDATA[tipográfia]]></category>

		<guid isPermaLink="false">http://sidenote.hu/?p=4765</guid>
		<description><![CDATA[Éppen egy jegyzetet írok egy egyetemnek. Emiatt elég sokszor forgatom a Comprehensive LaTeX Symbol Listet, ugyanis nem fogok több száz szimbólumot megjegyezni csak azért, hogy&#8230;]]></description>
			<content:encoded><![CDATA[<p>Éppen egy jegyzetet írok egy egyetemnek. Emiatt elég sokszor forgatom a <em><a title="CTAN: directory: /tex-archive/info/symbols/comprehensive" href="http://www.ctan.org/tex-archive/info/symbols/comprehensive/">Comprehensive LaTeX Symbol List</a></em>et, ugyanis nem fogok több száz szimbólumot megjegyezni csak azért, hogy két hét múlva ne emlékezzek rá.</p>
<p>Pár perce viszont rátaláltam a <a title="Detexify LaTeX handwritten symbol recognition" href="http://detexify.kirelabs.org/">Detexify</a> nevű szolgáltatásra, ahol semmi mást nem kell tenni, mint egy canvasra felrajzolni a keresett jelet, és máris kidobja a LaTeX megfelelőjét. Öcsém, ez mekkora találmány!</p>
<p><img src="http://sidenote.hu/wp-content/uploads/2011/02/detexify.jpg" alt="" title="Detexify" width="705" height="537" class="alignnone size-full wp-image-4766" /></p>
<p>A szolgáltatás mögött álló <a title="kirelabs" href="http://kirelabs.org/">Daniel Kirsch</a> állítása szerint a cucc HTML5-öt használ, Firefox, Opera és Safari böngészőkben működik. Állati jó!</p>
]]></content:encoded>
			<wfw:commentRss>http://sidenote.hu/2011/02/03/latex-szimbolumkereso/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Új év, új dizájn</title>
		<link>http://sidenote.hu/2010/12/31/uj-ev-uj-dizajn/</link>
		<comments>http://sidenote.hu/2010/12/31/uj-ev-uj-dizajn/#comments</comments>
		<pubDate>Fri, 31 Dec 2010 22:59:59 +0000</pubDate>
		<dc:creator>szantaii</dc:creator>
				<category><![CDATA[a blog]]></category>
		<category><![CDATA[alkotunk]]></category>
		<category><![CDATA[művészet, dizájn]]></category>

		<guid isPermaLink="false">http://sidenote.hu/?p=4405</guid>
		<description><![CDATA[Nem is olyan rég csináltam egy mockupot, ami a leendő sidenote themét ábrázolta. Ma nekiálltam és meg is csináltam, amint láthatjátok. A WPSHOWER Blogum theméjét&#8230;]]></description>
			<content:encoded><![CDATA[<p>Nem is olyan rég csináltam egy mockupot, ami a leendő <em>sidenote</em> themét ábrázolta. Ma nekiálltam és meg is csináltam, amint láthatjátok. A <em><a href="http://wpshower.com/free-wordpress-themes/blogum-free-wordpress-theme/" title="Blogum 1.0 WordPress Theme - WPSHOWER - Free wordpress themes">WPSHOWER Blogum</a></em> theméjét vettem alapul, gyakorlatilag azt alakítottam át. Elsőre ez biztos könnyűnek tűnik, de nekem közel sem volt olyan egyszerű, sokat melóztam vele, jórészt ezzel töltöttem 2010 két utolsó napját.</p>
<p>Remélem senkit nem rettent el a minimalista kinézet, de úgy gondoltam, ideje, hogy a <em>sidenote</em> új, felnőttesebb külsőt kapjon. Tetszéseteket vagy épp nemtetszéseteket természetesen kinyilváníthatjátok komment formájában. Előre is köszönöm, bármelyikről is legyen szó.</p>
<p>Ilyen volt, és ilyen lett:</p>
<p><a href="http://sidenote.hu/wp-content/uploads/2010/12/then_and_now.jpg" title="Then and Now"><img src="http://sidenote.hu/wp-content/uploads/2010/12/then_and_now_small.jpg" alt="" title="Then and Now" width="705" height="670" class="alignnone size-full wp-image-4413" /></a></p>
<p>Valószínűleg sok dolog lesz még, amin változtatnom kell, mert vagy kihagytam, elfelejtettem, vagy elrontottam. Ha találtok hibát, kérlek írjátok meg kommentben. Nagy segítség volna.</p>
<p>Boldog új évet nem kívánok, helyette inkább a <a href="http://en.wikipedia.org/wiki/Vulcan_salute" title="Vulcan salute - Wikipedia, the free encyclopedia">hagyományos vulkáni köszöntéssel</a> búcsúzom 2010-től:</p>
<blockquote><p>Hosszú és eredményes életet!</p>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://sidenote.hu/2010/12/31/uj-ev-uj-dizajn/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>You Are Entering a World of Paint!</title>
		<link>http://sidenote.hu/2010/12/08/you-are-entering-a-world-of-paint/</link>
		<comments>http://sidenote.hu/2010/12/08/you-are-entering-a-world-of-paint/#comments</comments>
		<pubDate>Wed, 08 Dec 2010 17:37:20 +0000</pubDate>
		<dc:creator>szantaii</dc:creator>
				<category><![CDATA[alkotunk]]></category>
		<category><![CDATA[film]]></category>
		<category><![CDATA[gizmó]]></category>
		<category><![CDATA[rajz]]></category>

		<guid isPermaLink="false">http://sidenote.hu/?p=4301</guid>
		<description><![CDATA[szantaii: azonnal posztolom. > Petya: > meg lennek hatva! > >> szantaii: >> ezkurvajo! sidenote pozitiv? >> >>> Petya: >>> csinaltam! humor! Kösz, Petya.]]></description>
			<content:encoded><![CDATA[<p align="center"><img src="http://sidenote.hu/wp-content/uploads/2010/12/worldofpaint.png" alt="" title="You Are Entering a World of Paint!" width="450" height="675" class="alignnone size-full wp-image-4302" /></p>
<blockquote><p>
<pre>szantaii:
azonnal posztolom.

> Petya:
> meg lennek hatva!
>
>> szantaii:
>> ezkurvajo! sidenote pozitiv?
>>
>>> Petya:
>>> csinaltam! humor!</pre>
</p>
</blockquote>
<p>Kösz, Petya.</p>
]]></content:encoded>
			<wfw:commentRss>http://sidenote.hu/2010/12/08/you-are-entering-a-world-of-paint/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>fontscreenshot</title>
		<link>http://sidenote.hu/2010/09/24/fontscreenshot/</link>
		<comments>http://sidenote.hu/2010/09/24/fontscreenshot/#comments</comments>
		<pubDate>Fri, 24 Sep 2010 10:54:20 +0000</pubDate>
		<dc:creator>szantaii</dc:creator>
				<category><![CDATA[alkotunk]]></category>
		<category><![CDATA[szoftver]]></category>
		<category><![CDATA[tipográfia]]></category>

		<guid isPermaLink="false">http://sidenote.hu/?p=3856</guid>
		<description><![CDATA[Az előbb írtam egy rövid shell scriptet, ami nem csinál mást, mint egy könyvtáron belül (és annak az alkönyvtárain belül) levő fontokról a FontForge program&#8230;]]></description>
			<content:encoded><![CDATA[<p>Az előbb írtam egy rövid shell scriptet, ami nem csinál mást, mint egy könyvtáron belül (és annak az alkönyvtárain belül) levő fontokról a <em>FontForge</em> program <em>fontimage</em> appjával screenshotokat készít. Vagyis az összes betűtípusról egyszerűen és gyorsan lehet screenshotot csinálni.</p>
<p>Egyelőre csak a TrueType és az OpenType fontokról készít screenshotot, de gondolom a <em>FontForge</em> elboldogul mással is, a scriptben pedig csak egy regexpet kell átírni, hogy mást is támogasson. Hát nem csodás?! :) A forráskód alatti linken letölthető a cucc, de nyugodtan lehet kopipésztelni is.</p>
<blockquote><p><code>
<pre>#!/bin/bash

which fontimage > /dev/null

if [[ $? != 0 ]]
then
    echo "The fontimage program is needed to generate screenshots from fonts.
fontimage can be found either in the fontforge or in the fontforge-nox packages.
Or fontimage is not contained by your PATH enviroment variable."
    exit 1
fi

# fontscreenshot < directory >
function fontscreenshot()
{

    local DEFAULT_DIRECTORY="/usr/share/fonts/"

    local DIRECTORY=${1:-$DEFAULT_DIRECTORY}

    local FILE=""

    if [[ "$DIRECTORY" != */ ]]
    then
        DIRECTORY="${DIRECTORY}/"
    fi

    find "$DIRECTORY" -regex ".*\(otf\|ttf\)$" | while read FILE;
    do
        fontimage $FILE 2> /dev/null # error messages redirected to the void
    done
}

fontscreenshot $1</pre>
<p></code></p>
</blockquote>
<p>&bdquo;Forráskód&rdquo; targéza: <a href="http://sidenote.hu/wp-content/uploads/2010/09/fontscreenshot.tar.gz" title="fontscreenshot">fontscreenshot</a>.</p>
<p>Konstruktív véleményeteket a hozzászólásoknál várom, és ha netán elrontottam volna valamit, akkor is toljatok egy kommentet, vagy bombázhattok emailekkel is (elérhetőség a <a href="http://sidenote.hu/rolunk/" title="sidenote &raquo; Rólunk">Rólunk oldalon</a>).</p>
]]></content:encoded>
			<wfw:commentRss>http://sidenote.hu/2010/09/24/fontscreenshot/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Villámlás</title>
		<link>http://sidenote.hu/2010/08/04/villamlas/</link>
		<comments>http://sidenote.hu/2010/08/04/villamlas/#comments</comments>
		<pubDate>Wed, 04 Aug 2010 16:12:05 +0000</pubDate>
		<dc:creator>szantaii</dc:creator>
				<category><![CDATA[alkotunk]]></category>
		<category><![CDATA[fotó]]></category>
		<category><![CDATA[természet]]></category>

		<guid isPermaLink="false">http://sidenote.hu/?p=3694</guid>
		<description><![CDATA[A tegnap esti vihar alatt, ami végre elérte Budapestet is, ezt az egy villámot sikerült elkapnom, pedig mentségemre legyen mondva, sokat próbálkoztam. Az elmúlt néhány&#8230;]]></description>
			<content:encoded><![CDATA[<p>A tegnap esti vihar alatt, ami végre elérte Budapestet is, ezt az egy villámot sikerült elkapnom, pedig mentségemre legyen mondva, sokat próbálkoztam.</p>
<p align="center"><a href="http://sidenote.hu/wp-content/uploads/2010/08/2010_08_03_villam.png"><img src="http://sidenote.hu/wp-content/uploads/2010/08/2010_08_03_villam-620x365.png" alt="" title="Villámlás" width="620" height="365" class="alignnone size-large wp-image-3695" border="1" /></a></p>
<p>Az elmúlt néhány hétben többször próbáltam villámot fotózni, fél éjszakákat töltöttem a szabadban sikertelenül, aztán tegnap este az erkélyről mégis sikerült egyet elkapni. Nem lett ugyan a legjobb, de esett, párás volt a levegő és csak egy noname vacak fényképezőgép állt a rendelkezésemre. Ennyit tudtam kihozni belőle, remélem azért tetszik.</p>
]]></content:encoded>
			<wfw:commentRss>http://sidenote.hu/2010/08/04/villamlas/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>

