<?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></title>
	<atom:link href="http://www.allyourdatabasearebelongto.us/blog/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.allyourdatabasearebelongto.us/blog</link>
	<description>organized, disorganized, and reorganized</description>
	<lastBuildDate>Thu, 02 Feb 2012 03:50:18 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Drupal &#8211; Clean URLs module activation issues with Bluehost</title>
		<link>http://www.allyourdatabasearebelongto.us/blog/?p=159</link>
		<comments>http://www.allyourdatabasearebelongto.us/blog/?p=159#comments</comments>
		<pubDate>Thu, 02 Feb 2012 03:44:46 +0000</pubDate>
		<dc:creator>udbroom</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[daily notes]]></category>
		<category><![CDATA[activate clean urls in Bluehost]]></category>
		<category><![CDATA[clean urls]]></category>
		<category><![CDATA[drupal]]></category>
		<category><![CDATA[drupal in bluehost]]></category>
		<category><![CDATA[module]]></category>

		<guid isPermaLink="false">http://www.allyourdatabasearebelongto.us/blog/?p=159</guid>
		<description><![CDATA[I installed Drupal in Bluehost and it seemed to work fine except one module called Clean URLs. Reading and researching many articles and one thing for sure why I was not able to activate the module is the permission setting on .htaccess where (directory) I installed Drupal.   I also found out that I had [...]]]></description>
			<content:encoded><![CDATA[<p>I installed Drupal in Bluehost and it seemed to work fine except one module called Clean URLs.</p>
<p>Reading and researching many articles and one thing for sure why I was not able to activate the module is the permission setting on .htaccess where (directory) I installed Drupal.   I also found out that I had to work one more extra step to solve the problem because of OS (MAC).   MAC naturally hides &#8220;.&#8221; files which is treated as a hidden file.</p>
<p>Once I compared drupal .htaccess file between my localhost and one on the bluehost, I realized what the problem was. BTW, you can easily edit the file through cPanel&gt;manage files&gt; directory where drupal is installed and fine .htaccess</p>
<p>If you want to compare .htaccess between your MAC localhost and bluehost, please follow the instruction below.  Otherwise skip down to code:</p>
<p><strong>for MAC users do this step first</strong><br />
I used terminal: Applications &gt; Utilities :<br />
and type:<br />
<span style="color: #c0c0c0;">defaults write com.apple.finder AppleShowAllFiles TRUE<br />
</span>at next prompt:<br />
<span style="color: #c0c0c0;">killall Finder </span></p>
<p><a href="http://www.mactricksandtips.com/2008/04/show-hidden-files.html" target="_blank">I found this info at Mac tricks and tips </a></p>
<p>I copied and paste my local .htaccess  and paste to Bluehost one which is below (had to refresh the page few times&#8230; just FYI):<br />
Hope this will work for you&#8230; and enjoy Clean URLs.</p>
<p>&#8212;&#8212;&#8212;&#8212;<br />
#</p>
<p># Apache/PHP/Drupal settings:<br />
#</p>
<p># Protect files and directories from prying eyes.</p>
<p>Order allow,deny</p>
<p># Don&#8217;t show directory listings for URLs which map to a directory.<br />
Options -Indexes</p>
<p># Follow symbolic links in this directory.<br />
Options +FollowSymLinks</p>
<p># Make Drupal handle any 404 errors.<br />
ErrorDocument 404 /index.php</p>
<p># Force simple error message for requests for non-existent favicon.ico.</p>
<p># There is no end quote below, for compatibility with Apache 1.3.<br />
ErrorDocument 404 &#8220;The requested file favicon.ico was not found.</p>
<p># Set the default handler.<br />
DirectoryIndex index.php index.html index.htm</p>
<p># Override PHP settings that cannot be changed at runtime. See<br />
# sites/default/default.settings.php and drupal_initialize_variables() in<br />
# includes/bootstrap.inc for settings that can be changed at runtime.</p>
<p># PHP 5, Apache 1 and 2.</p>
<p>php_flag magic_quotes_gpc off<br />
php_flag magic_quotes_sybase off<br />
php_flag register_globals off<br />
php_flag session.auto_start off<br />
php_value mbstring.http_input pass<br />
php_value mbstring.http_output pass<br />
php_flag mbstring.encoding_translation off</p>
<p># Requires mod_expires to be enabled.</p>
<p># Enable expirations.<br />
ExpiresActive On</p>
<p># Cache all files for 2 weeks after access (A).<br />
ExpiresDefault A1209600<br />
# Do not allow PHP scripts to be cached unless they explicitly send cache<br />
# headers themselves. Otherwise all scripts would have to overwrite the<br />
# headers set by mod_expires if they want another caching behavior. This may<br />
# fail if an error occurs early in the bootstrap process, and it may cause<br />
# problems if a non-Drupal PHP file is installed in a subdirectory.<br />
ExpiresActive Off<br />
# Various rewrite rules.</p>
<p>RewriteEngine on</p>
<p># Block access to &#8220;hidden&#8221; directories whose names begin with a period. This<br />
# includes directories used by version control systems such as Subversion or<br />
# Git to store control files. Files whose names begin with a period, as well<br />
# as the control files used by CVS, are protected by the FilesMatch directive<br />
# above.<br />
#<br />
# NOTE: This only works when mod_rewrite is loaded. Without mod_rewrite, it is<br />
# not possible to block access to entire directories from .htaccess, because<br />
# is not allowed here.<br />
#<br />
# If you do not have mod_rewrite installed, you should remove these<br />
# directories from your webroot or otherwise protect them from being<br />
# downloaded.<br />
RewriteRule &#8220;(^|/)\.&#8221; &#8211; [F]</p>
<p># If your site can be accessed both with and without the &#8216;www.&#8217; prefix, you<br />
# can use one of the following settings to redirect users to your preferred<br />
# URL, either WITH or WITHOUT the &#8216;www.&#8217; prefix. Choose ONLY one option:<br />
#<br />
# To redirect all users to access the site WITH the &#8216;www.&#8217; prefix,<br />
# (http://example.com/&#8230; will be redirected to http://www.example.com/&#8230;)<br />
# uncomment the following:<br />
# RewriteCond %{HTTP_HOST} !^www\. [NC]<br />
# RewriteRule ^ http://www.%{HTTP_HOST}%{REQUEST_URI} [L,R=301]<br />
#<br />
# To redirect all users to access the site WITHOUT the &#8216;www.&#8217; prefix,<br />
# (http://www.example.com/&#8230; will be redirected to http://example.com/&#8230;)<br />
# uncomment the following:<br />
# RewriteCond %{HTTP_HOST} ^www\.(.+)$ [NC]<br />
# RewriteRule ^ http://%1%{REQUEST_URI} [L,R=301]</p>
<p># Modify the RewriteBase if you are using Drupal in a subdirectory or in a<br />
# VirtualDocumentRoot and the rewrite rules are not working properly.<br />
# For example if your site is at http://example.com/drupal uncomment and<br />
# modify the following line:<br />
# RewriteBase /drupal<br />
#<br />
# If your site is running in a VirtualDocumentRoot at http://example.com/,<br />
# uncomment the following line:<br />
# RewriteBase /</p>
<p># Pass all requests not referring directly to files in the filesystem to<br />
# index.php. Clean URLs are handled in drupal_environment_initialize().<br />
RewriteCond %{REQUEST_FILENAME} !-f<br />
RewriteCond %{REQUEST_FILENAME} !-d<br />
RewriteCond %{REQUEST_URI} !=/favicon.ico<br />
RewriteRule ^ index.php [L]</p>
<p># Rules to correctly serve gzip compressed CSS and JS files.<br />
# Requires both mod_rewrite and mod_headers to be enabled.</p>
<p># Serve gzip compressed CSS files if they exist and the client accepts gzip.<br />
RewriteCond %{HTTP:Accept-encoding} gzip<br />
RewriteCond %{REQUEST_FILENAME}\.gz -s<br />
RewriteRule ^(.*)\.css $1\.css\.gz [QSA]</p>
<p># Serve gzip compressed JS files if they exist and the client accepts gzip.<br />
RewriteCond %{HTTP:Accept-encoding} gzip<br />
RewriteCond %{REQUEST_FILENAME}\.gz -s<br />
RewriteRule ^(.*)\.js $1\.js\.gz [QSA]</p>
<p># Serve correct content types, and prevent mod_deflate double gzip.<br />
RewriteRule \.css\.gz$ &#8211; [T=text/css,E=no-gzip:1]<br />
RewriteRule \.js\.gz$ &#8211; [T=text/javascript,E=no-gzip:1]<br />
# Serve correct encoding type.<br />
Header append Content-Encoding gzip<br />
# Force proxies to cache gzipped &amp; non-gzipped css/js files separately.<br />
Header append Vary Accept-Encoding</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.allyourdatabasearebelongto.us/blog/?feed=rss2&#038;p=159</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Video of the month&#8230;</title>
		<link>http://www.allyourdatabasearebelongto.us/blog/?p=137</link>
		<comments>http://www.allyourdatabasearebelongto.us/blog/?p=137#comments</comments>
		<pubDate>Tue, 17 May 2011 06:57:10 +0000</pubDate>
		<dc:creator>udbroom</dc:creator>
				<category><![CDATA[music]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[videos]]></category>

		<guid isPermaLink="false">http://www.allyourdatabasearebelongto.us/blog/?p=137</guid>
		<description><![CDATA[Dir. Spike Jonze and Ty Evans / music Unkle / 2009 The Lakai skateboarding team amaze as they navigate around an apocalyptic skate park. The Unkle track makes the experience completely amazing and surreal.]]></description>
			<content:encoded><![CDATA[<p><object width="640" height="390" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube-nocookie.com/v/GhAaAPxTO4M?fs=1&amp;hl=en_US" /><param name="allowfullscreen" value="true" /><embed width="640" height="390" type="application/x-shockwave-flash" src="http://www.youtube-nocookie.com/v/GhAaAPxTO4M?fs=1&amp;hl=en_US" allowFullScreen="true" allowscriptaccess="always" allowfullscreen="true" /></object></p>
<p>Dir. Spike Jonze and Ty Evans / music Unkle / 2009</p>
<p>The Lakai skateboarding team amaze as they navigate around an apocalyptic skate park. The Unkle track makes the experience completely amazing and surreal.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.allyourdatabasearebelongto.us/blog/?feed=rss2&#038;p=137</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Disable Aero Shake in Windows 7 without gpedit.msc</title>
		<link>http://www.allyourdatabasearebelongto.us/blog/?p=135</link>
		<comments>http://www.allyourdatabasearebelongto.us/blog/?p=135#comments</comments>
		<pubDate>Tue, 26 Apr 2011 09:46:11 +0000</pubDate>
		<dc:creator>udbroom</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.allyourdatabasearebelongto.us/blog/?p=135</guid>
		<description><![CDATA[There is an obnoxious feature called Aero Shake in Windows 7. I found out that it&#8217;s even more obnoxious that there isn&#8217;t an easy way to turn the feature off in Windows 7 home edition. First I have to excuse myself that I haven&#8217;t played with PC for a long time, so I needed a [...]]]></description>
			<content:encoded><![CDATA[<p>There is an obnoxious feature called Aero Shake in Windows 7. I found out that it&#8217;s even more obnoxious that there isn&#8217;t an easy way to turn the feature off in Windows 7 home edition.</p>
<p>First I have to excuse myself that I haven&#8217;t played with PC for a long time, so I needed a precise instruction to follow. When I search for “disable Aero Shake in Windows 7 home edition” most links asked me to find a file called gpedit.msc to open the Local Group Policy Editor, but the problem was that Vista and Windows 7 Home Edition don&#8217;t have the file to edit.</p>
<p>Link below is the one close to how I fixed the problem, but one problem with the instruction was I could not search Registry Editor (regedit) or HKEY_CURRENT_USER\Software\Policies\Microsoft\Windows.</p>
<p>http://www.howtogeek.com/howto/windows-7/disable-aero-shake-in-windows-7/</p>
<p>Here is how: Click “Start” menu and right click &#8220;My Computer&#8221; and choose &#8220;Property&#8221; &#8211;&gt;Policies → Microsoft → Windows. Now right click Windows folder and choose New → Key name it “Explorer&#8221;.<br />
Right-click on the empty space in the left pane and select New &gt; DWORD (32-bit) Value. (even if you have installed the 64bit version of Win7) Name the new valueNoWindowMinimizingShortcuts.</p>
<p>Double click on the newly created value and a new window will appear. In the textbox Value data enter the value 1:<br />
and relog</p>
]]></content:encoded>
			<wfw:commentRss>http://www.allyourdatabasearebelongto.us/blog/?feed=rss2&#038;p=135</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS &#8211; em vs. px vs. percent</title>
		<link>http://www.allyourdatabasearebelongto.us/blog/?p=122</link>
		<comments>http://www.allyourdatabasearebelongto.us/blog/?p=122#comments</comments>
		<pubDate>Wed, 20 Oct 2010 07:35:08 +0000</pubDate>
		<dc:creator>udbroom</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[daily notes]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[css units]]></category>
		<category><![CDATA[em]]></category>
		<category><![CDATA[px]]></category>

		<guid isPermaLink="false">http://www.allyourdatabasearebelongto.us/blog/?p=122</guid>
		<description><![CDATA[I found some examples for my students and often times, I found myself with confusions between em vs px vs %. So I googled it and found a very useful site. Title of the page is called: CSS Font-Size: em vs. px vs. pt vs. percent : http://kyleschaeffer.com/best-practices/css-font-size-em-vs-px-vs-pt-vs/ The site explains what each units means [...]]]></description>
			<content:encoded><![CDATA[<p>I found some examples for my students and often times, I found myself with confusions between em vs px vs %.<br />
So I googled it and found a very useful site.  Title of the page is called: CSS Font-Size: em vs. px vs. pt vs. percent<br />
: <a href="I found some examples for my students and often times, I found myself with confusions between em vs px vs %.  So I googled it and found a very useful site.  Title of the page is called: CSS Font-Size: em vs. px vs. pt vs. percent  : http://kyleschaeffer.com/best-practices/css-font-size-em-vs-px-vs-pt-vs/  The site explains what each units means and how it changes based on different setups for personal settings. At the end of the article his conclusion was that:  “In theory, the em unit is the new and upcoming standard for font sizes on the web, but in practice, the percent unit seems to provide a more consistent and accessible display for users. When client settings have changed, percent text scales at a reasonable rate, allowing designers to preserve readability, accessibility, and visual design.”  Just a little reminder that this article was released in Sep. 08.  After I read the article, I immediately wanted to change text size and see how the page would look like. However, I encounter a small problem.  I could not find the options in my browser.  I use chrome for the most part. So I clicked the Help and looked for font options.  But the result turned out to make me change my default font size of my computer.  Then I found this article: http://mezzoblue.com/archives/2008/10/07/zoom/  “Somehow over the last year or two we’ve landed in a situation where most browsers now default to full page zoom instead of traditional text-resizing. Opera has long used zoom instead of text scaling; as of IE7 Internet Explorer uses zoom to replace the older resizing method; Firefox 3 now defaults to zoom as well. Safari is really the only holdout at this point (and I suppose Chrome by extension, since they both run the same WebKit rendering engine) but, oh look, it’s coming soon to a future release. Now it’s true that Firefox and Internet Explorer still offer the ability to scale text as they always have, but a user has to look for it; if there’s anything we’ve learned from that latter browser it’s that users aren’t inclined to change default choices on their computers, so I think it’s safe to assume most users will employ the newer method, if at all. The implications on a designer are fairly dramatic; page zoom is an attempt to continue accurately rendering the page as it was designed, whereas text scaling simply reflows the text, often causing serious layout problems. With full page zoom, the responsibility for ensuring page integrity and legibility is moved out of the designer’s hands, and placed fully on the browser. With text resizing, the designer needs to be conscientious of the ways their layout will break at different text sizes, and compensate accordingly. So, personal preference aside, I wonder whether designing around scaling text is still a skill we need to hold on to, and for how long. I’d be interested in hearing about reasons for and against, as I’m sure there will be both.” " target="_blank">http://kyleschaeffer.com/best-practices/css-font-size-em-vs-px-vs-pt-vs/</a></p>
<p>The site explains what each units means and how it changes based on different setups for personal settings.<br />
At the end of the article his conclusion was that:</p>
<p>“In theory, the em unit is the new and upcoming standard for font sizes on the web, but in practice, the percent unit seems to provide a more consistent and accessible display for users. When client settings have changed, percent text scales at a reasonable rate, allowing designers to preserve readability, accessibility, and visual design.”</p>
<p>Just a little reminder that this article was released in Sep. 08.</p>
<p>After I read the article, I immediately wanted to adjust text size and see how the web page would look like. However, I encountered a small problem.  I could not find the option in my browser. (I use chrome)<br />
So I clicked &#8220;Help&#8221; in the menu bar, but the result turned out that if I wanna change font size of the bowser I need to make changes of my computer default font settings.</p>
<p>Then I found this article: <a href="http://mezzoblue.com/archives/2008/10/07/zoom/" target="_blank">http://mezzoblue.com/archives/2008/10/07/zoom/</a></p>
<p>“Somehow over the last year or two we’ve landed in a situation where most browsers now default to full page zoom instead of traditional text-resizing.<br />
Opera has long used zoom instead of text scaling; as of IE7 Internet Explorer uses zoom to replace the older resizing method; Firefox 3 now defaults to zoom as well. Safari is really the only holdout at this point (and I suppose Chrome by extension, since they both run the same WebKit rendering engine) but, oh look, it’s coming soon to a future release.<br />
Now it’s true that Firefox and Internet Explorer still offer the ability to scale text as they always have, but a user has to look for it; if there’s anything we’ve learned from that latter browser it’s that users aren’t inclined to change default choices on their computers, so I think it’s safe to assume most users will employ the newer method, if at all.<br />
The implications on a designer are fairly dramatic; page zoom is an attempt to continue accurately rendering the page as it was designed, whereas text scaling simply reflows the text, often causing serious layout problems. With full page zoom, the responsibility for ensuring page integrity and legibility is moved out of the designer’s hands, and placed fully on the browser. With text resizing, the designer needs to be conscientious of the ways their layout will break at different text sizes, and compensate accordingly.<br />
So, personal preference aside, I wonder whether designing around scaling text is still a skill we need to hold on to, and for how long. I’d be interested in hearing about reasons for and against, as I’m sure there will be both.”</p>
<p>It makes sense to zoom in and out to adjust one&#8217;s browser for desirable/viewable websites size for standardizing font units and more consistent layout of a page rather than changing font size.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.allyourdatabasearebelongto.us/blog/?feed=rss2&#038;p=122</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>need to think about how to create energy</title>
		<link>http://www.allyourdatabasearebelongto.us/blog/?p=118</link>
		<comments>http://www.allyourdatabasearebelongto.us/blog/?p=118#comments</comments>
		<pubDate>Tue, 10 Aug 2010 01:36:36 +0000</pubDate>
		<dc:creator>udbroom</dc:creator>
				<category><![CDATA[Art]]></category>
		<category><![CDATA[daily notes]]></category>

		<guid isPermaLink="false">http://www.allyourdatabasearebelongto.us/blog/?p=118</guid>
		<description><![CDATA[SHAWN FRAYNE: Shawn is the sole inventor or co-inventor on a number of US and international patent filings. He has his Bachelor of Science in Physics from the Massachusetts Institute of Technology. Shawn is the inventor of the core wind generator technology on which Humdinger is founded. Previous to his involvement with Humdinger, Shawn successfully [...]]]></description>
			<content:encoded><![CDATA[<p><strong>SHAWN FRAYNE: Shawn is the sole inventor or co-inventor on a number of US and international patent filings. He has his Bachelor of Science in Physics from the Massachusetts Institute of Technology.</strong></p>
<p><strong>Shawn is the inventor of the core wind generator technology on which Humdinger is founded. Previous to his involvement with Humdinger, Shawn successfully matured several technologies, in the fields of self-inflating packaging and water disinfection, from concepts into developed products. He established a strong intellectual property base surrounding those technologies and in early 2006 sold substantial rights to a multinational company.  Some of Shawn’s work has been profiled in Popular Mechanics, Discover, Forbes.com, and NPR.</strong></p>
<p>My thoughts: He came up with winddinger when he worked in Tahiti.  Tahiti regulates many import restrictions and he had to come up with small, cheap, and low maintenance to power up basic needs for the place.</p>
<p>He sees, and I truly believe, that the idea of inventing cheap &amp; open source idea to create energy/products will change  the perspective of future.</p>
<p>Efficiency!</p>
<p>wind vs water vs solar vs etc</p>
<p><a href="http://www.youtube.com/watch?v=mecU7S2xoJc" target="_blank">http://www.youtube.com/watch?v=mecU7S2xoJc</a></p>
<p><a title="wind emergy" href="http://www.humdingerwind.com/" target="_blank">http://www.humdingerwind.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.allyourdatabasearebelongto.us/blog/?feed=rss2&#038;p=118</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Elif Shafak: The politics of fiction</title>
		<link>http://www.allyourdatabasearebelongto.us/blog/?p=115</link>
		<comments>http://www.allyourdatabasearebelongto.us/blog/?p=115#comments</comments>
		<pubDate>Tue, 10 Aug 2010 01:17:15 +0000</pubDate>
		<dc:creator>udbroom</dc:creator>
				<category><![CDATA[daily notes]]></category>

		<guid isPermaLink="false">http://www.allyourdatabasearebelongto.us/blog/?p=115</guid>
		<description><![CDATA[I always need to think about how i can write about my artist statement from the fact i know. but Elif talks about how we learn to write about how we feel.]]></description>
			<content:encoded><![CDATA[<p>I always need to think about how i can write about my artist statement from the fact i know.  but Elif talks about how we learn to write about how we feel.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="446" height="326" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="wmode" value="transparent" /><param name="bgColor" value="#ffffff" /><param name="flashvars" value="vu=http://video.ted.com/talks/dynamic/ElifShafak_2010G-medium.flv&amp;su=http://images.ted.com/images/ted/tedindex/embed-posters/ElifShafak-2010G.embed_thumbnail.jpg&amp;vw=432&amp;vh=240&amp;ap=0&amp;ti=917&amp;introDuration=15330&amp;adDuration=4000&amp;postAdDuration=830&amp;adKeys=talk=elif_shafak_the_politics_of_fiction;year=2010;theme=the_creative_spark;theme=a_taste_of_tedglobal_2010;theme=master_storytellers;event=TEDGlobal+2010;&amp;preAdTag=tconf.ted/embed;tile=1;sz=512x288;" /><param name="src" value="http://video.ted.com/assets/player/swf/EmbedPlayer.swf" /><param name="bgcolor" value="#ffffff" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="446" height="326" src="http://video.ted.com/assets/player/swf/EmbedPlayer.swf" flashvars="vu=http://video.ted.com/talks/dynamic/ElifShafak_2010G-medium.flv&amp;su=http://images.ted.com/images/ted/tedindex/embed-posters/ElifShafak-2010G.embed_thumbnail.jpg&amp;vw=432&amp;vh=240&amp;ap=0&amp;ti=917&amp;introDuration=15330&amp;adDuration=4000&amp;postAdDuration=830&amp;adKeys=talk=elif_shafak_the_politics_of_fiction;year=2010;theme=the_creative_spark;theme=a_taste_of_tedglobal_2010;theme=master_storytellers;event=TEDGlobal+2010;&amp;preAdTag=tconf.ted/embed;tile=1;sz=512x288;" bgcolor="#ffffff" wmode="transparent" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.allyourdatabasearebelongto.us/blog/?feed=rss2&#038;p=115</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>70 Million by Hold Your Horses !</title>
		<link>http://www.allyourdatabasearebelongto.us/blog/?p=113</link>
		<comments>http://www.allyourdatabasearebelongto.us/blog/?p=113#comments</comments>
		<pubDate>Mon, 15 Mar 2010 20:24:18 +0000</pubDate>
		<dc:creator>udbroom</dc:creator>
				<category><![CDATA[funny]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[videos]]></category>

		<guid isPermaLink="false">http://www.allyourdatabasearebelongto.us/blog/?p=113</guid>
		<description><![CDATA[logre.tv myspace.com/holdyourhorsesparis itunes.apple.com/fr/album/hold-your-horses-ep/id350072944 70 Million by Hold Your Horses ! from L&#8217;Ogre on Vimeo.]]></description>
			<content:encoded><![CDATA[<p><a rel="nofollow" href="http://www.logre.tv/" target="_blank">logre.tv</a><br />
<a rel="nofollow" href="http://www.myspace.com/holdyourhorsesparis" target="_blank">myspace.com/holdyourhorsesparis</a><br />
<a rel="nofollow" href="http://itunes.apple.com/fr/album/hold-your-horses-ep/id350072944" target="_blank">itunes.apple.com/fr/album/hold-your-horses-ep/id350072944</a></p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="400" height="225" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://vimeo.com/moogaloop.swf?clip_id=9752986&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" /><embed type="application/x-shockwave-flash" width="400" height="225" src="http://vimeo.com/moogaloop.swf?clip_id=9752986&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p><a href="http://vimeo.com/9752986">70 Million by Hold Your Horses !</a> from <a href="http://vimeo.com/user2732566">L&#8217;Ogre</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.allyourdatabasearebelongto.us/blog/?feed=rss2&#038;p=113</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>True Meaning of Creativity</title>
		<link>http://www.allyourdatabasearebelongto.us/blog/?p=85</link>
		<comments>http://www.allyourdatabasearebelongto.us/blog/?p=85#comments</comments>
		<pubDate>Fri, 28 Aug 2009 04:09:58 +0000</pubDate>
		<dc:creator>udbroom</dc:creator>
				<category><![CDATA[Art]]></category>

		<guid isPermaLink="false">http://www.allyourdatabasearebelongto.us/blog/?p=85</guid>
		<description><![CDATA[&#8220;I would like to make some significant art.&#8221; &#8211; This is what my friend said.  He is getting tired of not getting noticed by the world. I was thinking what is significant art.  Who is giving the meaning of significance? Art = Creativity = have ur own system != algorithm = same structure = common [...]]]></description>
			<content:encoded><![CDATA[<p>&#8220;I would like to make some significant art.&#8221; &#8211; This is what my friend said.  He is getting tired of not getting noticed by the world.<br />
I was thinking what is significant art.  Who is giving the meaning of significance?</p>
<p>Art = Creativity = have ur own system != algorithm = same structure = common acknowledgment</p>
<p>Another quote from Chuck:<br />
&#8220;People just have no clue about their genuine nature. I have countless friends who describe themselves as &#8220;cynical,&#8221; and they&#8217;re all wrong.  True cynics would never classify themselves as such, because it would mean that they know their view of the world is unjustly negative; despite their best efforts at being grumpy, a self-described cynic is secretly optimistic about normal human nature.  Individuals who are truly cynical will always insist they&#8217;re pragmatic. The same goes for anyone who claims to be &#8220;creative.&#8221;  If you define your personality as creative, it only means you understand what is <em>perceived</em> to be creative by the world at large, so you&#8217;re really just following a rote creative template.  That&#8217;s the <em>opposite</em> of creativity. Everybody is wrong about everything, just about all the time.&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.allyourdatabasearebelongto.us/blog/?feed=rss2&#038;p=85</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Do you want to date my avatar?</title>
		<link>http://www.allyourdatabasearebelongto.us/blog/?p=83</link>
		<comments>http://www.allyourdatabasearebelongto.us/blog/?p=83#comments</comments>
		<pubDate>Sat, 22 Aug 2009 01:35:26 +0000</pubDate>
		<dc:creator>udbroom</dc:creator>
				<category><![CDATA[games]]></category>
		<category><![CDATA[videos]]></category>
		<category><![CDATA[avatar]]></category>
		<category><![CDATA[game music]]></category>
		<category><![CDATA[the guild]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[wow]]></category>

		<guid isPermaLink="false">http://www.allyourdatabasearebelongto.us/blog/?p=83</guid>
		<description><![CDATA[It was 5 month playing into World of Warcraft I saw the very first episode of The Guid. It was refreshingly interesting and funny. This show was distributed through online like any other low budget and having fun projects. One good example of successful case of project is Four Eyed Monsters. The show let you [...]]]></description>
			<content:encoded><![CDATA[<p>It was 5 month playing into World of Warcraft I saw the very first episode of The Guid. It was refreshingly interesting and funny.</p>
<p>This show was distributed through online like any other low budget and having fun projects. One good example of successful case of project is Four Eyed Monsters.</p>
<p>The show let you to believe that they used digital video and computer cam to capture <a title="Felicia Day" href="http://en.wikipedia.org/wiki/Felicia_Day">Felicia Day</a>&#8216;s (who stars as Codex) simple MMORPG gaming diaries. It adds more flavor to its subject matter.</p>
<p>The show is a good example of encouraging creative people who have some good ideas to make art/video/what they are interested in utilizing social medium that is easily available to us: like youtube, myspace, vimeo, blog, and so on.</p>
<p>Now the show have noticed by MMORPG players and it is going for 3rd season.</p>
<p>The promo music video for the next season is a brilliant idea, lyric is even more hilarious, but I can see this video was not made with pocket money. I was hoping that they will keep the low budget style of their show going no matter what.</p>
<p>There are a huge fan of &#8220;Tron&#8221;.  From my understanding is that movie makers and fans were hoping to recreate the same look and feel of the original Tron to the new Tron movie.  There were enough movies out there where heavily invest on CG to disappoint the original movie fans.</p>
<p>This continuity of certain aspects of the movie adds more flavor.  I was hoping that The Guild&#8217;s promo video is more like mature-ish.  Not that they are, but just to keep the certain aspects of the show.</p>
<p>Oh well&#8230; But I like the video anyways.</p>
<p>I heard this was the top download in iTunes last week.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="560" height="340" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/urNyg1ftMIU&amp;hl=en&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="560" height="340" src="http://www.youtube.com/v/urNyg1ftMIU&amp;hl=en&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.allyourdatabasearebelongto.us/blog/?feed=rss2&#038;p=83</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>dark day</title>
		<link>http://www.allyourdatabasearebelongto.us/blog/?p=62</link>
		<comments>http://www.allyourdatabasearebelongto.us/blog/?p=62#comments</comments>
		<pubDate>Fri, 21 Aug 2009 23:50:36 +0000</pubDate>
		<dc:creator>udbroom</dc:creator>
				<category><![CDATA[daily notes]]></category>

		<guid isPermaLink="false">http://www.allyourdatabasearebelongto.us/blog/?p=62</guid>
		<description><![CDATA[It&#8217;s 12:30 am, and I am in San Francisco. Just picked up chicken fried rice for $6.50,  from a Chinese restaurant called Go Go Cafe &#38; Restaurant. (God bless hard working Chinese people) I ate in my car which I parked right in front of a corner market street between 20th and Irvin. I am [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s 12:30 am, and I am in San Francisco.<br />
Just picked up chicken fried rice for $6.50,  from a Chinese restaurant called Go Go Cafe &amp; Restaurant. (God bless hard working Chinese people) I ate in my car which I parked right in front of a corner market street between 20th and Irvin. I am sharing the fried rice with my friend.<br />
It was extra ordinarily tasty today!<br />
(I don&#8217;t usually order fried rice cause i don&#8217;t want to pay too much for something that is too easy to make it myself.)<br />
He felt thirsty, so he bought a Raspberry Apple flavor Vitamin water, $1.75.<br />
Makes me feel happier.  Not happy, but happier than how I felt all day.  He seemed to be happy, too.</p>
<p>Well spent on some gas and money to change my mood of the day.</p>
<p>Thinking about what Chuck Klosterman says:<br />
“I am not a benevolent God.<br />
I am watching myself writhe in a puddle of my own urine, and I offer no response. I have not sleep or eaten for days.  My cries go unrecognized and my loneliness is ignored.  I am watching myself endure a torture worse than death, yet I decline every opportunity to end this self-imposed nightmare.  Darkness&#8230;imprisoning me&#8230;all that i see, absolute horror. I cannot live, i cannot die, trapped in myself: my body is my holding cell.<br />
I am the master, and I am the puppet.  And I am not the type of person who still plays video games.”<br />
I bet this kind of thoughts will lead people to commit suicide. And I often do!</p>
<p>There are days you feel empty. and your stomach is empty as well, but you don&#8217;t bother thinking about it.<br />
All day I feel alone and could not stand myself being alone.<br />
Trying to occupy my mind with fixing my blog and some programming, but I still got distracted by myself being alone.</p>
<p>I ran and listened to music&#8230;  didn&#8217;t help! That was 10pm.<br />
Roommates were smoking cigarette and pot. It bothered me.</p>
<p>Had to get out.  Maybe from my house or my mental exhaustion.  so I decided to drive to San Francisco because my friend needed a ride from SF to SJ.</p>
<p>I had a good solid 45min to think about myself and noticing that I was feeling better. Knowing the fact that I was heading toward a place.<br />
Yes, I got a destination!<br />
It&#8217;s a short term and <strong>tangible </strong>goal.  That&#8217;s what I needed.</p>
<p>Playing WOW is the same idea.  There are lots of short term goals.  And ended up my toons are at the place where they need to be.  Either I can beat the hell out of opposite faction to taste the victory or get lots of honor points. And I am the type of person who still plays video games.</p>
<p>It&#8217;s hard to tell whether food in my stomach or having destination made me feel happier, but for sure I loved the feeling of being companied and having someone to tell/share what I went through all day.  That made me feel better.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.allyourdatabasearebelongto.us/blog/?feed=rss2&#038;p=62</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

