<?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/"
	>

<channel>
	<title>I Media Works</title>
	<atom:link href="http://i-mediaworks.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://i-mediaworks.net</link>
	<description>All about macbook, xbox and other apple production</description>
	<pubDate>Mon, 05 Oct 2009 09:51:14 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Exporting MS SQL Server 2000/2005/2008 tables to XML</title>
		<link>http://i-mediaworks.net/2009/10/05/exporting-ms-sql-server-200020052008-tables-to-xml/</link>
		<comments>http://i-mediaworks.net/2009/10/05/exporting-ms-sql-server-200020052008-tables-to-xml/#comments</comments>
		<pubDate>Mon, 05 Oct 2009 09:50:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://i-mediaworks.net/?p=55</guid>
		<description><![CDATA[Let&#8217;s talk about the problem, which became the title of the topic. 
Production: 
The need for the withdrawal of the table on the server in the XML file encoding you want for future needs (analysis, integration of XML into other components and applications, etc.). We use the bat-script. 
Difficulties 
Lack of support for exports to [...]]]></description>
			<content:encoded><![CDATA[<p>Let&#8217;s talk about the problem, which became the title of the topic. </p>
<p>Production: </p>
<p>The need for the withdrawal of the table on the server in the XML file encoding you want for future needs (analysis, integration of XML into other components and applications, etc.). We use the bat-script. </p>
<p>Difficulties </p>
<p>Lack of support for exports to various encoding tools MS SQL.<br />
SQL Server does not store the encoding XML, where XML-data permanently stored in the database. Therefore, the original XML encoding of fields available for export XML-data. To export a SQL Server uses the UTF-16.<br />
©<br />
The simplicity and speed of use for the various tables and databases. </p>
<p>Steps of implementation </p>
<p>First, we use the utility bcp, which included MS SQL Server (Even in the Express version). Podrobree.<br />
Because of its capabilities, we need only the result output request to a file.<br />
The values of keys on the example:<br />
bcp &#8220;SELECT * FROM DB.SCHEMA.TABLE FOR XML AUTO, ROOT ( &#8216;ROOT&#8217;)&#8221; queryout temp.xml-w-S% SERVERNAME%-U% DBUSER%-P% DBPASS% </p>
<p>Description of team: </p>
<p>SELECT query to retrieve all data from the table (the full name).<br />
XML AUTO is responsible for converting the result to an XML tree.<br />
ROOT appoints the root element in this tree<br />
queryout specifies the output file<br />
-w specifies the use of Unicode for mass copying<br />
-S name of the server instance<br />
-P password<br />
-U user </p>
<p>Using this command we get the XML file without a header in the UTF-16.<br />
It is necessary to add a title and make the correct xml encoding.<br />
Create a template header xml_header.xml with the contents:<br />
<? xml version = "1.0" encoding = "Windows-1251"? </p>
<p>* This source code was highlighted with Source Code Highlighter. </p>
<p>Now it will be sufficient to execute the command<br />
copy xml_header.xml + bcp_out.xml result.xml<br />
and get a valid XML document. </p>
<p>To convert the encoding is going to use iconv, any implementation. I chose the most compact and portable solution for Windows, written in Win32 API from Yukihiro Nakadaira. </p>
<p>So, the script file: </p>
<p>@ echo off </p>
<p>if "% 1" == "" (<br />
The absence rem options<br />
echo Use with: db_name db_table [out_file]<br />
exit / b 1<br />
) </p>
<p>if "% 2" == "" (<br />
echo Use with: db_name db_table [out_file]<br />
exit / b 1<br />
) </p>
<p>rem We read the settings from the file settings.txt, which must be located in<br />
rem the same directory as the bat-file. If you can not parse configuration --<br />
rem exit with a nonzero return code.<br />
call: read_settings% ~ dp0settings.txt | | exit / b 1 </p>
<p>set DBNAME =% 1<br />
set DBTABLE =% 2<br />
set OUTFILE =% 3 </p>
<p>echo;<br />
echo ====== ECHO SETTINGS FROM CONFIG ======<br />
echo;<br />
echo ServerName:% SERVERNAME%<br />
echo Schema:% SCHEMA%<br />
echo Out codepage:% OUTCP%<br />
echo User:% DBUSER%<br />
echo Pass: ********<br />
echo Iconv path:% ICONVPATH%<br />
echo;<br />
echo =======================================<br />
echo;<br />
echo ====== ECHO SETTINGS FROM CMD =========<br />
echo;<br />
echo DB Name =% 1<br />
echo DB Table =% 2<br />
echo Output file =% 3<br />
echo;<br />
echo =======================================<br />
echo;<br />
echo ====== CALL TO BCP UTIL ===============<br />
echo;<br />
call: bcp_call<br />
echo;<br />
echo ====== CALL TO ICONV ==================<br />
echo;<br />
call: iconv_call<br />
echo;<br />
echo =======================================<br />
echo;<br />
echo See the log \ log.txt for details<br />
exit / b 0 </p>
<p>rem<br />
rem Function to read the settings from a file.<br />
rem Login:<br />
rem% 1 - file name settings<br />
: read_settings </p>
<p>set SETTINGSFILE =% 1 </p>
<p>rem Check file exists<br />
if not exist% SETTINGSFILE% (<br />
   echo FAIL: No such file% SETTINGSFILE%<br />
   exit / b 1<br />
) </p>
<p>rem Processing file c settings </p>
<p>for / f "eol = # delims == tokens = 1,2"%% i in (% SETTINGSFILE%) do (<br />
   set%% i =%% j<br />
) </p>
<p>exit / b 0 </p>
<p>rem<br />
rem function to access the database<br />
: bcp_call </p>
<p>bcp "SELECT * FROM% DBNAME%.% SCHEMA%.% DBTABLE% FOR XML AUTO, ROOT ( '% DBTABLE%')" queryout temp.xml-w-r ""-S% SERVERNAME%-U% DBUSER% -- P% DBPASS%> log \ rawlog.txt </p>
<p>rem encoding the log in normal encoding<br />
% ICONVPATH%-f cp866-t cp1251 log \ rawlog.txt> log \ log.txt<br />
del log \ rawlog.txt </p>
<p>copy lib \ xml_header.xml + temp.xml temp2.xml> nul<br />
del temp.xml </p>
<p>echo Finished. </p>
<p>exit / b 0 </p>
<p>rem<br />
rem Function conversion<br />
: iconv_call </p>
<p>rem a default value of the output encoding<br />
if &#8220;% OUTCP%&#8221; == &#8220;&#8221; (<br />
   set OUTCP = CP1251<br />
) </p>
<p>rem a default value of the output file<br />
if &#8220;% OUTFILE%&#8221; == &#8220;&#8221; (<br />
   set OUTFILE = out \% DBTABLE%. xml<br />
) </p>
<p>if not exist% ICONVPATH% (<br />
   echo FAIL: Check Iconv path!<br />
   exit / b / 1<br />
) </p>
<p>% ICONVPATH%-f UTF-16-t% OUTCP% temp2.xml>% OUTFILE%<br />
del temp2.xml </p>
<p>echo Finished. </p>
<p>exit / b 0 </p>
<p>* This source code was highlighted with Source Code Highlighter. </p>
<p>A command-line pass: DatabaseName tbl_name [output file]<br />
The rest of the configuration prescribes in settings.txt: </p>
<p># Server Name<br />
SERVERNAME = WIND \ SQLEXPRESS<br />
# Name of scheme<br />
SCHEMA = dbo<br />
# Name the output encoding<br />
OUTCP = CP1251 </p>
<p># User<br />
DBUSER = dzhon<br />
# User password<br />
DBPASS = 123 </p>
<p># Path to iconv.exe<br />
ICONVPATH = lib \ win_iconv.exe </p>
<p>For the logic in the XML file created 3 functions.<br />
First parses the configuration, the second is bcp, the third - iconv for the resulting file. </p>
<p>Conclusion </p>
<p>Immediately, I note that by default uses CP1251, and the log of the bcp is encoded in it the same. This is done for the convenience of it is in Windows, and not some other religious preference. I remember the days when Windows XP betrayed krokozyabry when calling a simple route PRINT in the descriptions of the interfaces &#8230; So I myself prefer to always and everywhere UTF-8. However, the script is flexible enough to change the encoding output, though will have to ask in xml_header.xml another value. </p>
<p>Download the working version of the solution here (13 Kb). </p>
<p>For SQL Server 2000 will have to make some changes due to the fact that the concept of the scheme (in terms of container facilities) has been introduced only in 2005. </p>
<p>You can also see the material on writing bat files, which had been dragged from parsing configuration. </p>
<p>Thank you for your attention, I hope someone can help.<br />
Moved to a thematic blog in the presence of karma, however, you decide.</p>
<p>&#8212;<br />
<br />Check out the analysis of <a href="http://siteexpansion.com/pantswalker.net/" title="pantswalker.net" style="text-decoration:none;">pantswalker.net</a>, <a href="http://siteexpansion.com/3t.cn/" title="3t.cn" style="text-decoration:none;">3t.cn</a>, <a href="http://siteexpansion.com/interpark.com/" title="interpark.com" style="text-decoration:none;">interpark.com</a>, <a href="http://siteexpansion.com/bollyfm.net/" title="bollyfm.net" style="text-decoration:none;">bollyfm.net</a>, <a href="http://siteexpansion.com/land.to/" title="land.to" style="text-decoration:none;">land.to</a>, <a href="http://siteexpansion.com/animefreak.tv/" title="animefreak.tv" style="text-decoration:none;">animefreak.tv</a>, <a href="http://siteexpansion.com/asiafriendfinder.com/" title="asiafriendfinder.com" style="text-decoration:none;">asiafriendfinder.com</a>, <a href="http://siteexpansion.com/vuku.ru/" title="vuku.ru" style="text-decoration:none;">vuku.ru</a>, <a href="http://siteexpansion.com/91.cn/" title="91.cn" style="text-decoration:none;">91.cn</a>, <a href="http://siteexpansion.com/bloggang.com/" title="bloggang.com" style="text-decoration:none;">bloggang.com</a> - and much more<br />
<h3>Random Posts</h3>
<ul class="related_post">
<li><a href="http://i-mediaworks.net/2009/03/16/fine-macbook-case/" title="Fine MacBook Case">Fine MacBook Case</a></li>
<li><a href="http://i-mediaworks.net/2009/10/03/problems-of-google/" title="Problems of Google">Problems of Google</a></li>
<li><a href="http://i-mediaworks.net/2009/03/08/macbook-pro-2/" title="MacBook Pro">MacBook Pro</a></li>
<li><a href="http://i-mediaworks.net/2009/04/06/high-school-workspace-desk-pic-2/" title="High School Workspace: Desk pic 2">High School Workspace: Desk pic 2</a></li>
<li><a href="http://i-mediaworks.net/2009/04/06/36591/" title="Mac geek photo">Mac geek photo</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://i-mediaworks.net/2009/10/05/exporting-ms-sql-server-200020052008-tables-to-xml/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Problems of Google</title>
		<link>http://i-mediaworks.net/2009/10/03/problems-of-google/</link>
		<comments>http://i-mediaworks.net/2009/10/03/problems-of-google/#comments</comments>
		<pubDate>Sat, 03 Oct 2009 12:20:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://i-mediaworks.net/?p=53</guid>
		<description><![CDATA[The reason for suspicion was concluded in 2008 an agreement between Google and major publishing houses and authors of the United States. 
Recall that in late 2005, the American publishers and authors have sued Google, accusing the company of massive copyright infringement. Then the cause of complaint was the search service Google Book Search, the [...]]]></description>
			<content:encoded><![CDATA[<p>The reason for suspicion was concluded in 2008 an agreement between Google and major publishing houses and authors of the United States. </p>
<p>Recall that in late 2005, the American publishers and authors have sued Google, accusing the company of massive copyright infringement. Then the cause of complaint was the search service Google Book Search, the bases of which are digital copies of books. Service provides libraries access to electronic books without the express consent of the authors. </p>
<p>Only the fall of 2008 this conflict was resolved. For Google, the claim costs were $ 125 million that went to the establishment of the Register of rights to the books (Books Rights Registry). Any writers can make their work in this register and receive money for their use. Funds for payments received from participating in Google libraries and universities, as well as from sales of electronic copies of books, advertising and other sources. </p>
<p>According to U.S. Department of Justice, the terms of this agreement conflict with U.S. antitrust laws.</p>
<p><img src="http://siteexpansion.com/img/logo.gif" title="Problems Of Google" alt="logo Problems of Google" /><br />Check out the analysis of <a href="http://siteexpansion.com/psu.edu/" title="psu.edu">psu.edu</a>, <a href="http://siteexpansion.com/techguy.org/" title="techguy.org">techguy.org</a>, <a href="http://siteexpansion.com/besplatnoexxx.com/" title="besplatnoexxx.com">besplatnoexxx.com</a>, <a href="http://siteexpansion.com/golflink.com/" title="golflink.com">golflink.com</a>, <a href="http://siteexpansion.com/filebank.co.jp/" title="filebank.co.jp">filebank.co.jp</a>, <a href="http://siteexpansion.com/adsonar.com/" title="adsonar.com">adsonar.com</a>, <a href="http://siteexpansion.com/sahibinden.com/" title="sahibinden.com">sahibinden.com</a>, <a href="http://siteexpansion.com/technorati.com/" title="technorati.com">technorati.com</a>, <a href="http://siteexpansion.com/joins.com/" title="joins.com">joins.com</a>, <a href="http://siteexpansion.com/meatmembers.com/" title="meatmembers.com">meatmembers.com</a> - and much more<br />
<h3>Random Posts</h3>
<ul class="related_post">
<li><a href="http://i-mediaworks.net/2009/03/08/thanks-for-playing/" title="Thanks for Playing">Thanks for Playing</a></li>
<li><a href="http://i-mediaworks.net/2009/09/10/searchme-may-go-offline-tomorrow/" title="SearchMe May Go Offline Tomorrow">SearchMe May Go Offline Tomorrow</a></li>
<li><a href="http://i-mediaworks.net/2009/03/08/xbox/" title="Xbox">Xbox</a></li>
<li><a href="http://i-mediaworks.net/2009/03/08/technology-savvy-geisha/" title="Technology-savvy Geisha">Technology-savvy Geisha</a></li>
<li><a href="http://i-mediaworks.net/2009/04/06/high-school-workspace-desk-pic-2/" title="High School Workspace: Desk pic 2">High School Workspace: Desk pic 2</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://i-mediaworks.net/2009/10/03/problems-of-google/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to make a screenshot</title>
		<link>http://i-mediaworks.net/2009/09/20/how-to-make-a-screenshot/</link>
		<comments>http://i-mediaworks.net/2009/09/20/how-to-make-a-screenshot/#comments</comments>
		<pubDate>Sun, 20 Sep 2009 10:08:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://i-mediaworks.net/?p=51</guid>
		<description><![CDATA[Wondering how to make a screenshot? Take a look at Pict image hosting software solutions: Pict FireFox extension and Pict Uploader for Windows. Both applliactions allow you to capture screenshots, save them in different formats and automatically upload them to Pict image hosting.
Random Posts

The Classics
YouTube - Finally HD!
Thanks for Playing
Biz Class
MacBook Pro leather case pictures

]]></description>
			<content:encoded><![CDATA[<p>Wondering how to make a screenshot? Take a look at Pict image hosting software solutions: <strong>Pict FireFox extension</strong> and <strong>Pict Uploader</strong> for Windows. Both applliactions allow you to <a title="Capture screenshots" href="http://www.pict.com/software">capture screenshots</a>, save them in different formats and automatically upload them to Pict image hosting.</p>
<h3>Random Posts</h3>
<ul class="related_post">
<li><a href="http://i-mediaworks.net/2009/03/08/thanks-for-playing/" title="Thanks for Playing">Thanks for Playing</a></li>
<li><a href="http://i-mediaworks.net/2009/03/08/xbox/" title="Xbox">Xbox</a></li>
<li><a href="http://i-mediaworks.net/2009/04/06/36591/" title="Mac geek photo">Mac geek photo</a></li>
<li><a href="http://i-mediaworks.net/2009/09/17/youtube-is-counting-on-a-deal-with-movie-studios/" title="YouTube is counting on a deal with movie studios">YouTube is counting on a deal with movie studios</a></li>
<li><a href="http://i-mediaworks.net/2009/09/06/youtube-finally-hd/" title="YouTube - Finally HD!">YouTube - Finally HD!</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://i-mediaworks.net/2009/09/20/how-to-make-a-screenshot/feed/</wfw:commentRss>
		</item>
		<item>
		<title>YouTube is counting on a deal with movie studios</title>
		<link>http://i-mediaworks.net/2009/09/17/youtube-is-counting-on-a-deal-with-movie-studios/</link>
		<comments>http://i-mediaworks.net/2009/09/17/youtube-is-counting-on-a-deal-with-movie-studios/#comments</comments>
		<pubDate>Thu, 17 Sep 2009 15:12:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://i-mediaworks.net/?p=48</guid>
		<description><![CDATA[
YouTube is counting on a deal with movie studios to release new movies available on the Internet. 
Inneresting. 
According to those familiar with the plan, negotiations are already underway with Lionsgate, Sony, Warner Bros and MGM, which already has ad deals with the company. 
The idea would be similar to Itunes, where you can view [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://i-mediaworks.net/wp-content/uploads/2009/09/7.jpg" alt="7 YouTube is counting on a deal with movie studios" title="7" width="450" height="305" class="alignnone size-full wp-image-49" /></p>
<p>YouTube is counting on a deal with <strong>movie</strong> studios to release new movies available on the Internet. </p>
<p>Inneresting. </p>
<p>According to those familiar with the plan, negotiations are already underway with Lionsgate, Sony, Warner Bros and MGM, which already has ad deals with the company. </p>
<p>The idea would be similar to Itunes, where you can view the rent for 24 hours for about $ 1.99-$ 3.99. </p>
<p>It sounds like a good idea, but how many people actually make the transition from ITunes <strong>streaming video</strong> giant? </p>
<p>There&#8217;s Gotta Be an element of competition somewhere, right? </p>
<p>Would U watch a movie rental on YouTube??<br />
<h3>Random Posts</h3>
<ul class="related_post">
<li><a href="http://i-mediaworks.net/2009/09/09/the-europas-liveblog-2009/" title="The Europas Liveblog 2009">The Europas Liveblog 2009</a></li>
<li><a href="http://i-mediaworks.net/2009/04/06/do-we-have-enough/" title="do-we-have-enough">do-we-have-enough</a></li>
<li><a href="http://i-mediaworks.net/2009/09/10/searchme-may-go-offline-tomorrow/" title="SearchMe May Go Offline Tomorrow">SearchMe May Go Offline Tomorrow</a></li>
<li><a href="http://i-mediaworks.net/2009/03/16/macbook-pro-leather-case-pictures/" title="MacBook Pro leather case pictures">MacBook Pro leather case pictures</a></li>
<li><a href="http://i-mediaworks.net/2009/03/16/fine-macbook-case/" title="Fine MacBook Case">Fine MacBook Case</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://i-mediaworks.net/2009/09/17/youtube-is-counting-on-a-deal-with-movie-studios/feed/</wfw:commentRss>
		</item>
		<item>
		<title>SearchMe May Go Offline Tomorrow</title>
		<link>http://i-mediaworks.net/2009/09/10/searchme-may-go-offline-tomorrow/</link>
		<comments>http://i-mediaworks.net/2009/09/10/searchme-may-go-offline-tomorrow/#comments</comments>
		<pubDate>Thu, 10 Sep 2009 08:31:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://i-mediaworks.net/?p=46</guid>
		<description><![CDATA[We have last week wiki article describing &#8220;SearchMe May Go Offline Tomorrow (Updated: Offline Now)&#8221; at number one tech site Washington Post. IT guy brings on a whole bunch of awesome issues &#038; programming magazines about &#8220;YouTube Enters The Stream&#8221; (hifi-forum.de), &#8220;VMWare Acquires SpringSource&#8221; (travian.in wiki), &#8220;Why Google Employees Quit (torrentdownloads.net wiki)&#8221; and &#8220;Obama&#8217;s Crowdsourced [...]]]></description>
			<content:encoded><![CDATA[<p>We have last week <a href="http://siteexpansion.com/">wiki article</a> describing &#8220;SearchMe May Go Offline Tomorrow (Updated: Offline Now)&#8221; at number one tech site Washington Post. IT guy brings on a whole bunch of awesome issues &#038; programming magazines about &#8220;YouTube Enters The Stream&#8221; (<a href="http://siteexpansion.com/hifi-forum.de/">hifi-forum.de</a>), &#8220;VMWare Acquires SpringSource&#8221; (<a href="http://siteexpansion.com/travian.in/">travian.in wiki</a>), &#8220;Why Google Employees Quit (<a href="http://siteexpansion.com/torrentdownloads.net/">torrentdownloads.net wiki</a>)&#8221; and &#8220;Obama&#8217;s Crowdsourced Resolutions For 2009 (<a href="http://siteexpansion.com/fulldls.com/">fulldls.com profile</a>)&#8221;. You can get tons of fresh IT articles &#038; documentation on cool projects.Hubs, personal blogs, services, media websites, startups, news sites are fully reviewed at &#8220;AIM Embraces The Lifestream&#8221;. Have a good reading and bookmark us.<br />
<h3>Random Posts</h3>
<ul class="related_post">
<li><a href="http://i-mediaworks.net/2009/03/08/falmouth-desk/" title="Falmouth Desk">Falmouth Desk</a></li>
<li><a href="http://i-mediaworks.net/2009/03/16/fine-macbook-case/" title="Fine MacBook Case">Fine MacBook Case</a></li>
<li><a href="http://i-mediaworks.net/2009/04/06/do-we-have-enough/" title="do-we-have-enough">do-we-have-enough</a></li>
<li><a href="http://i-mediaworks.net/2009/09/20/how-to-make-a-screenshot/" title="How to make a screenshot">How to make a screenshot</a></li>
<li><a href="http://i-mediaworks.net/2009/09/06/youtube-finally-hd/" title="YouTube - Finally HD!">YouTube - Finally HD!</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://i-mediaworks.net/2009/09/10/searchme-may-go-offline-tomorrow/feed/</wfw:commentRss>
		</item>
		<item>
		<title>The Europas Liveblog 2009</title>
		<link>http://i-mediaworks.net/2009/09/09/the-europas-liveblog-2009/</link>
		<comments>http://i-mediaworks.net/2009/09/09/the-europas-liveblog-2009/#comments</comments>
		<pubDate>Wed, 09 Sep 2009 15:17:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://i-mediaworks.net/?p=44</guid>
		<description><![CDATA[Here is fresh wiki text where author talks about &#8220;The Europas Liveblog 2009&#8243; at ultimate online site Washington Post. Writer writes about several awesome problems &#038; programming problems related to &#8220;Deny This, Last.fm&#8221; (icicibank.co.in), &#8220;The Google Ventures Cheat Sheet&#8221; (lawyers.com), &#8220;Yazzem Launches Version 2; Improves Latest Activity Among Users (menelgame.pl)&#8221; and &#8220;How OpenTable Could Actually [...]]]></description>
			<content:encoded><![CDATA[<p>Here is fresh <a href="http://siteexpansion.com/">wiki text</a> where author talks about &#8220;The Europas Liveblog 2009&#8243; at ultimate online site Washington Post. Writer writes about several awesome problems &#038; programming problems related to &#8220;Deny This, Last.fm&#8221; (<a href="http://siteexpansion.com/icicibank.co.in/">icicibank.co.in</a>), &#8220;The Google Ventures Cheat Sheet&#8221; (<a href="http://siteexpansion.com/lawyers.com/">lawyers.com</a>), &#8220;Yazzem Launches Version 2; Improves Latest Activity Among Users (<a href="http://siteexpansion.com/menelgame.pl/">menelgame.pl</a>)&#8221; and &#8220;How OpenTable Could Actually Matter (<a href="http://siteexpansion.com/game.co.uk/">game.co.uk</a>)&#8221;. You may also download megabytes of brand new geek news &#038; documentation on amazing meetings.Hubs, media websites, news sites, startups, personal blogs, services are fully represented at &#8220;Google Latitude: The Video&#8221;. Check it out and come back again.<br />
<h3>Random Posts</h3>
<ul class="related_post">
<li><a href="http://i-mediaworks.net/2009/03/30/biz-class/" title="Biz Class">Biz Class</a></li>
<li><a href="http://i-mediaworks.net/2009/03/16/fine-macbook-case/" title="Fine MacBook Case">Fine MacBook Case</a></li>
<li><a href="http://i-mediaworks.net/2009/03/30/the-classics/" title="The Classics">The Classics</a></li>
<li><a href="http://i-mediaworks.net/2009/03/08/macbook-pro-2/" title="MacBook Pro">MacBook Pro</a></li>
<li><a href="http://i-mediaworks.net/2009/09/10/searchme-may-go-offline-tomorrow/" title="SearchMe May Go Offline Tomorrow">SearchMe May Go Offline Tomorrow</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://i-mediaworks.net/2009/09/09/the-europas-liveblog-2009/feed/</wfw:commentRss>
		</item>
		<item>
		<title>YouTube - Finally HD!</title>
		<link>http://i-mediaworks.net/2009/09/06/youtube-finally-hd/</link>
		<comments>http://i-mediaworks.net/2009/09/06/youtube-finally-hd/#comments</comments>
		<pubDate>Sun, 06 Sep 2009 14:27:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://i-mediaworks.net/?p=41</guid>
		<description><![CDATA[
Well known YouTube media hosting is finally offering High Definition video support we all have been waiting for so long I think! It is great now video is available in such a great quality and it is cool one may leave any comments and have fun.
Random Posts

Logo
Biz Class
The Europas Liveblog 2009
MacBook Pro
MacBook Pro leather case [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://i-mediaworks.net/wp-content/uploads/2009/09/22.jpg" alt="22 YouTube - Finally HD!" title="22" width="500" height="584" class="alignnone size-full wp-image-42" /><br />
Well known YouTube <strong>media</strong> hosting is finally offering High Definition <strong>video</strong> support we all have been waiting for so long I think! It is great now video is available in such a great quality and it is cool one may leave any comments and have fun.<br />
<h3>Random Posts</h3>
<ul class="related_post">
<li><a href="http://i-mediaworks.net/2009/03/08/macbook-topcase/" title="MacBook TopCase">MacBook TopCase</a></li>
<li><a href="http://i-mediaworks.net/2009/03/23/logo/" title="Logo">Logo</a></li>
<li><a href="http://i-mediaworks.net/2009/03/16/new-macbook-iphone-and-imac-photos/" title="New MacBook, Iphone and IMac photos">New MacBook, Iphone and IMac photos</a></li>
<li><a href="http://i-mediaworks.net/2009/10/03/problems-of-google/" title="Problems of Google">Problems of Google</a></li>
<li><a href="http://i-mediaworks.net/2009/09/09/the-europas-liveblog-2009/" title="The Europas Liveblog 2009">The Europas Liveblog 2009</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://i-mediaworks.net/2009/09/06/youtube-finally-hd/feed/</wfw:commentRss>
		</item>
		<item>
		<title>PingWin Software</title>
		<link>http://i-mediaworks.net/2009/09/04/pingwin-software/</link>
		<comments>http://i-mediaworks.net/2009/09/04/pingwin-software/#comments</comments>
		<pubDate>Fri, 04 Sep 2009 19:07:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://i-mediaworks.net/?p=39</guid>
		<description><![CDATA[Russia PingWin Software company announces (via lepoint.fr) development of original scripts, which can be applied in the free Linux operating systems as effective analogs of the well-known typefaces that come with office software products and Microsoft family of operating systems Windows. Set of fonts will be distributed under a free license. 
The project was named [...]]]></description>
			<content:encoded><![CDATA[<p>Russia PingWin Software company announces (via <a href="http://siteexpansion.com/lepoint.fr/">lepoint.fr</a>) development of original scripts, which can be applied in the free Linux operating systems as effective analogs of the well-known typefaces that come with office software products and Microsoft family of operating systems Windows. Set of fonts will be distributed under a free license. </p>
<p>The project was named PingWi Typography (via <a href="http://siteexpansion.com/einslive.de/">einslive.de</a>). In accordance with the modern trend of typographic font in all its components is supported by stylistic unity that distinguishes the modern development called supergarniturami. For the convenience of users for a set of headsets PWT selected names: PWT Tahion, PWT Arion, PWT Courant, PWT Verde, PWT Timer. Pipeline headset can be used independently in all components of OpenOffice.org 3 in the presence of FreeType 2. </p>
<p>In the near future will be announced closed beta testing to gather suggestions and comments on fonts PWT Tahion, PWT Arion (via <a href="http://siteexpansion.com/19lou.com/">19lou.com</a>) and PWT Verde. All those wishing to be sent to the original fonts OTF and TTF, as well as documentation for testing. Open testing will begin within a 1.5-2 months after the removal of the first comments. Output the first part of the package (PWT Tahion, PWT Arion and PWT Verde) is expected in late 2009, PWT Timer and PWT Courant - in 2010.<br />
<h3>Random Posts</h3>
<ul class="related_post">
<li><a href="http://i-mediaworks.net/2009/09/20/how-to-make-a-screenshot/" title="How to make a screenshot">How to make a screenshot</a></li>
<li><a href="http://i-mediaworks.net/2009/03/16/fine-macbook-case/" title="Fine MacBook Case">Fine MacBook Case</a></li>
<li><a href="http://i-mediaworks.net/2009/04/06/36591/" title="Mac geek photo">Mac geek photo</a></li>
<li><a href="http://i-mediaworks.net/2009/09/10/searchme-may-go-offline-tomorrow/" title="SearchMe May Go Offline Tomorrow">SearchMe May Go Offline Tomorrow</a></li>
<li><a href="http://i-mediaworks.net/2009/03/30/the-classics/" title="The Classics">The Classics</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://i-mediaworks.net/2009/09/04/pingwin-software/feed/</wfw:commentRss>
		</item>
		<item>
		<title>do-we-have-enough</title>
		<link>http://i-mediaworks.net/2009/04/06/do-we-have-enough/</link>
		<comments>http://i-mediaworks.net/2009/04/06/do-we-have-enough/#comments</comments>
		<pubDate>Mon, 06 Apr 2009 03:48:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[gadget]]></category>

		<guid isPermaLink="false">http://i-mediaworks.net/?p=36</guid>
		<description><![CDATA[
Related Blogs

Related Blogs on gadget
Samsung Motorsâ€™ concept car - eMX - by Gadget, shop online blog of &#8230;
Leaked: Dellâ€™s plans for Mini 10 netbook upgrades and all new Mini &#8230;
Cool water gadget garden: Stainless Steel Sphere &#124; Latest Gadgets &#8230;
Â» HTC Snap: â€œBlackBerryâ€ With Windows Mobile OS From HTC â€º Gadget &#8230;
Â» Download BlackBerry Connect [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://i-mediaworks.net/wp-content/cache/3413321167_4cb6910fd7.jpg" alt="do-we-have-enough" title="Do We Have Enough" /><br /><span id="more-36"></span><br />
<h4>Related Blogs</h4>
<ul class="pc_pingback">
<li class="hdl" style="list-style: none">Related Blogs on <b>gadget</b></li>
<li><a href="http://www.techchee.com/2009/04/06/samsung-motors-concept-car-emx/">Samsung Motorsâ€™ concept car - eMX - by <b>Gadget</b>, shop online blog of <b>&#8230;</b></a></li>
<li><a href="http://blog.gadgetlite.com/2009/04/06/leaked-dells-plans-mini-10/">Leaked: Dellâ€™s plans for Mini 10 netbook upgrades and all new Mini <b>&#8230;</b></a></li>
<li><a href="http://www.latestgadgetstobuy.com/cool-water-gadget-garden-stainless-steel-sphere/">Cool water <b>gadget</b> garden: Stainless Steel Sphere | Latest <b>Gadgets</b> <b>&#8230;</b></a></li>
<li><a href="http://www.gadget.pdamu.com/2009/04/06/htc-snap-blackberry-with-windows-mobile-os-from-htc/">Â» HTC Snap: â€œBlackBerryâ€ With Windows Mobile OS From HTC â€º <b>Gadget</b> <b>&#8230;</b></a></li>
<li><a href="http://www.gadget.pdamu.com/2009/04/05/download-blackberry-connect-application-for-htc-available-now/">Â» Download BlackBerry Connect Application For HTC Available Now <b>&#8230;</b></a></li>
<li><a href="http://www.lyricdirectory.net">Free Lyrics</a>
</li>
</ul>
<h3>Related Posts</h3>
<ul class="related_post">
<li><a href="http://i-mediaworks.net/2009/03/16/new-macbook-iphone-and-imac-photos/" title="New MacBook, Iphone and IMac photos">New MacBook, Iphone and IMac photos</a></li>
<li><a href="http://i-mediaworks.net/2009/03/08/technology-savvy-geisha/" title="Technology-savvy Geisha">Technology-savvy Geisha</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://i-mediaworks.net/2009/04/06/do-we-have-enough/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Mac geek photo</title>
		<link>http://i-mediaworks.net/2009/04/06/36591/</link>
		<comments>http://i-mediaworks.net/2009/04/06/36591/#comments</comments>
		<pubDate>Mon, 06 Apr 2009 03:48:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[macbook]]></category>

		<guid isPermaLink="false">http://i-mediaworks.net/?p=35</guid>
		<description><![CDATA[
Related Posts

Fine MacBook Case
MacBook Pro leather case pictures
MacBook TopCase
Falmouth Desk
MacBook Pro

]]></description>
			<content:encoded><![CDATA[<p><img src="http://i-mediaworks.net/wp-content/cache/3416561427_39dee4b114.jpg" alt="365.91" title="Mac Geek Photo" /><br />
<h3>Related Posts</h3>
<ul class="related_post">
<li><a href="http://i-mediaworks.net/2009/03/16/fine-macbook-case/" title="Fine MacBook Case">Fine MacBook Case</a></li>
<li><a href="http://i-mediaworks.net/2009/03/16/macbook-pro-leather-case-pictures/" title="MacBook Pro leather case pictures">MacBook Pro leather case pictures</a></li>
<li><a href="http://i-mediaworks.net/2009/03/08/macbook-topcase/" title="MacBook TopCase">MacBook TopCase</a></li>
<li><a href="http://i-mediaworks.net/2009/03/08/falmouth-desk/" title="Falmouth Desk">Falmouth Desk</a></li>
<li><a href="http://i-mediaworks.net/2009/03/08/macbook-pro-2/" title="MacBook Pro">MacBook Pro</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://i-mediaworks.net/2009/04/06/36591/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
