<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Christian's Blog</title>
	
	<link>http://christianbeikov.at</link>
	<description>This is the blog of the Main-Programmer of Blazebit, Christian Beikov</description>
	<lastBuildDate>Mon, 15 Feb 2010 07:58:43 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/ChristianBeikovsBlog" /><feedburner:info uri="christianbeikovsblog" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Design Patterns – Abstraction with PDO</title>
		<link>http://feedproxy.google.com/~r/ChristianBeikovsBlog/~3/aAuVlqjxkAc/</link>
		<comments>http://christianbeikov.at/2010/01/design-patterns-abstraction-with-pdo/#comments</comments>
		<pubDate>Tue, 12 Jan 2010 09:58:42 +0000</pubDate>
		<dc:creator>Christian Beikov</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://christianbeikov.at/?p=130</guid>
		<description><![CDATA[Today I want to write about some design patterns. There are really many out there and I want to summarize them a bit for you.
I will not write about design patterns of a specific language but for general. Many of them are really usefull!]]></description>
			<content:encoded><![CDATA[<p>Today I want to write about some design patterns. There are really many out there and I want to summarize them a bit for you.<br />
I will not write about design patterns of a specific language but for general. Many of them are really usefull!</p>
<p>Don&#8217;t you have sometimes the problem that you don&#8217;t know how to begin when you are programming a class or so?<br />
You are thinking and thinking of how you could design the class or class hierachy (Polymorphism) that it is easy to understand, lightweight, not so much time consuming to implement it and so on&#8230;<br />
Then after hours of thinking you have a solution but you are never sure if it&#8217;s really okay like that. You just implement the class and if something does not fit you have to change it.<br />
But now think of it, is that really reasonable? You put so much time into designing a class or class hierachy but for what? That you can change everything in let&#8217;s say 200 files where you used that class? That shouldn&#8217;t be!</p>
<p>As an example we take a communication with a database. The standard in PHP is to use MySQL, that&#8217;s okay but what happens if you want to use PostgresSQL now? You maybe will have to change every query statement because it can be case that in this dialect something is written different than in the other. So it&#8217;s hard for use to change the database system just by replacing the connect call to a new one. We not only have the problem with the SQL statements, but you have to change the calls of the SQL statements too.</p>
<p>Here you can see a PHP example to know what I mean by that.</p>
<pre class="php" name="code">// Using PostgresSQL
$conString= "host=localhost port=5432 ".
                 "dbname=DATABASE ".
                 "user=USERNAME ".
                 "password=PASSWORD";
$connection = pg_connect($conString);

$sql = "SELECT field FROM table WHERE field = '$something' ";
$result = pg_query($connection, $sql);
$fetch = pg_fetch_row($result);

pg_close($connection);

// -------------------
// Using MySQL
$connection = mysql_connect("localhost", "USERNAME", "PASSWORD");
mysql_select_db ("DATABASE", $connection); 

$sql = "SELECT field FROM table WHERE field = '$something' ";
$result = mysql_query($sql, $connection);
$fetch = mysql_fetch_row($result);

mysql_close($connection);</pre>
<p>Here we don&#8217;t have a problem with the SQL statement, but what happens if you use the function mysql_query for about 500 times in 200 different files? Try to change that! Somebody will probably say now that there are tools which you can use to make such mass operations, but that&#8217;s not the point! What do you want to do now if we have a SQL statement that is not compatible to other SQL systems? You have to change nearly everything in your application to correct that. It&#8217;s really time consuming, so we should try to get to find a solution.</p>
<p>First of all think about something like a DAO class. DAO (Data Access Object) is really nice and saves you a lot of time. In a DAO class you make methods which give you back objects as result. Let&#8217;s say you have something like showing news on a website. Then make a method getNews() and just use that method everywhere you need the news. You can define parameters for that method and so on but you always get let&#8217;s say an array of news objects from that method. That&#8217;s really nice because you don&#8217;t have to think about what the name of the column was and so on, your IDE will suggest the methods and variables. This kind of system is very simmilar in some points to an ORM (Object Relation Mapping) system which don&#8217;t has any foreign keys but the objects which is related to the foreign keys. Of course you still have to implement data classes for each table but this will help you a lot.</p>
<p>So now we have a DAO object which handles the connection to the database and provides methods which give us arrays of objects but we still have the compability problem to other systems, for this I suggest to use PDO (PHP Data Object) in PHP. In Java we have JDBC, in .NET Linq and so on. With PDO you have only one class which uses drivers to communicate with the database systems, you only have methods like query() and fetch() so we don&#8217;t have to rename the calls any more.</p>
<pre class="php" name="code">// Using PDO
$connectionString = "mysql:host=localhost;dbname=DATABASE";
$user = "USERNAME";
$pass = "PASSWORD";
$pdo = new PDO($connectionString, $user, $pass);

$sql = "SELECT field FROM table WHERE field = '$something' ";
$stmt= $pdo->query($sql);
$fetch = $stmt->fetch(PDO::FETCH_NUM);

$stmt->closeCursor();
</pre>
<p>As you can see, it&#8217;s easy and the best is, if you change the database system, you just have to change the connection string!</p>
<p>I hope you enjoyed this article and you will go on reading my texts about design patterns!</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?a=aAuVlqjxkAc:uq-9PBF9k0c:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?i=aAuVlqjxkAc:uq-9PBF9k0c:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?a=aAuVlqjxkAc:uq-9PBF9k0c:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?a=aAuVlqjxkAc:uq-9PBF9k0c:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?a=aAuVlqjxkAc:uq-9PBF9k0c:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?a=aAuVlqjxkAc:uq-9PBF9k0c:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?i=aAuVlqjxkAc:uq-9PBF9k0c:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?a=aAuVlqjxkAc:uq-9PBF9k0c:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?a=aAuVlqjxkAc:uq-9PBF9k0c:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?i=aAuVlqjxkAc:uq-9PBF9k0c:F7zBnMyn0Lo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/ChristianBeikovsBlog/~4/aAuVlqjxkAc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://christianbeikov.at/2010/01/design-patterns-abstraction-with-pdo/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://christianbeikov.at/2010/01/design-patterns-abstraction-with-pdo/</feedburner:origLink></item>
		<item>
		<title>Blazebit CMS Presentation</title>
		<link>http://feedproxy.google.com/~r/ChristianBeikovsBlog/~3/JeFiezsDVmQ/</link>
		<comments>http://christianbeikov.at/2009/10/blazebit-cms-presentation/#comments</comments>
		<pubDate>Wed, 21 Oct 2009 16:46:03 +0000</pubDate>
		<dc:creator>Christian Beikov</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://christianbeikov.at/?p=161</guid>
		<description><![CDATA[I finally got the OK of my teacher! The CMS is still in development but I hope that it will be completed for the "Day of the open door"!
If you are interested and you are from Austria you can watch the presentation live!]]></description>
			<content:encoded><![CDATA[<p>I finally got the OK of my teacher! The CMS is still in development but I hope that it will be completed for the &#8220;Day of the open door&#8221;!<br />
If you are interested and you are from Austria you can watch the presentation live!<br />
Otherwise I can offer you to check the CMS yourself online with a demo account.</p>
<p>If anyone is interested in watching the live presentation just make a comment then I will post the address and when the presentation will be!<br />
Here again the account for testing the Blazebit CMS.</p>
<p><a href="http://www.blazebit.com/admin"><strong>Blazebit CMS ( Nick: Demo | Password: demo123)</strong></a></p>
<p>The CMS will change a lot in the next weeks so don&#8217;t wonder when we get a new design and new functionalities! <img src='http://christianbeikov.at/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?a=JeFiezsDVmQ:ctUHPsslUWU:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?i=JeFiezsDVmQ:ctUHPsslUWU:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?a=JeFiezsDVmQ:ctUHPsslUWU:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?a=JeFiezsDVmQ:ctUHPsslUWU:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?a=JeFiezsDVmQ:ctUHPsslUWU:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?a=JeFiezsDVmQ:ctUHPsslUWU:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?i=JeFiezsDVmQ:ctUHPsslUWU:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?a=JeFiezsDVmQ:ctUHPsslUWU:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?a=JeFiezsDVmQ:ctUHPsslUWU:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?i=JeFiezsDVmQ:ctUHPsslUWU:F7zBnMyn0Lo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/ChristianBeikovsBlog/~4/JeFiezsDVmQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://christianbeikov.at/2009/10/blazebit-cms-presentation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://christianbeikov.at/2009/10/blazebit-cms-presentation/</feedburner:origLink></item>
		<item>
		<title>Presentation of Blazebit CMS</title>
		<link>http://feedproxy.google.com/~r/ChristianBeikovsBlog/~3/nnZskOansKs/</link>
		<comments>http://christianbeikov.at/2009/10/presentation-of-blazebit-cms/#comments</comments>
		<pubDate>Mon, 19 Oct 2009 19:23:13 +0000</pubDate>
		<dc:creator>Christian Beikov</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://christianbeikov.at/?p=141</guid>
		<description><![CDATA[In school we have a day called "the day of the open door".
There we probably are allowed to presentate our Blazebit CMS.]]></description>
			<content:encoded><![CDATA[<p>In school we have a day on which everyone can come and take a look of how that school is and so on. Translated into English it&#8217;s called, &#8220;the day of the open door&#8221;.<br />
There we, Bernd Artmueller and I, are probably allowed to present our Blazebit CMS to the visitors.</p>
<p>We are really proud of it and when we get the final decision about that I will try to complete the CMS until that day. The CMS will get redesigned by Bernd Artmueller and we will also get a new Webdesign for our portfolio.<br />
There will be many companies to look at how the students are doing and with that CMS we will be probably the stars of the day <img src='http://christianbeikov.at/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>So in the next days I will let you know how it is going on.<br />
By the way you can test and check our CMS if you want to.</p>
<p>At the moment we are changing the structure a bit so there will be major changes to the CMS.</p>
<ul>
<li><a href="http://www.blazebit.com"><strong>Blazebit</strong> &#8211; Our main site, will be redesigned soon&#8230;</a></li>
<li><a href="http://www.blazebit.com/admin"><strong>Blazebit CMS ( Nick: Demo | Password: demo123)</strong> &#8211; redesigned in few weeks&#8230;</a></li>
</ul>
<p>I hope you like it and maybe give me some feedback of what I could change!</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?a=nnZskOansKs:JiciLiG0VYk:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?i=nnZskOansKs:JiciLiG0VYk:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?a=nnZskOansKs:JiciLiG0VYk:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?a=nnZskOansKs:JiciLiG0VYk:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?a=nnZskOansKs:JiciLiG0VYk:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?a=nnZskOansKs:JiciLiG0VYk:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?i=nnZskOansKs:JiciLiG0VYk:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?a=nnZskOansKs:JiciLiG0VYk:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?a=nnZskOansKs:JiciLiG0VYk:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?i=nnZskOansKs:JiciLiG0VYk:F7zBnMyn0Lo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/ChristianBeikovsBlog/~4/nnZskOansKs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://christianbeikov.at/2009/10/presentation-of-blazebit-cms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://christianbeikov.at/2009/10/presentation-of-blazebit-cms/</feedburner:origLink></item>
		<item>
		<title>Cracking Hashes</title>
		<link>http://feedproxy.google.com/~r/ChristianBeikovsBlog/~3/3L2si52ye1o/</link>
		<comments>http://christianbeikov.at/2009/10/cracking-hashes/#comments</comments>
		<pubDate>Sun, 18 Oct 2009 22:01:52 +0000</pubDate>
		<dc:creator>Christian Beikov</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://christianbeikov.at/?p=68</guid>
		<description><![CDATA[Today I found a website which really scared me! I want to share that with you because I think it's important for everyone who ever dealed with passwords.
I looked for something like a SHA256 Cracker on google to be sure that it's not crackable.]]></description>
			<content:encoded><![CDATA[<p>Today I found a website which really scared me! I want to share that with you because I think it&#8217;s important for everyone who ever dealed with passwords.<br />
I looked for something like a SHA256 Cracker on google to be sure that it&#8217;s not crackable.<br />
<br />
First of all some information on SHA256, it was developed by the NSA (National Security Agency). SHA is the abbreviation for Secure Hash Algorithm and is one of the most secure hash algorithms.<br />
A SHA256 hash has 64 hex characters so if you want to save that into you database you will need a 64 byte for a hash. With growing technologies like GPU Computing you as a programmer have to use more complex algorithms to be sure that the hashed passwords can&#8217;t be cracked.<br />
<br />
Now to the point, <strong><a href="http://lmcrack.com">LM Reverse</a></strong> and <strong><a href="http://hash.db.hk">Hash.Db.Hk</a></strong> have big databases which contain already many SHA256 hashes. Mostly they can only crack simple ones but the new technologies will help the crackers to guess or maybe even reverse hashes.<br />
<br />
I would really recommend you all to use SHA512. Performance should not be a reason for you to not use SHA512. Here is a little comparison between the hashes, all calculation times are in milliseconds. The times were measured on a laptop, so on a productive webserver it is even faster!</p>
<table style="border: 1px solid; width: 250px;" border="1" cellspacing="0">
<thead>
<tr>
<th>Hash</th>
<th>Calculation in ms</th>
</tr>
</thead>
<tbody>
<tr>
<td>md5</td>
<td>6.89</td>
</tr>
<tr>
<td>sha1</td>
<td>8.88</td>
</tr>
<tr>
<td>sha256</td>
<td>19.02</td>
</tr>
<tr>
<td>sha384</td>
<td>45.10</td>
</tr>
<tr>
<td>sha512</td>
<td>45.65</td>
</tr>
</tbody>
</table>
<p>These calculation times are from <strong><a href="http://at.php.net/manual/en/function.hash.php#89574">PHP.NET</a></strong> so as you can see SHA512 takes twice as long as SHA256 for calculation but your applications will be more secure!  SHA512 has 128 hex characters and I haven&#8217;t found any database yet which you can use to get the plaintext from a hash. The only way to crack a SHA512 is by using a password dictionary and for this I would recommend you to use a SALT.<br />
<br />
The SALT should contain special characters like &#8216;$&#8217;, &#8216;%&#8217;, &#8216;&amp;&#8217; and so on. With the special characters it is much harder for a cracker to crack the hashes with dictionaries!<br />
<br />
Here an example of hashing with SHA512 and a SALT.</p>
<pre name="code" class="php">
	$Algo = "sha512";
	$Salt = "!§$%&#038;/()=?";
	$Password = "Hello";

	echo $Password;
	echo hash($Algo, $Salt.$Password.$Salt);
</pre>
<p>This will give you the following output&#8230;</p>
<blockquote><p>
Hello<br />
009afe8d638e00b1b51fbe33666b337d57d9bc3819ec6ceba3e5dc5e984390cd95979994a02cb&#8230;
</p></blockquote>
<p>Nice heh? 128 hex characters! =D<br />
I hope you enjoyed this article and you will try to use SHA512 instead of MD5, SHA1 or SHA256!</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?a=3L2si52ye1o:dPTpAUpHa9g:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?i=3L2si52ye1o:dPTpAUpHa9g:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?a=3L2si52ye1o:dPTpAUpHa9g:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?a=3L2si52ye1o:dPTpAUpHa9g:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?a=3L2si52ye1o:dPTpAUpHa9g:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?a=3L2si52ye1o:dPTpAUpHa9g:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?i=3L2si52ye1o:dPTpAUpHa9g:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?a=3L2si52ye1o:dPTpAUpHa9g:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?a=3L2si52ye1o:dPTpAUpHa9g:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?i=3L2si52ye1o:dPTpAUpHa9g:F7zBnMyn0Lo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/ChristianBeikovsBlog/~4/3L2si52ye1o" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://christianbeikov.at/2009/10/cracking-hashes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://christianbeikov.at/2009/10/cracking-hashes/</feedburner:origLink></item>
		<item>
		<title>Calling via TAPI</title>
		<link>http://feedproxy.google.com/~r/ChristianBeikovsBlog/~3/8jFGySx3BqU/</link>
		<comments>http://christianbeikov.at/2009/10/calling-via-tapi/#comments</comments>
		<pubDate>Wed, 14 Oct 2009 13:17:13 +0000</pubDate>
		<dc:creator>Christian Beikov</dc:creator>
				<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://christianbeikov.at/?p=66</guid>
		<description><![CDATA[Some days ago i finished a project which was about using the TAPI. I will give you a short introduction into TAPI and give my example for that project.]]></description>
			<content:encoded><![CDATA[<p>Some days ago i finished a project which was about using the TAPI. I will give you a short introduction into TAPI and give my example for that project.</p>
<p>Here a short description about what TAPI is.<br />
The Telephony Application Programming Interface (TAPI) is a Microsoft Windows API, which provides computer telephony integration and enables PCs running Microsoft Windows to use telephone services.<br />
With it you can control a telephone which uses this TAPI. You can listen for calls, make calls and many other things.</p>
<p>For this project I only needed to make a call by clicking on a number in the browser, of course it should work in every browser.<br />
First of all we will check how to get the number from the browser to the telephone. A client has installed the telephone so we need a client solution. So what can we do on the client to pass a number as parameter via TAPI to a telephone? Probably via desktop command line application which is using the TAPI-Library.<br />
Okay now we know how will communicate with the telephone, but how will that application get the number from browser?<br />
On way could be via Javascript, which is probably not realizable. The other choice and I think that&#8217;s the last option we have is to register a new protocol, like HTTP. So we have for example something like &#8220;phone:0123456789&#8243; instead of &#8220;http://&#8230;&#8221;.</p>
<p>How can we register such a protocol now?<br />
I don&#8217;t know how to do that on UNIX Systems but on Windows we just need a registry entry!</p>
<blockquote><p>REGEDIT4</p>
<p>[HKEY_CLASSES_ROOT\PROTOCOL_NAME]<br />
@=&#8221;URL:PROTOCOL_NAME Protocol&#8221;<br />
&#8220;URL Protocol&#8221;=&#8221;"</p>
<p>[HKEY_CLASSES_ROOT\PROTOCOL_NAME\shell]<br />
[HKEY_CLASSES_ROOT\PROTOCOL_NAME\shell\open]<br />
[HKEY_CLASSES_ROOT\PROTOCOL_NAME\shell\open\command]<br />
@=&#8221;\&#8221;PATH_TO_EXE\&#8221; \&#8221;%1\&#8221;"</p></blockquote>
<p>By replacing the PROTOCOL_NAME with your own protocol and the PATH_TO_EXE with the absolute path to your exe file you can pass parameters to the program.</p>
<p><strong>tapi.reg</strong></p>
<blockquote><p>REGEDIT4</p>
<p>[HKEY_CLASSES_ROOT\phone]<br />
@=&#8221;URL:phone Protocol&#8221;<br />
&#8220;URL Protocol&#8221;=&#8221;"</p>
<p>[HKEY_CLASSES_ROOT\phone\shell]<br />
[HKEY_CLASSES_ROOT\phone\shell\open]<br />
[HKEY_CLASSES_ROOT\phone\shell\open\command]<br />
@=&#8221;\&#8221;C:\\TAPI\\TapiCall.exe\&#8221; \&#8221;%1\&#8221;"</p></blockquote>
<p>The %1 is for a parameter, you will get that parameter through the arguments in the main method.<br />
I have made a batch file which installs the the whole thing&#8230;</p>
<p><strong>install.bat</strong></p>
<blockquote><p>mkdir &#8220;C:\TAPI&#8221;<br />
copy Interop.TAPI3Lib.dll &#8220;C:\TAPI&#8221;<br />
copy TapiCall.exe &#8220;C:\TAPI&#8221;<br />
tapi.reg</p></blockquote>
<p>This batch file creates the directory TAPI on C: and copies the files which are needed and finally executes the regedit file.<br />
Now we just need the program which sends the number to the TAPI-Device.<br />
I decided to use C# because I found a TAPI Library for C# and of course because I know C# really good.<br />
It is easy to make programs with C#, you can be really fast and the community is really big.<br />
I used an example from Codeprojects to test the dialing process and the final solution look like that&#8230;</p>
<p><img src="http://farm3.static.flickr.com/2561/4010658439_d9eb838e61_o.png" alt="Mainmethod" /></p>
<p>Here you can see the main method which takes the main parameters and parses it.<br />
Don&#8217;t forget to include the TAPI-Library.</p>
<p><img src="http://farm3.static.flickr.com/2650/4011335064_9828c19a25_o.png" alt="Tapilib" /></p>
<p>Finally the call method which takes the number as string. Here i use the line which name contains &#8220;Agfeo&#8221; because the TAPI devices are from Agfeo.</p>
<p><img src="http://farm4.static.flickr.com/3496/4011423458_dfc2cd7b26_o.png" alt="Callmethod" /></p>
<p>When you click on a link now which has the value phone:123456 in the href attribute the program sends the number 123456 to the TAPI device to and starts the call.<br />
This is a browser independent solution of using your own protocol on a windows machine via browsers.<br />
I hope this helped you a bit if you try to make something like that.</p>
<p>The Visual Studio Project is in the source files which you can download here.</p>
<h2>
<p style="text-align: center;"><strong><a href="http://christianbeikov.at/wp-content/uploads/2009/10/TapiCall.zip">TAPI Project Files</a></strong></p>
</h2>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?a=8jFGySx3BqU:WNSzNKqDNME:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?i=8jFGySx3BqU:WNSzNKqDNME:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?a=8jFGySx3BqU:WNSzNKqDNME:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?a=8jFGySx3BqU:WNSzNKqDNME:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?a=8jFGySx3BqU:WNSzNKqDNME:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?a=8jFGySx3BqU:WNSzNKqDNME:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?i=8jFGySx3BqU:WNSzNKqDNME:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?a=8jFGySx3BqU:WNSzNKqDNME:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?a=8jFGySx3BqU:WNSzNKqDNME:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?i=8jFGySx3BqU:WNSzNKqDNME:F7zBnMyn0Lo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/ChristianBeikovsBlog/~4/8jFGySx3BqU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://christianbeikov.at/2009/10/calling-via-tapi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://christianbeikov.at/2009/10/calling-via-tapi/</feedburner:origLink></item>
		<item>
		<title>Secure Session is pending</title>
		<link>http://feedproxy.google.com/~r/ChristianBeikovsBlog/~3/tsyVpeta-Mo/</link>
		<comments>http://christianbeikov.at/2009/10/secure-session-is-pending/#comments</comments>
		<pubDate>Mon, 05 Oct 2009 20:23:55 +0000</pubDate>
		<dc:creator>Christian Beikov</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://christianbeikov.at/?p=55</guid>
		<description><![CDATA[Again you guys have to wait for my new tutorial to get posted on Nettuts. This time we I will explain you how to set up Secure Sessions with an little example.]]></description>
			<content:encoded><![CDATA[<p>Again you guys have to wait for my new tutorial to get posted on Nettuts. This time we I will explain you how to set up Secure Sessions with an little example. I don&#8217;t want to tell you too much, look forward when it gets posted!</p>
<p>By the way it uses the Crypter Class, so if you have not read that article so far check it out here.</p>
<h3 style="text-align: center;"><a href="http://net.tutsplus.com/tutorials/php/creating-a-crypter-class/">Crypter Class</a></h3>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?a=tsyVpeta-Mo:tupnt9-iZZA:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?i=tsyVpeta-Mo:tupnt9-iZZA:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?a=tsyVpeta-Mo:tupnt9-iZZA:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?a=tsyVpeta-Mo:tupnt9-iZZA:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?a=tsyVpeta-Mo:tupnt9-iZZA:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?a=tsyVpeta-Mo:tupnt9-iZZA:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?i=tsyVpeta-Mo:tupnt9-iZZA:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?a=tsyVpeta-Mo:tupnt9-iZZA:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?a=tsyVpeta-Mo:tupnt9-iZZA:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?i=tsyVpeta-Mo:tupnt9-iZZA:F7zBnMyn0Lo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/ChristianBeikovsBlog/~4/tsyVpeta-Mo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://christianbeikov.at/2009/10/secure-session-is-pending/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://christianbeikov.at/2009/10/secure-session-is-pending/</feedburner:origLink></item>
		<item>
		<title>Writing a Diploma in Programming</title>
		<link>http://feedproxy.google.com/~r/ChristianBeikovsBlog/~3/MUfQBx1z0mI/</link>
		<comments>http://christianbeikov.at/2009/09/writing-a-diplom-in-programming/#comments</comments>
		<pubDate>Sat, 26 Sep 2009 17:42:43 +0000</pubDate>
		<dc:creator>Christian Beikov</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://christianbeikov.at/?p=49</guid>
		<description><![CDATA[The project is called, <strong>Reporting in the project SAS III</strong>
SAS (<u>S</u>chool <u>A</u>dministration <u>S</u>oftware) is a big program for schools in Austria.]]></description>
			<content:encoded><![CDATA[<p>Hey guys out there!</p>
<p>I wasn&#8217;t active for a long time now. I had really much to do so far.<br />
I worked a lot in my school holidays in Graz which is located in the south of Austria (Styria).<br />
3 weeks ago the school started and now I will write a diploma in programming.<br />
Because I have to document all the stuff I do I will keep you update of what I am doing.</p>
<p>Here a short introduction of what I will do&#8230;</p>
<p>The project is called, <strong>Reporting in the project SAS III</strong><br />
SAS (<u>S</u>chool <u>A</u>dministration <u>S</u>oftware) is a big program for schools in Austria.<br />
Many schools use this to manage all things they need for a school year, for example managing data of students, teachers, other personal, generate lists of classes and so on&#8230;<br />
There are really many functions. You can&#8217;t imagine how big it is.<br />
Yeah and my job is to make the reporting for that system.</p>
<p>It&#8217;s not easy because at the moment there are about 200 different reports, and these reports have to be available in formats like, XML, CSV, PDF and many more.<br />
So it&#8217;s a hard thing to write those Reports all by hand. That&#8217;s why we will use JasperReports!<br />
I will tell you more soon, now we will make a kind of study about the topic <strong>Reporting</strong>.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?a=MUfQBx1z0mI:1YK5j55Tq24:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?i=MUfQBx1z0mI:1YK5j55Tq24:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?a=MUfQBx1z0mI:1YK5j55Tq24:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?a=MUfQBx1z0mI:1YK5j55Tq24:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?a=MUfQBx1z0mI:1YK5j55Tq24:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?a=MUfQBx1z0mI:1YK5j55Tq24:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?i=MUfQBx1z0mI:1YK5j55Tq24:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?a=MUfQBx1z0mI:1YK5j55Tq24:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?a=MUfQBx1z0mI:1YK5j55Tq24:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?i=MUfQBx1z0mI:1YK5j55Tq24:F7zBnMyn0Lo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/ChristianBeikovsBlog/~4/MUfQBx1z0mI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://christianbeikov.at/2009/09/writing-a-diplom-in-programming/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://christianbeikov.at/2009/09/writing-a-diplom-in-programming/</feedburner:origLink></item>
		<item>
		<title>Creating a Crypter Class</title>
		<link>http://feedproxy.google.com/~r/ChristianBeikovsBlog/~3/wuAafcjrP4I/</link>
		<comments>http://christianbeikov.at/2009/09/creating-a-crypter-class/#comments</comments>
		<pubDate>Sat, 26 Sep 2009 13:00:03 +0000</pubDate>
		<dc:creator>Christian Beikov</dc:creator>
				<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.stun-design.com/?p=13</guid>
		<description><![CDATA[In this article I will explain how to create a PHP Class to encrypt end decrypt any data with a given password. It is object oriented programmed and uses in PHP existing algorithms.]]></description>
			<content:encoded><![CDATA[<p>Creating a Crypter Class</p>
<p>In this article I will explain how to create a PHP Class to encrypt end decrypt any data with a given password. It is object oriented programmed and uses in PHP existing algorithms.</p>
<h3 style="text-align: center;"><a href="http://net.tutsplus.com/tutorials/php/creating-a-crypter-class/">Read through the whole Tutorial at Nettuts</a></h3>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?a=wuAafcjrP4I:follKJEd_2E:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?i=wuAafcjrP4I:follKJEd_2E:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?a=wuAafcjrP4I:follKJEd_2E:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?a=wuAafcjrP4I:follKJEd_2E:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?a=wuAafcjrP4I:follKJEd_2E:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?a=wuAafcjrP4I:follKJEd_2E:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?i=wuAafcjrP4I:follKJEd_2E:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?a=wuAafcjrP4I:follKJEd_2E:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?a=wuAafcjrP4I:follKJEd_2E:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?i=wuAafcjrP4I:follKJEd_2E:F7zBnMyn0Lo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/ChristianBeikovsBlog/~4/wuAafcjrP4I" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://christianbeikov.at/2009/09/creating-a-crypter-class/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://christianbeikov.at/2009/09/creating-a-crypter-class/</feedburner:origLink></item>
		<item>
		<title>Waiting for my tutorial to get posted</title>
		<link>http://feedproxy.google.com/~r/ChristianBeikovsBlog/~3/upjrMUZEoNw/</link>
		<comments>http://christianbeikov.at/2009/06/waiting-for-my-tutorial-to-get-posted/#comments</comments>
		<pubDate>Tue, 16 Jun 2009 06:01:32 +0000</pubDate>
		<dc:creator>Christian Beikov</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://christianbeikov.at/?p=29</guid>
		<description><![CDATA[At the moment I am waiting for Nettuts to post my tutorial which is called, 'Creating a Crypter Class'.]]></description>
			<content:encoded><![CDATA[<p>At the moment I am waiting for Nettuts to post my tutorial which is called, &#8216;Creating a Crypter Class&#8217;. I hope you will read it when it is published, I will post you the link to it as soon as I get the information that it is posted. It is about encryption and decryption of any data with a given password.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?a=upjrMUZEoNw:M6CEb7aiTB0:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?i=upjrMUZEoNw:M6CEb7aiTB0:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?a=upjrMUZEoNw:M6CEb7aiTB0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?a=upjrMUZEoNw:M6CEb7aiTB0:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?a=upjrMUZEoNw:M6CEb7aiTB0:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?a=upjrMUZEoNw:M6CEb7aiTB0:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?i=upjrMUZEoNw:M6CEb7aiTB0:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?a=upjrMUZEoNw:M6CEb7aiTB0:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?a=upjrMUZEoNw:M6CEb7aiTB0:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?i=upjrMUZEoNw:M6CEb7aiTB0:F7zBnMyn0Lo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/ChristianBeikovsBlog/~4/upjrMUZEoNw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://christianbeikov.at/2009/06/waiting-for-my-tutorial-to-get-posted/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://christianbeikov.at/2009/06/waiting-for-my-tutorial-to-get-posted/</feedburner:origLink></item>
		<item>
		<title>Heya Guys Out There</title>
		<link>http://feedproxy.google.com/~r/ChristianBeikovsBlog/~3/anZ6az7pP_k/</link>
		<comments>http://christianbeikov.at/2009/06/heya-guys-out-there/#comments</comments>
		<pubDate>Fri, 12 Jun 2009 12:00:30 +0000</pubDate>
		<dc:creator>Christian Beikov</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Developer]]></category>
		<category><![CDATA[First]]></category>
		<category><![CDATA[Welcome]]></category>

		<guid isPermaLink="false">http://www.stun-design.com/?p=6</guid>
		<description><![CDATA[Hello and welcome to my first blog!

Special thanks to my good friend and classmate Bernd Artmueller. He designed this Wordpress Theme and gave it to me for my blog. It is really nice and I know that he has a lot of potential! Great work mate, as go on like that!]]></description>
			<content:encoded><![CDATA[<p>Hello and welcome to my first blog!</p>
<p>Special thanks to my good friend and classmate Bernd Artmueller (<a href="http://www.berndartmueller.at">www.berndartmueller.at</a>).He designed this WordPress Theme and gave it to me for my blog. It is really nice and I know that he has a lot of potential! Great work mate, as go on like that!</p>
<p>Well now something about me and my wonderful life! My name is Christian Beikov and I am 18 years old. I currently live in Boeheimkrichen in Austria, but I will move soon to Kapelln, which is located just a few kilometers away. I have a girlfriend called Alex and I really love her, I think she is the one I want to marry someday, nah I am absolutely sure that I want to.</p>
<p>I started with project oriented programming about 2 years ago. A schoolmate and I wanted to make a game programmed in C#. We learned how to work together and finally decided to set up a new project after we succeeded our game project. That was a simple website for his uncle and we did a really nice job! I made a simple CMS for his specific content which was realized with the Dojo-Framework in the Frontend.</p>
<p>Now we want to found a company and sell our software. You can visit our site here: <a href="http://www.blazebit.com">http://www.blazebit.com</a>. And now we’re currently working on our own CMS and searching for new clients.</p>
<p>I will try to post at least every week a new tutorial about PHP classes or some other topics related to programming (including the source files).</p>
<p>I hope you will like my tutorials and would be really pleased if you visit my again!</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?a=anZ6az7pP_k:P_MTsdNRF20:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?i=anZ6az7pP_k:P_MTsdNRF20:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?a=anZ6az7pP_k:P_MTsdNRF20:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?a=anZ6az7pP_k:P_MTsdNRF20:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?a=anZ6az7pP_k:P_MTsdNRF20:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?d=TzevzKxY174" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?a=anZ6az7pP_k:P_MTsdNRF20:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?i=anZ6az7pP_k:P_MTsdNRF20:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?a=anZ6az7pP_k:P_MTsdNRF20:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?a=anZ6az7pP_k:P_MTsdNRF20:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/ChristianBeikovsBlog?i=anZ6az7pP_k:P_MTsdNRF20:F7zBnMyn0Lo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/ChristianBeikovsBlog/~4/anZ6az7pP_k" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://christianbeikov.at/2009/06/heya-guys-out-there/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://christianbeikov.at/2009/06/heya-guys-out-there/</feedburner:origLink></item>
	</channel>
</rss>
