<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:blogger='http://schemas.google.com/blogger/2008' xmlns:georss='http://www.georss.org/georss' xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-2777498175171136686</id><updated>2024-11-05T18:43:07.461-08:00</updated><category term="Geek Stuff"/><category term="Videojuegos"/><category term="Aleatorio"/><category term="Anime"/><category term="Futbol"/><category term="video game"/><category term="BlazBlue: Calamity Trigger"/><category term="Clannad"/><category term="Fighting game"/><category term="Manga"/><category term="Microsoft"/><category term="Nintendo"/><category term="RSS"/><category term="Sony"/><category term="Xbox 360"/><category term="googlereader"/><category term="twitter"/><category term="videogames"/><title type='text'>Iztari</title><subtitle type='html'>Anime, Ubuntu, Videogames, Gagets, etc.</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://iztari.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2777498175171136686/posts/default?alt=atom&amp;redirect=false'/><link rel='alternate' type='text/html' href='http://iztari.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><link rel='next' type='application/atom+xml' href='http://www.blogger.com/feeds/2777498175171136686/posts/default?alt=atom&amp;start-index=26&amp;max-results=25&amp;redirect=false'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/04882490885748178162</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>61</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-2777498175171136686.post-3172340446180368118</id><published>2010-11-25T18:13:00.000-08:00</published><updated>2010-11-25T18:16:53.101-08:00</updated><title type='text'>Videogames Part 4: The First Game</title><content type='html'>This final part will be a quick tutorial on a basic program in XNA. The program will have an image bouncing of the edges of the window.&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgH_kPktSAw-FVtRuDL8jcbCcDbEh6bs818xKkU9odZfOD9LyhrQcd-PRsToNa5y1qggQYTxc5ndlNK5hWNpebNeZZwD-hUksmBTuKxQCazT7RVih8ad3e00eYn7Q9i6tIlrERCeBTvvGE/s1600/imagebounce.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;253&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgH_kPktSAw-FVtRuDL8jcbCcDbEh6bs818xKkU9odZfOD9LyhrQcd-PRsToNa5y1qggQYTxc5ndlNK5hWNpebNeZZwD-hUksmBTuKxQCazT7RVih8ad3e00eYn7Q9i6tIlrERCeBTvvGE/s400/imagebounce.png&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
To start you&#39;ll need to create a new XNA windows project, should with Xbox, or WP7 but I&#39;m focusing on the windows one right now. Once the project is created in the content section in the solution explorer right-click and add an existing item. Browse to any image (jpg, png or bmp preferably) and load it. This will be the image that will bounce in the program.&lt;br /&gt;
We add some variable:&lt;br /&gt;
&lt;br /&gt;
&lt;blockquote&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Texture2D theImage; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // our image (*.jpg, *.png *.bmp)&lt;br /&gt;
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Vector2 posImage = Vector2.Zero; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;// initial position of the image&lt;br /&gt;
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Vector2 velImage = new Vector2(150.0f, 150.0f); // velocity vector&lt;br /&gt;
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;int MaxX, MinX, MaxY, MinY; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; //limits&lt;/blockquote&gt;Then in load content we need to load our image:&lt;br /&gt;
&lt;br /&gt;
&lt;blockquote&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;theSprites = new SpriteBatch(GraphicsDevice);&lt;br /&gt;
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;// load the images&lt;br /&gt;
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;theImage = Content.Load&lt;texture2d&gt;(&quot;imageName&quot;);//note: no extension in the image name&lt;br /&gt;
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;MaxX = device.Viewport.Width - theImage.Width;//calculate the horizontal limit&lt;br /&gt;
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;MinX = 0;&lt;br /&gt;
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;MaxY = device.Viewport.Height - theImage.Height;//calculate the vertical limit&lt;br /&gt;
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;MinY = 0;&lt;/texture2d&gt;&lt;/blockquote&gt;Now for the update, where we update our variables:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;blockquote&gt;GamePadState theXbox = GamePad.GetState(PlayerIndex.One);&lt;br /&gt;
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;KeyboardState theKeyboard = Keyboard.GetState();&lt;br /&gt;
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;//a way for the user to exit the program with the keyboard or xbox controller.&lt;br /&gt;
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;if (theXbox.Buttons.Back == ButtonState.Pressed || theKeyboard.IsKeyDown(Keys.Escape))&lt;br /&gt;
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;this.Exit();&lt;br /&gt;
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;// modify the image position with our velocity vector and the time.&lt;br /&gt;
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;posImage += velImage * (float)gameTime.ElapsedGameTime.TotalSeconds;&lt;br /&gt;
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;//chech for horizontal bounce&lt;br /&gt;
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;if (posImage.X &amp;gt; MaxX)&lt;br /&gt;
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;{&lt;br /&gt;
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;velImage.X *= -1;&lt;br /&gt;
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;posImage.X = MaxX;&lt;br /&gt;
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}&lt;br /&gt;
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;else if (posImage.X &amp;lt; MinX)&lt;br /&gt;
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;{&lt;br /&gt;
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;velImage.X *= -1;&lt;br /&gt;
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;posImage.X = MinX;&lt;br /&gt;
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}&lt;br /&gt;
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;// check for vertical bounce&lt;br /&gt;
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;if (posImage.Y &amp;gt; MaxY)&lt;br /&gt;
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;{&lt;br /&gt;
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;velImage.Y *= -1;&lt;br /&gt;
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;posImage.Y = MaxY;&lt;br /&gt;
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}&lt;br /&gt;
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;else if (posImage.Y &amp;lt; MinY)&lt;br /&gt;
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;{&lt;br /&gt;
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;velImage.Y *= -1;&lt;br /&gt;
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;posImage.Y = MinY;&lt;br /&gt;
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}&lt;br /&gt;
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;base.Update(gameTime);&lt;/blockquote&gt;&amp;nbsp;Finally in the draw, we tell the program what to draw in the screen:&lt;br /&gt;
&lt;br /&gt;
&lt;blockquote&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;GraphicsDevice.Clear(Color.MidnightBlue);&lt;br /&gt;
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;// draw the image&lt;br /&gt;
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;theSprites.Begin();&lt;br /&gt;
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;theSprites.Draw(theImage, posImage, Color.White); //here white acts like transparent&lt;br /&gt;
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;theSprites.End();&lt;br /&gt;
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;base.Draw(gameTime);&lt;/blockquote&gt;You can download the full solution &lt;a href=&quot;https://docs.google.com/leaf?id=0B09USP8Mug6TM2I2ODYzZDgtMTIyZi00ZDZiLTkzNWMtNjhmZWIyYWZhMGJj&amp;amp;hl=en&amp;amp;authkey=CO7YgPQG&quot;&gt;here&lt;/a&gt;. It was made in VS2010 so you&#39;ll need VS2010 to open it. Also check a friend&#39;s blog for another XNA tutorial &lt;a href=&quot;http://www.blogdelbrambs.blogspot.com/&quot;&gt;here&lt;/a&gt;. Note his blog is in spanish, but the code is universal :D</content><link rel='replies' type='application/atom+xml' href='http://iztari.blogspot.com/feeds/3172340446180368118/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://iztari.blogspot.com/2010/11/videogames-part-4-first-game.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2777498175171136686/posts/default/3172340446180368118'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2777498175171136686/posts/default/3172340446180368118'/><link rel='alternate' type='text/html' href='http://iztari.blogspot.com/2010/11/videogames-part-4-first-game.html' title='Videogames Part 4: The First Game'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/04882490885748178162</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgH_kPktSAw-FVtRuDL8jcbCcDbEh6bs818xKkU9odZfOD9LyhrQcd-PRsToNa5y1qggQYTxc5ndlNK5hWNpebNeZZwD-hUksmBTuKxQCazT7RVih8ad3e00eYn7Q9i6tIlrERCeBTvvGE/s72-c/imagebounce.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2777498175171136686.post-6706026777002197921</id><published>2010-11-25T14:22:00.000-08:00</published><updated>2010-11-25T14:22:12.975-08:00</updated><title type='text'>Videogames Part 3: Starting with XNA</title><content type='html'>The first thing you&#39;ll need to get started with XNA will be to get the tools for the job. You can get them &lt;a href=&quot;http://create.msdn.com/en-us/home/getting_started&quot;&gt;here&lt;/a&gt; at App Hub or you can also get the at &lt;a href=&quot;https://www.dreamspark.com/&quot;&gt;Dreamspark&lt;/a&gt; if you are a student. At Dreamspark is important to note you can get a free year of&amp;nbsp;XNA Creators Club. With it you can test/run your games on your Xbox directly. Once you have all the tools for the job you&#39;ll need to learn the basics for XNA.&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;http://ecx.images-amazon.com/images/I/51gKJjpAx8L._SS500_.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;200&quot; src=&quot;http://ecx.images-amazon.com/images/I/51gKJjpAx8L._SS500_.jpg&quot; width=&quot;200&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
To get started I recommend getting a book on the subject. The book I recommend is&amp;nbsp;&lt;i&gt;&lt;a href=&quot;http://www.amazon.com/Learning-XNA-4-0-Aaron-Reed/dp/1449394620/ref=sr_1_1?s=books&amp;amp;ie=UTF8&amp;amp;qid=1290722164&amp;amp;sr=1-1&quot;&gt;Learning XNA 4.0&lt;/a&gt; &lt;/i&gt;which includes many lessons on the latest version of XNA. But don&#39;t just use a book when you have the internet as a resource. The first page I recommend to anybody interested in XNA has to be Microsoft&#39;s &lt;a href=&quot;http://create.msdn.com/&quot;&gt;App Hub&lt;/a&gt;. There you will find tons of tutorials for the PC, Xbox, and Windows Phone 7. From basic 2D stuff to more complex things in 3D. The other site I recommend is &lt;a href=&quot;http://www.gamedev.net/&quot;&gt;GameDev&lt;/a&gt;. This site is for anybody interested in game development and is great to interact with other game developers. The purpose of GameDev according to their about, &quot;GameDev.net was created with the sole purpose of providing a public site where game developers could freely exchange information.&quot; Here you&#39;ll be able to ask fellow game developers for tips and tricks. You can also check the many articles the staff puts out for gamers to learn more about game development. Do note this site is for game development in general and not just XNA.</content><link rel='replies' type='application/atom+xml' href='http://iztari.blogspot.com/feeds/6706026777002197921/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://iztari.blogspot.com/2010/11/videogames-part-3-starting-with-xna.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2777498175171136686/posts/default/6706026777002197921'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2777498175171136686/posts/default/6706026777002197921'/><link rel='alternate' type='text/html' href='http://iztari.blogspot.com/2010/11/videogames-part-3-starting-with-xna.html' title='Videogames Part 3: Starting with XNA'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/04882490885748178162</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2777498175171136686.post-7626211730343554736</id><published>2010-11-24T11:48:00.000-08:00</published><updated>2010-11-24T11:48:39.138-08:00</updated><title type='text'>Videogames Part 2: The Technologies</title><content type='html'>&lt;table align=&quot;center&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; class=&quot;tr-caption-container&quot; style=&quot;margin-left: auto; margin-right: auto; text-align: center;&quot;&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;td style=&quot;text-align: center;&quot;&gt;&lt;a href=&quot;http://research.microsoft.com/en-us/events/csew/xna_logo.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: auto; margin-right: auto;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;152&quot; src=&quot;http://research.microsoft.com/en-us/events/csew/xna_logo.png&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;tr-caption&quot; style=&quot;text-align: center;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;-webkit-border-horizontal-spacing: 5px; -webkit-border-vertical-spacing: 5px; font-size: 11px; line-height: 16px;&quot;&gt;X= -..- &amp;nbsp;N= -. &amp;nbsp;A= &lt;span style=&quot;font-family: Ubuntu, UbuntuBeta !important;&quot;&gt;.-&lt;/span&gt;&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;When it comes to videogames there are many tools in which one can develop a game. You can use tool(s) like DirectX, OpenGL, Unreal Engine, Source Engine, Havok Engine, Flash, and XNA to name a few. But the one that really excited me was XNA due to the fact that you can publish your game to Xbox Live for other people to play. It&#39;s also pretty easy to use (compared to the others) when your just beginning to learn.&lt;br /&gt;
&lt;br /&gt;
The XNA framework makes it simple to make games for Xbox, PC, and Windows Phone 7 without the hassles of worrying for compatibility issues. This is because XNA wraps all the low-level details, such as DirectX settings, so the user doesn&#39;t have to worry. The only real differences when developing for different platforms are the controls. Even these for the PC and Xbox can be the same as they a both compatible with the Xbox controller. Another good reason XNA is great to start developing games is that it has many predefine methods which simplify tedious tasks. This is why I would recommend any one interested in games to start with XNA which is great way to understand how games differ from any other application.</content><link rel='replies' type='application/atom+xml' href='http://iztari.blogspot.com/feeds/7626211730343554736/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://iztari.blogspot.com/2010/11/videogames-part-2-technologies.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2777498175171136686/posts/default/7626211730343554736'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2777498175171136686/posts/default/7626211730343554736'/><link rel='alternate' type='text/html' href='http://iztari.blogspot.com/2010/11/videogames-part-2-technologies.html' title='Videogames Part 2: The Technologies'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/04882490885748178162</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2777498175171136686.post-1907038282400165730</id><published>2010-11-24T00:48:00.000-08:00</published><updated>2010-11-24T10:49:29.953-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="video game"/><category scheme="http://www.blogger.com/atom/ns#" term="videogames"/><category scheme="http://www.blogger.com/atom/ns#" term="Videojuegos"/><title type='text'>Videogames Part 1: My Passion explained</title><content type='html'>&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;http://www.supermariogames.biz/pics/evolution-of-mario-10172008.gif&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;http://www.supermariogames.biz/pics/evolution-of-mario-10172008.gif&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
Videogames: One of the youngest, if not the youngest, forms of entertainment. They began to gain popularity during the 1980&#39;s. But they got my interest during the 1990&#39;s with &lt;a href=&quot;http://en.wikipedia.org/wiki/Nintendo_Entertainment_System&quot;&gt;NES&lt;/a&gt;, &lt;a href=&quot;http://en.wikipedia.org/wiki/Super_Nintendo_Entertainment_System&quot;&gt;SNES&lt;/a&gt; &amp;amp; &lt;a href=&quot;http://en.wikipedia.org/wiki/N64&quot;&gt;N64&lt;/a&gt;. I can&#39;t remember the first time I played a game, but I can&#39;t remember a time without them in my life. By the time the N64 came out&amp;nbsp;(1997)&amp;nbsp;I had already decided that I wanted to dedicate myself to creating games. Of course by then I didn&#39;t know any of the specifics about&amp;nbsp;creating&amp;nbsp;games, but I knew I would like it. Finally years later (high school) I learned the specifics and loved what they were. So with videogames being my main goal I set out to study Computer Science. So with videogames being this influential in my life, I have a great passion to make my own.</content><link rel='replies' type='application/atom+xml' href='http://iztari.blogspot.com/feeds/1907038282400165730/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://iztari.blogspot.com/2010/11/videogames-part-1-my-passion-explained.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2777498175171136686/posts/default/1907038282400165730'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2777498175171136686/posts/default/1907038282400165730'/><link rel='alternate' type='text/html' href='http://iztari.blogspot.com/2010/11/videogames-part-1-my-passion-explained.html' title='Videogames Part 1: My Passion explained'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/04882490885748178162</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2777498175171136686.post-4805464568449410618</id><published>2010-11-22T13:35:00.000-08:00</published><updated>2010-11-24T11:19:26.508-08:00</updated><title type='text'>Comic-Con 2010: The Return of the Con (unfinished &amp; will be left  unfinish)</title><content type='html'>Unfinished post about comic con 2010:&lt;br /&gt;
&lt;br /&gt;
This past week was my return to the San Diego Comic-Con after missing lasts year&#39;s due to tickets selling out. I was accompanied by my good friend Brawlio. This turn out to be one of the most memorable Comic-con&#39;s I&#39;ve been to. Tons of things happened, everyday was mark with at least one thing worth talking about. So let us begin a recap of how this year&#39;s Comic-con was like.&lt;br /&gt;
&lt;div&gt;&lt;br /&gt;
&lt;div&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: medium;&quot;&gt;Wednesday (aka Previews Night):&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: small;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: small;&quot;&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;We arrived at the convention center about 90 minutes before the exhibit hall opened, so we had enough time to pick up our badges and get something to eat. Once we returned from eating the exhibit hall was open and Comic-Con had begun! The first thing we did was walk around the exhibit hall and see who had come to the convention. I have to say I was happy when I saw Nintendo was back this year, even though it was a small booth. &lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: small;&quot;&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;After we saw most of the exhibit hall we headed towards the Xbox booth and the Capcom booth. But we stopped at Funimation where I decided to make my first purchase a Brown Bag, fill with three random DVDs which turn out to be Beck, Speed Grapher, and Peach Girl, all complete series. From there we went to see what anime related figures were being sold. Here I was tempted to buy a figurine but I decided to think about it a little longer. Finally we made it to the Capcom booth, which is close to the Xbox booth. So here we decided to split up, Brawlio went to play Marvel vs Capcom 3 and I went to the Xbox booth to play some Halo Reach. &lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: small;&quot;&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;While I was in line to play Halo Reach, I had the opportunity to talk to one of the producers of Fable 3. He explained the main story of the game, some of the thing that have changed from Fable 2 and the brand new start menu. I have to admit the new menu is pretty cool, no more scrolling through a huge list of items. After this little preview to Fable 3 I got to play some firefight in Halo Reach.  It was pretty awesome as usual, and I ended in the first position. &lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: small;&quot;&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;Afterwards we took a picture on &lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: sans-serif; line-height: 19px;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: small;&quot;&gt;Chuck Greene&#39;s motorcycle with his jacket and something to kill zombies with.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhNGVOUov1Rk5Vm3Ev9I99ZiOXt07JFurPw24529bTeMLQZK3Y2sG0RA2ROlq0EMoqsq9xlVvm2UXRo0sgvP_zBe_9ATT7aF0UzX4w1ec6ZkYjtfKczJDLBSJBOafSVKvOc_aj1m7x25Ao/s1600/moto_0148_MOD.jpg&quot; onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; id=&quot;BLOGGER_PHOTO_ID_5499404379326862434&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhNGVOUov1Rk5Vm3Ev9I99ZiOXt07JFurPw24529bTeMLQZK3Y2sG0RA2ROlq0EMoqsq9xlVvm2UXRo0sgvP_zBe_9ATT7aF0UzX4w1ec6ZkYjtfKczJDLBSJBOafSVKvOc_aj1m7x25Ao/s400/moto_0148_MOD.jpg&quot; style=&quot;cursor: hand; cursor: pointer; display: block; height: 400px; margin: 0px auto 10px; text-align: center; width: 400px;&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: small;&quot;&gt;Finally the exhibit hall closed for the night.&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: small;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: small;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: medium;&quot;&gt;Thursday (aka day 1)&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: medium;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: medium;&quot;&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: small;&quot;&gt;On this day we arrived around 10:30 at the convention center. As any other day, the first thing we did was to walk around the exhibit hall. During this walk this happened:&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: medium;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: small;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: medium;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiK3x4sRtqGHgFYadWW1D5y7xCCdVO-v6vd1P-kDnL3UXT8eZpjwXHAxSzVvCOE7ZppZhxIkAC3VUbGEW2Jna_6JHWT8MUXrJlzoE8qvrKfMsduPOIigbcg4YIjen8x9PatMA9PrayUkdM/s1600/P1010007.JPG&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;320&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiK3x4sRtqGHgFYadWW1D5y7xCCdVO-v6vd1P-kDnL3UXT8eZpjwXHAxSzVvCOE7ZppZhxIkAC3VUbGEW2Jna_6JHWT8MUXrJlzoE8qvrKfMsduPOIigbcg4YIjen8x9PatMA9PrayUkdM/s320/P1010007.JPG&quot; width=&quot;240&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: medium;&quot;&gt;&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: small;&quot;&gt;After a while Brawlio decided to go to the Dead Rising 2 panel, so we decided to meet afterwards at the Viz Media booth. I decided to go to the Xbox booth and &#39;waste&#39; my time there. I got to play Comic-Jumper and got a sign poster from the creators (same as Splosion Man). Afterwards I decided to start making the line for the Viz Bags which this year were black. When I got to the booth there was already a line but for something else, so they didn&#39;t let me start a new line for the bag yet. So I decided to start the line for the line for the bag :D Finally the real line was created and soon after it started moving! During this process of picking up the bag I met with Brawlio, and once we had our bags we decided to try and get another one by going to the end of the line. The plan was a success and we had two bags each.&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: small;&quot;&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;Now it was around 3 o&#39;clock and we were getting hungry and I wanted get into the Force Unleashed 2 panel which was going to start in about and hour and a half. So with these in mind we decided to eat something, and we headed out towards Horton Plaza. There we met with our old friend teriyaki. I think he was happy to see us, though my stomach was happier :D &lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: small;&quot;&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;Once our teriyaki plates were empty and our stomachs full we went back to the con, where we headed towards the SW:TFU2 panel. We were able to get in to the panel without any problems. During the panel they showed the trailer, which was already out, and they showed us a demo of the game. The demo was pretty long and fun, afterwards they showed another video were we got to see that Boba Fett was making an appearance in the game! The panel ended with a Q&amp;amp;A as usual. I do have to say I&#39;m really interested in this game, looks like a lot of fun just like the first one. As soon as this ended we decided to stay in our seats and wait for the start of the next panel.&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: small;&quot;&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;For me the next panel turn out to be pretty boring, I almost fell asleep! But for Brawler it was a lot fun. The panel was Capcom&#39;s. The problem with the panel was that there was too much talking and few videos. They didn&#39;t show much of Marvel vs Capcom as that had it&#39;s own panel the next day. Another problem the panel had was that most of the presenters were japanese and didn&#39;t speak english so they had translators and this usually slows things down. Once this ended we decided to once again stay for the next panel.&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;font-size: small; white-space: pre;&quot;&gt; &lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: small;&quot;&gt;Of course the next panel was the main reason I arrived two panels ago to this room. Halo: Reach. That was the panel I&#39;ve been waiting all day for, and it didn&#39;t disappoint. They started with Firefight, and the first thing they revealed was versus mode in firefight. And this actually looks like fun, though after seeing beast mode (GoW3) I wished we could play as something apart from elites. But never mind that, it still looks like fun. Now afterward they showed what most of us wanted to see, the new Blood Gulch now known as Hemorrhage.  But just as interesting was the gametype in which they were showing us the map: Forge. So they began showing us how forgeable the map actually was, by deleting a whole base and some rocks. Then they decided to get in a falcon and show us beyond the canyon. It was huge we could see down below another spartan driving around in a warthog and he looked tiny. Forge World, as they named it, is going to be a great addition to an already great game. Afterwards they showed some the new items available in forge. They also showed the new options like physics (yay for phased &lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: small;&quot;&gt;physics) and angle snaps.  These will make forge a great sandbox to play with and build cool new maps. Seriously cannot wait to see what other people will build with these if I am already impressed with some of the stuff they build with the now crappy options in Halo 3.  After showing of Forge World they announced the new Xbox 360 Halo reach SKU. It looks pretty nice but my Xbox still works perfectly and hoping for it to never go to the RRoD side, so I&#39;m not interested in this new SKU.  Finally they finished with some questions from the audience, some were interesting but the only one worth mentioning is that now you&#39;ll be able to have 1000 items per type of item(ie 1000 maps, 1000 game variants, and 1000 clips). This is great a new as it was tedious in Halo 3 having to use a silver live account to save items that didn&#39;t fit in my gold account. With these the conference ended and we went home stopping at a store to buy ingredients to prepare ourselves some sandwiches so we won&#39;t need to eat outside of the con.&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: small;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: small;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://iztari.blogspot.com/feeds/4805464568449410618/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://iztari.blogspot.com/2010/11/comic-con-2010-return-of-con-unfinished.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2777498175171136686/posts/default/4805464568449410618'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2777498175171136686/posts/default/4805464568449410618'/><link rel='alternate' type='text/html' href='http://iztari.blogspot.com/2010/11/comic-con-2010-return-of-con-unfinished.html' title='Comic-Con 2010: The Return of the Con (unfinished &amp; will be left  unfinish)'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/04882490885748178162</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhNGVOUov1Rk5Vm3Ev9I99ZiOXt07JFurPw24529bTeMLQZK3Y2sG0RA2ROlq0EMoqsq9xlVvm2UXRo0sgvP_zBe_9ATT7aF0UzX4w1ec6ZkYjtfKczJDLBSJBOafSVKvOc_aj1m7x25Ao/s72-c/moto_0148_MOD.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2777498175171136686.post-4343735318212679098</id><published>2010-08-27T10:28:00.000-07:00</published><updated>2010-08-27T10:46:08.049-07:00</updated><title type='text'>I just remember that I still have a Blog!</title><content type='html'>To think my last post was about a year ago :O This is what happens when you work and study without giving up anytime for videogames (good priorities). It was natural that somethings got canned from my mind completely like my blog. Can&#39;t say the next will not be in a year as I&#39;m still in school and working, but now I&#39;ll try and remember that I have a blog. And time is not an excuse for not doing anything; time is only a way of creating boundaries to convince yourself not to do things you really want to do.  So yeah time as an excuse is only an illusion.</content><link rel='replies' type='application/atom+xml' href='http://iztari.blogspot.com/feeds/4343735318212679098/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://iztari.blogspot.com/2010/08/i-just-remember-that-i-still-have-blog.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2777498175171136686/posts/default/4343735318212679098'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2777498175171136686/posts/default/4343735318212679098'/><link rel='alternate' type='text/html' href='http://iztari.blogspot.com/2010/08/i-just-remember-that-i-still-have-blog.html' title='I just remember that I still have a Blog!'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/04882490885748178162</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2777498175171136686.post-41637306916989312</id><published>2009-08-19T11:51:00.000-07:00</published><updated>2010-08-27T12:17:43.301-07:00</updated><title type='text'>Poll</title><content type='html'>&lt;script src=&quot;http://twtpoll.com/badge/?twt=vm9lxp&amp;amp;b=1&quot; type=&quot;text/javascript&quot;&gt;
&lt;/script&gt;&lt;br /&gt;
Update:&lt;br /&gt;
PS3 Aquired about a year ago, and not disappointed for buying though I don&#39;t use it as much as my Xbox do to the game library and Xbox Live.</content><link rel='replies' type='application/atom+xml' href='http://iztari.blogspot.com/feeds/41637306916989312/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://iztari.blogspot.com/2009/08/poll.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2777498175171136686/posts/default/41637306916989312'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2777498175171136686/posts/default/41637306916989312'/><link rel='alternate' type='text/html' href='http://iztari.blogspot.com/2009/08/poll.html' title='Poll'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/04882490885748178162</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2777498175171136686.post-3627026951957187815</id><published>2009-07-31T10:50:00.000-07:00</published><updated>2009-08-04T13:38:59.267-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="BlazBlue: Calamity Trigger"/><category scheme="http://www.blogger.com/atom/ns#" term="Fighting game"/><category scheme="http://www.blogger.com/atom/ns#" term="video game"/><category scheme="http://www.blogger.com/atom/ns#" term="Xbox 360"/><title type='text'>My Opinion: BlazBlue</title><content type='html'>&lt;p class=&quot;zemanta-img zemanta-action-dragged&quot; style=&quot;margin: 1em; float: left; display: block; width: 266px;&quot;&gt;&lt;a href=&quot;http://en.wikipedia.org/wiki/Image:BlazBlue.jpg&quot;&gt;&lt;img src=&quot;http://upload.wikimedia.org/wikipedia/en/0/08/BlazBlue.jpg&quot; alt=&quot;BlazBlue: Calamity Trigger&quot; style=&quot;border: medium none ; display: block;&quot; height=&quot;360&quot; width=&quot;256&quot; /&gt;&lt;/a&gt;&lt;span class=&quot;zemanta-img-attribution&quot;&gt;Image via &lt;a href=&quot;http://en.wikipedia.org/wiki/Image:BlazBlue.jpg&quot;&gt;Wikipedia&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;BlazBlue: Calamity Trigger is a really fun 2-D fighting game and it&#39;s also really beautiful to look at. I&#39;m not a fan of fighting games so I hesitated a little before actually buying this game (even though I actually saw footage of the game two days before I bought it :D). I really didn&#39;t made my mind until was in the store purchasing it. The reasons I decided to go for it and buy it were two: the first that the game is visually astounding and the second is the right-stick controls, which made it easier for noobs to do all the cool stuff without doing the button combinations. Thanks to the right-stick even a noob could enjoy playing this game, but the right-stick will limit you as it can&#39;t do all combos or special attacks. BlazBlue comes with many game modes such as arcade mode, story mode, versus, training, theater, gallery, and online multiplayer.&lt;br /&gt;The Story Mode is long for fighter game, to bad you never understand everything that is happening. Yet you do learn the personality of each character, and how they behave with the others and why. You also get a little background for each character, but at the end the story is confusing. This also happens because you play a different story for each character and something different happens. There is a real ending, once you pass it once with each character available in story mode, but this real ending is also somewhat confusing. Even though the story is confusing I did enjoy playing through it and watching the story videos.&lt;br /&gt;The arcade mode is what you expect, you battle a series of characters and that&#39;s it. You do release a special attack or form for you character once you pass the arcade mode, so it is worth passing with all characters at least once. Some characters do interact with each other before a fight, but it&#39;s not much (which s a good thing, we do have a story mode after all). The other modes are self-explanatory, so I won&#39;t explain them.&lt;br /&gt;I really liked BlazBlue; I admit I don&#39;t play it too often though to the fact that I&#39;m not a fan of fighting games. The game is beautiful to see and fun to play, so I recommend it to everybody from noobs to hardcore gamers who are interested in a good fighting game.</content><link rel='replies' type='application/atom+xml' href='http://iztari.blogspot.com/feeds/3627026951957187815/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://iztari.blogspot.com/2009/07/my-opinion-blazblue-review.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2777498175171136686/posts/default/3627026951957187815'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2777498175171136686/posts/default/3627026951957187815'/><link rel='alternate' type='text/html' href='http://iztari.blogspot.com/2009/07/my-opinion-blazblue-review.html' title='My Opinion: BlazBlue'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/04882490885748178162</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2777498175171136686.post-7972043043999545326</id><published>2009-07-06T11:45:00.000-07:00</published><updated>2009-07-09T10:52:56.407-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Anime"/><category scheme="http://www.blogger.com/atom/ns#" term="Clannad"/><category scheme="http://www.blogger.com/atom/ns#" term="Manga"/><title type='text'>Clannad, the graphic novel, the series, the movie, but not the manga.</title><content type='html'>&lt;a style=&quot;font-family: verdana;&quot; href=&quot;http://en.wikipedia.org/wiki/Image:Clannad_game_cover.jpg&quot;&gt;&lt;img src=&quot;http://upload.wikimedia.org/wikipedia/en/c/cb/Clannad_game_cover.jpg&quot; alt=&quot;Clannad (visual novel)&quot; style=&quot;border: medium none ;&quot; align=&quot;left&quot; height=&quot;514&quot; width=&quot;300&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span style=&quot;font-family:verdana;&quot;&gt;About two months ago I watched Clannad, and recently The After Story (about two weeks ago), and the Clannad Movie (last weekend). I started watching Clannad for a simple reason, one day I was just bored and felt like watching something new, but calm. While I was watching the first season I felt this anime was just going to be a good timekiller, with no real drama, at least not enough for me to feel excited. And yet I still watched like 12 or 10 episodes per day finishing the first season in about two or three days. I can&#39;t really explain why I saw it so fast, I just did. Now I&#39;m not saying that nothing happens during the series, I was never &#39;sitting on the edge of my seat&#39; excited, but I still wanted to see the next episode as soon as possible. And in reality many things do happen, but I always had this feeling that at the end everything would stay the same. But I will not say if that feeling was correct or not, for the safety of those who haven&#39;t seen it. Once I finished the first season I decided not to see the After Story for a while longer, due to the fact that I saw the first season to fast (or did I?).&lt;br /&gt;&lt;br /&gt;After watching the first season I decided to play the graphic novel. But I can&#39;t say if the anime is an accurate adaptation, because I didn&#39;t follow the anime&#39;s story. I only passed the game once, and I didn&#39;t even meet the main character (Nagisa) in the game. For those who like this type of games I do&lt;/span&gt;&lt;span style=&quot;font-family:verdana;&quot;&gt;&lt;/span&gt;&lt;a style=&quot;font-family: verdana;&quot; href=&quot;http://upload.wikimedia.org/wikipedia/en/4/42/Clannad_characters.jpg&quot;&gt;&lt;img src=&quot;http://upload.wikimedia.org/wikipedia/en/4/42/Clannad_characters.jpg&quot; alt=&quot;Clannad (visual novel)&quot; style=&quot;border: medium none ;&quot; align=&quot;right&quot; height=&quot;427&quot; width=&quot;300&quot; /&gt;&lt;/a&gt;&lt;span style=&quot;font-family:verdana;&quot;&gt; recommend it, as it is very interesting, and when replaying the story can change in many ways (I started a second play-through but never finished it). I stopped playing due to having the game installed in windows, which I was to lazy to use just to play this game. So for a while I didn&#39;t see anything Clannad-related.&lt;br /&gt;&lt;br /&gt;About two weeks ago, one Friday night I was bored and decided I will &#39;start&#39; watching the After Story. So I started around 9:00pm to see the first episode, and Saturday morning at around 7:00am I had finish all 22 episodes of the main story (as it does include 3 extra episodes). This was weird because my plan was to see only two or three episodes and not 22, o&#39;well. The After Story begins where the first season left on, and it concentrates mostly on the two main characters (Tomoya and Nagisa). I feel that if I say anything more about the story I will spoil the series in some way directly or indirectly, so all I have to say is: Watch it, it&#39;s cool. One last thing the movie is a good interpretation (not the same) of the whole series, so I recommend watching it after seeing the series (both seasons).&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;font-family:verdana;&quot;&gt;&lt;/span&gt;</content><link rel='replies' type='application/atom+xml' href='http://iztari.blogspot.com/feeds/7972043043999545326/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://iztari.blogspot.com/2009/07/clannad-graphic-novel-series-movie-but.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2777498175171136686/posts/default/7972043043999545326'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2777498175171136686/posts/default/7972043043999545326'/><link rel='alternate' type='text/html' href='http://iztari.blogspot.com/2009/07/clannad-graphic-novel-series-movie-but.html' title='Clannad, the graphic novel, the series, the movie, but not the manga.'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/04882490885748178162</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2777498175171136686.post-5412339008145843709</id><published>2009-06-26T11:19:00.000-07:00</published><updated>2009-07-09T10:42:23.523-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="twitter"/><title type='text'>Twitter</title><content type='html'>&lt;span style=&quot;font-family: verdana;font-family:verdana;&quot; &gt;Well I just open a twitter account (actually yesterday). I don&#39;t know how often I will update it, but it will be a lot more often than the blog. :P&lt;/span&gt;&lt;br /&gt;&lt;a style=&quot;font-family: verdana;&quot; href=&quot;https://twitter.com/iztari&quot;&gt;&lt;br /&gt;https://twitter.com/iztari&lt;/a&gt;&lt;br /&gt; &lt;br /&gt;&lt;span style=&quot;font-family: verdana;font-family:times new roman;&quot; &gt;Bueno acabo de abrir una cuenta de twitter (realmente ayer). No se que tan seguido lo actualize, pero les garantizo que sera mas seguido que el blog. :P&lt;/span&gt;</content><link rel='replies' type='application/atom+xml' href='http://iztari.blogspot.com/feeds/5412339008145843709/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://iztari.blogspot.com/2009/06/twitter.html#comment-form' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2777498175171136686/posts/default/5412339008145843709'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2777498175171136686/posts/default/5412339008145843709'/><link rel='alternate' type='text/html' href='http://iztari.blogspot.com/2009/06/twitter.html' title='Twitter'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/04882490885748178162</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2777498175171136686.post-6554603338380552569</id><published>2009-06-03T22:34:00.000-07:00</published><updated>2009-07-09T10:43:48.251-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Microsoft"/><category scheme="http://www.blogger.com/atom/ns#" term="Nintendo"/><category scheme="http://www.blogger.com/atom/ns#" term="Sony"/><category scheme="http://www.blogger.com/atom/ns#" term="video game"/><title type='text'>One more year one more E3!</title><content type='html'>&lt;style&gt; st1\:*{behavior:url(#ieooui) } &lt;/style&gt; &lt;!--[endif]--&gt;&lt;style&gt; &lt;!--  /* Style Definitions */  p.MsoNormal, li.MsoNormal, div.MsoNormal  {mso-style-parent:&quot;&quot;;  margin:0in;  margin-bottom:.0001pt;  mso-pagination:widow-orphan;  font-size:12.0pt;  font-family:&quot;Times New Roman&quot;;  mso-fareast-font-family:&quot;Times New Roman&quot;;} a:link, span.MsoHyperlink  {color:blue;  text-decoration:underline;  text-underline:single;} a:visited, span.MsoHyperlinkFollowed  {color:purple;  text-decoration:underline;  text-underline:single;} @page Section1  {size:8.5in 11.0in;  margin:1.0in 1.25in 1.0in 1.25in;  mso-header-margin:.5in;  mso-footer-margin:.5in;  mso-paper-source:0;} div.Section1  {page:Section1;} --&gt; &lt;/style&gt;&lt;!--[if gte mso 10]&gt; &lt;style&gt;  /* Style Definitions */  table.MsoNormalTable  {mso-style-name:&quot;Table Normal&quot;;  mso-tstyle-rowband-size:0;  mso-tstyle-colband-size:0;  mso-style-noshow:yes;  mso-style-parent:&quot;&quot;;  mso-padding-alt:0in 5.4pt 0in 5.4pt;  mso-para-margin:0in;  mso-para-margin-bottom:.0001pt;  mso-pagination:widow-orphan;  font-size:10.0pt;  font-family:&quot;Times New Roman&quot;;  mso-ansi-language:#0400;  mso-fareast-language:#0400;  mso-bidi-language:#0400;} &lt;/style&gt; &lt;![endif]--&gt;  &lt;p class=&quot;MsoNormal&quot; style=&quot;font-family: verdana;&quot;&gt;Another E3 has come and gone, and with it a lot of information: new games, new technologies, new surprises, new disappointments, new conferences, etc. So with all these we have a pretty good idea of which games are coming for the rest of the year. And I have to say some of these look really cool. But first I would like to give my opinion about each conference that the big three gave (Microsoft, Nintendo, and Sony). Now before I give my &lt;a href=&quot;http://www.google.com/search?q=define%3Aopinion&quot;&gt;opinion&lt;/a&gt; I like to point out that I didn&#39;t see the conferences in video due to work, but I did follow them in live-blogging via &lt;a href=&quot;http://kotaku.com/&quot;&gt;Kotaku&lt;/a&gt; and &lt;a href=&quot;http://g4tv.com/&quot;&gt;G4&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Microsoft:&lt;br /&gt;&lt;br /&gt;&lt;/b&gt;For the Microsoft conference I thought it was really good even though I never had the feeling of &quot;Whoa that&#39;s totally unexpected&quot; like I did last year with FFXIII. This doesn&#39;t mean I wasn&#39;t surprise with Metal Gear coming to the 360, but it didn&#39;t recreate that feeling I felt last year (do to the rumors). Though all this could be do to the fact that I saw last year&#39;s conferences live on TV. For the games many were already announced, even though some hadn&#39;t been mention for about two years (yeah I&#39;m looking at you Conviction!). These are the games that I&#39;m excited about: Halo: ODST, Halo: Reach, Crackdown 2, MGS: Rising, SC: Conviction, FFXIII, and not shown in the conference but still coming to the 360: Assassin’s Creed 2, Batman: Arkham Asylum, Mass Effect 2, and the new KOTOR. But it wasn&#39;t all about the games in this conference as Microsoft finally revealed their answer to Wii&#39;s Motion control, and I have to admit, this did surprise me as I was expecting some cheap knockoff with some extra stuff, but what they showed was quite impressive (if it actually works as they showed it).&lt;br /&gt;&lt;st1:place st=&quot;on&quot;&gt;&lt;st1:city st=&quot;on&quot;&gt;Natal&lt;/st1:city&gt;&lt;/st1:place&gt; is the name of this technology and it doesn&#39;t use a remote control; instead it&#39;s just like a big sensor bar that detects your whole body. It also has face and voice recognition which sounds pretty cool, but there is still that sensation that reminds us that it was a planned demo. So if it works as it was shown this will be really amazing technology, but back to reality and we remember that it will probably have it own set of issues (after all it is Microsoft). And now if it does work as it was shown, there is still one problem for us hardcore gamers, and that is a simple problem: what the heck do we care for motion control, until now the only thing it has brought us is a bunch of lousy games; just take a look at Wii games and only a few are actually any good. And another thing we, gamers, are usually lazy, so we prefer the controller in the sense that we don&#39;t have to actually stand and move. So yeah natal&#39;s technology is pretty cool, but let&#39;s face reality; the intention behind it is to steal some of those casual gamers that have made the Wii so successful. And well natal looks like it could actually get that done, for example with natal you could actually force the player to stand up and do some exercise while they play. Because with the Wii you can just use the predefine hand movements to do most of the stuff a games needs you to do, without necessarily needing you to stand up and &#39;act&#39; as the game intended. We are still a year away from actually getting to use the natal, so we will just have to wait. With all the games and natal I have to say that Microsoft’s conference was really good, except for that big surprise I wanted as I explained above.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Nintendo:&lt;br /&gt;&lt;br /&gt;&lt;/b&gt;Now sadly this was the conference that I thought to be the most boring. This is due to the fact that out all the games announced only one really interests me, and that game was Metroid: the other M. Now don&#39;t get me wrong two new Mario games do sound cool, but these two don&#39;t seem that exciting. Mario Galaxy 2 will be a lot of fun, but I doubt it would beat the original in hype, and for the New Super Mario 2, it sounds fun, but it could be better if they release it for the DS instead of the Wii and use the DS WiFi network for multiplayer or at least let it support online in the Wii. I don&#39;t get what Nintendo has against online play, I know LAN parties are fun, but with work and studying sometimes you or your friends can&#39;t  get together to play so we use online gaming to play.  And all their motion plus stuff really didn&#39;t seem as great after seeing Natal, but let&#39;s not forget that Natal won&#39;t be coming out for quite some time so Nintendo has time to show what motion plus can really do, and Nintendo also has the most experience with motion control (even though most of the motion control base games suck).  Also what the hell with the Vitality sensor shit! Is my Wii now supposed to be my new gym or nurse? C&#39;mon this is a videogame console we are talking about, we want games not health care shit! Do to the lack of any major announcements and good games, this conference was really bad.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Sony:&lt;br /&gt;&lt;br /&gt;&lt;/b&gt;This conference was the one that I was less excited to see, but in the end I was glad I chose to follow it in live-blogging. It started kind of boring with charts and numbers, which I&#39;m glad Microsoft and Nintendo understood that we juast don&#39;t care about them,&lt;b&gt; &lt;/b&gt;but once they started to talk about games it became more interesting. Sadly many of the &#39;surprises&#39; that Sony had planned for the conference were ruined a few days earlier by some leaks (PSP Go).  Also most of the games they showed didn&#39;t get me really excited as I don&#39;t own a PS3. This doesn&#39;t they were bad or anything, it&#39;s just I don&#39;t have an opinion about them. Now one of the surprises they were able to keep for E3 was their own motion controller, which seems really precise. Even though it looked really precise I still saw it inferior to &lt;st1:city st=&quot;on&quot;&gt;&lt;st1:place st=&quot;on&quot;&gt;Natal&lt;/st1:place&gt;&lt;/st1:city&gt; (if it works as shown), but better than the Wii motion plus, but we will see when they all come out. And again all this motion controls are for the casual gamers, so it&#39;s not something I&#39;m that excited for. Now by the end they showed games that did get my interest even if I don&#39;t own a PS3, for example: The Last Guardian, God of War 3, and Metal Gear: Peace Walker. Also I was happy to see more of FFXIII and Assassin’s Creed 2, which are also coming to the 360. This conference was entertaining and maybe I would&#39;ve been more excited if I was a playstation fan, but I doubt that would ever happen :P.&lt;br /&gt;&lt;br /&gt;With all this I have to say that Microsoft&#39;s conference was the best, then Sony&#39;s, and last is Nintendo&#39;s.  Well now remember that this is my opinion, and as a side note, I can&#39;t wait for September 22 :P&lt;/p&gt;  &lt;span style=&quot;font-family:verdana;&quot;&gt;&lt;span&gt;&lt;span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt; &lt;!--[endif]--&gt;  &lt;p  class=&quot;MsoNormal&quot; style=&quot;font-family:verdana;&quot;&gt;&lt;i&gt;&lt;span lang=&quot;ES-MX&quot;&gt;Nota: Este post no será traducido al español como los anteriores, dada su longitud y la flojera que me da traducirlo por consecuencia (aprendan ingles les servirá!).&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/i&gt;&lt;/p&gt;  &lt;span style=&quot;font-family:verdana;&quot;&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;</content><link rel='replies' type='application/atom+xml' href='http://iztari.blogspot.com/feeds/6554603338380552569/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://iztari.blogspot.com/2009/06/one-more-year-one-more-e3.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2777498175171136686/posts/default/6554603338380552569'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2777498175171136686/posts/default/6554603338380552569'/><link rel='alternate' type='text/html' href='http://iztari.blogspot.com/2009/06/one-more-year-one-more-e3.html' title='One more year one more E3!'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/04882490885748178162</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2777498175171136686.post-3376058435976939774</id><published>2009-05-25T13:06:00.000-07:00</published><updated>2009-05-25T13:22:50.599-07:00</updated><title type='text'>Nuevo Header/ New Header</title><content type='html'>&lt;span style=&quot;font-family:arial;&quot;&gt;Well I just uploaded a new header, which my friend Brawlio was kind in of to make. So if you don&#39;t like the header just go to his blog (link at the side column -&gt;) and complain about it, even though I&#39;m not going to change it as I did like it and that&#39;s what matters. But if you do like it be sure to let him know, so he gets more confidence for future shit and stuff. And whatever happen to his killer Yoshis? I wish he made more. :P&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-family:arial;&quot;&gt;P.D. I added the sub-title, Brawlio did the drawing itself. :P&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;___&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-family:trebuchet ms;&quot;&gt;Bueno acabo de subir el nuevo header para el blog, este header fue creado por mi amigo Brawlio. Si por algo una extraña razón no les gusto se pueden quejar en su blog (link en la columna de a lado). Les informo de todos modos que sus quejas serán inútiles al ser que a mi si me gusto. Y si les gusto pues avísenle también para que le de mas confianza en futuras ocasiones que le toque hacer cosas. Y que paso con su Yoshis bien rudos que dibujaba? Ojala hiciera más. :P&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-family:trebuchet ms;&quot;&gt;P.D. Yo agregue el sub-titulo, Brawlio hizo el dibujo en si. :P&lt;/span&gt;</content><link rel='replies' type='application/atom+xml' href='http://iztari.blogspot.com/feeds/3376058435976939774/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://iztari.blogspot.com/2009/05/nuevo-header-new-header.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2777498175171136686/posts/default/3376058435976939774'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2777498175171136686/posts/default/3376058435976939774'/><link rel='alternate' type='text/html' href='http://iztari.blogspot.com/2009/05/nuevo-header-new-header.html' title='Nuevo Header/ New Header'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/04882490885748178162</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2777498175171136686.post-3737400317098802525</id><published>2009-05-13T16:25:00.000-07:00</published><updated>2009-07-09T10:44:22.643-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="googlereader"/><category scheme="http://www.blogger.com/atom/ns#" term="RSS"/><title type='text'>Howto Share any website via Google Reader</title><content type='html'>&lt;span style=&quot;font-family:verdana;&quot;&gt;Have ever been in a situation where you find something (like a video, comic, article, etc.)  you wish to share with your friends, but the website it is, doesn&#39;t have anyway to share and doesn&#39;t support RSS to share via Google Reader?  Well recently I found out that with Google Reader you can share any link without needing to subscribe to it (no RSS feed needed). In order to get this to work you&#39;ll need to go to your Google Reader and under&quot;Your Stuff&quot; select &quot;Notes&quot;. Once this is done you&#39;ll see the Reader opening all the stuff you shared with a note and on top of it a section with the title, &quot;Share anything from around the web.&quot; In this section you&#39;ll see a Google Reader favicon with a link &quot;Note in Reader&quot;, you&#39;ll need to drag this link to your bookmarks toolbar (Recommended). Now anytime you&#39;re in website you wish to share just click on that bookmark and the familiar Add Note pop up from Google Reader will appear, add your note and share it.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;object height=&quot;323&quot; width=&quot;400&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/v/4CcOust-I14&amp;amp;hl=en&amp;amp;fs=1&amp;amp;rel=0&amp;amp;color1=0x3a3a3a&amp;amp;color2=0x999999&quot;&gt;&lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot;&gt;&lt;param name=&quot;allowscriptaccess&quot; value=&quot;always&quot;&gt;&lt;embed src=&quot;http://www.youtube.com/v/4CcOust-I14&amp;amp;hl=en&amp;amp;fs=1&amp;amp;rel=0&amp;amp;color1=0x3a3a3a&amp;amp;color2=0x999999&quot; type=&quot;application/x-shockwave-flash&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;true&quot; height=&quot;344&quot; width=&quot;425&quot;&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-style: italic;font-family:trebuchet ms;&quot; &gt;Alguna vez han estado navegando la red para cuando se topan con algo (video, comic, articulo, etc.) muy interesante, pero no tiene RSS feed y entonces para compartirlo ocupas mandar el link a tu amigos? Pues recientemente descubrí que vía Google Reader puedes compartir cualquier link con tus amigos del Reader. Esto incluye las ventajas del Google Reader, como lo es compartir con nota.&lt;/span&gt;&lt;span style=&quot;font-style: italic;font-family:trebuchet ms;&quot; &gt; Para hacer esto ocupan ingresar a su Google Reader e ir a la seccion &quot;Your Stuff&quot; (&#39;tus cosas&#39;) y seleccionar &quot;Notes&quot; o &quot;Notas&quot;. Una vez ahi a la derecha va aparecer un &#39;tip&#39; con el titulo &quot;&lt;/span&gt;&lt;span style=&quot;font-style: italic;font-family:verdana;&quot; &gt;Share anything from around the web&lt;/span&gt;&lt;span style=&quot;font-style: italic;font-family:trebuchet ms;&quot; &gt;.&quot; Abajo del titulo veran un link con el favicon del Reader, a este link ponganlo en su bookmark toolbar. Ahora lo unico que ocupan hacer para compartir una pagina es dar click a ese bookmark y te aparecerar el pop-up de Notas de Google Reader, agrega una nota y listo.&lt;/span&gt;</content><link rel='replies' type='application/atom+xml' href='http://iztari.blogspot.com/feeds/3737400317098802525/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://iztari.blogspot.com/2009/05/howto-share-any-website-via-google_13.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2777498175171136686/posts/default/3737400317098802525'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2777498175171136686/posts/default/3737400317098802525'/><link rel='alternate' type='text/html' href='http://iztari.blogspot.com/2009/05/howto-share-any-website-via-google_13.html' title='Howto Share any website via Google Reader'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/04882490885748178162</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2777498175171136686.post-1343110377663713009</id><published>2009-05-13T16:10:00.000-07:00</published><updated>2009-05-13T16:19:57.671-07:00</updated><title type='text'>First Official Post?</title><content type='html'>&lt;span style=&quot;font-family:verdana;&quot;&gt;This post is just to welcome everyone to the reopening of the blog. I don&#39;t promise shit about the frequency of updates, but I will try to make them as regular as possible.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-family:verdana;&quot;&gt;P.D. There is supposed to be a cool new banner, but do to someone, who has not finish making it, it is not up yet :P.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-style: italic;font-family:trebuchet ms;&quot; &gt;Este post nomas es para darle la bienvenida al resurgimiento de mi blog&lt;/span&gt;&lt;span style=&quot;font-style: italic;font-family:trebuchet ms;&quot; &gt;. No prometo nada sobre la frecuencia de los posts, pero intentare hacerlos regularmente de todos modos.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-style: italic;font-family:trebuchet ms;&quot; &gt;P.D. Deberia haber un nuevo banner bonito en el blog pero gracias a alguien que no lo ha terminado no esta :P.&lt;/span&gt;</content><link rel='replies' type='application/atom+xml' href='http://iztari.blogspot.com/feeds/1343110377663713009/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://iztari.blogspot.com/2009/05/first-official-post.html#comment-form' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2777498175171136686/posts/default/1343110377663713009'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2777498175171136686/posts/default/1343110377663713009'/><link rel='alternate' type='text/html' href='http://iztari.blogspot.com/2009/05/first-official-post.html' title='First Official Post?'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/04882490885748178162</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2777498175171136686.post-1604246266276722282</id><published>2009-03-02T16:26:00.000-08:00</published><updated>2009-03-02T16:27:15.377-08:00</updated><title type='text'>Under Construction!</title><content type='html'>Will be ready when it&#39;s ready.</content><link rel='replies' type='application/atom+xml' href='http://iztari.blogspot.com/feeds/1604246266276722282/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://iztari.blogspot.com/2009/03/under-construction.html#comment-form' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2777498175171136686/posts/default/1604246266276722282'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2777498175171136686/posts/default/1604246266276722282'/><link rel='alternate' type='text/html' href='http://iztari.blogspot.com/2009/03/under-construction.html' title='Under Construction!'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/04882490885748178162</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2777498175171136686.post-3831034610611573708</id><published>2007-08-09T11:36:00.000-07:00</published><updated>2009-12-09T21:29:59.586-08:00</updated><title type='text'>Comic Con 2007</title><content type='html'>Bueno ya por fin se me quito la hueva que me dejaron las vacaciones y la Comic Con jajaja, ahora a platicarles de uno de los eventos mas importantes del año en mi región, bueno es el unico evento tan grande para geeks/otakus en la región. Y que tan grande es el evento, bueno en un pasado no era tan grande pero este año se rompió récord como al ser el primer Comic-Con que tres dias estuvieron sold out. Suerte para mi que ya había comprado boleto como un mes y medio antes. Y cuantas personas es eso, pues fueron mas de 125,000 personas.&lt;br /&gt;&lt;br /&gt;Yo empece atender al Comic-Con desde hace dos años y hasta ahorita sigue como prioridad en mis vacaciones de verano al ser un super evento. En el piso principal se ponen los stands de los exhibicionistas, para que se den una idea del piso de exhibiciones vayan &lt;a href=&quot;http://www.comic-con.org/cci/forms/cci07exhib_floor.pdf&quot;&gt;&lt;span style=&quot;text-decoration: underline;&quot;&gt;aquí&lt;/span&gt;.&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;El evento fue genial igual que años pasados, pero este año estuvo mas cansado al a ver una escasez de carros en mi casa. Tuve que cruzar todo los días la garita internacional para llegar a San Diego, y tomar un trolley hasta el centro de convenciones. Todo este recorrido me tomaba aproximadamente una hora y diez minutos. Algo que en carro me tomaría máximo media hora. Pero todo esto valió la pena para ver trailers exclusivo, agarrar cosas gratis, conocer gente &quot;famosa&quot; (por asi decirlo), ver anime, entrar a conferencias, y muchas cosas mas.&lt;br /&gt;&lt;br /&gt;Bueno y no crean que solo les traigo letras, por supuesto que lleve una cámara :p&lt;br /&gt;(recuerden click para ver tamaño original)&lt;br /&gt;&lt;br /&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiB_DMzQbxnmg1bfJ41RecWWRBAYboRiBXLFKmf82WD7MaD3rIZL3aTjTgXcYxhJZ0sK5tOWdkScVQsTF7x9hwixwYbrCPmKZaQ_KRe0IqDcXylcUQJb-9L_-1vZbMKBKvdWDfefWUN074/s1600-h/P1010019.JPG&quot;&gt;&lt;img style=&quot;margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiB_DMzQbxnmg1bfJ41RecWWRBAYboRiBXLFKmf82WD7MaD3rIZL3aTjTgXcYxhJZ0sK5tOWdkScVQsTF7x9hwixwYbrCPmKZaQ_KRe0IqDcXylcUQJb-9L_-1vZbMKBKvdWDfefWUN074/s320/P1010019.JPG&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5096784738257662162&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;        Para que se den cuenta de la &quot;poca&quot; gente que va jajaja&lt;br /&gt;&lt;br /&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjLKNdqfAQGep18_bjgI9amet-0KFIbER3ZiGMl-mgEFBsPc-rXm_TXpvDreqbnOXpGkakRh86c_8qcD4UQFHxOg6iwQ3KmHKm1aRL3gKKFlELhHdRcXaQKOLjII-cWPffXmKRjhKoR35s/s1600-h/P1010003.JPG&quot;&gt;&lt;img style=&quot;margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjLKNdqfAQGep18_bjgI9amet-0KFIbER3ZiGMl-mgEFBsPc-rXm_TXpvDreqbnOXpGkakRh86c_8qcD4UQFHxOg6iwQ3KmHKm1aRL3gKKFlELhHdRcXaQKOLjII-cWPffXmKRjhKoR35s/s320/P1010003.JPG&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5096786408999940338&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg4kMFdPLmP8C7dihIkHJXfiKDqwxLQZNnl198Yj1dUlYMQr_9EfEUH4rfgDW-PSYozlt7myG9ineg5paAeZ5WT5Tgt-IEbStLqjv6YSHsksjMh_5EriDJsxCJ0NTwCXnwJxx00s6quSWE/s1600-h/P1010004.JPG&quot;&gt;&lt;img style=&quot;margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg4kMFdPLmP8C7dihIkHJXfiKDqwxLQZNnl198Yj1dUlYMQr_9EfEUH4rfgDW-PSYozlt7myG9ineg5paAeZ5WT5Tgt-IEbStLqjv6YSHsksjMh_5EriDJsxCJ0NTwCXnwJxx00s6quSWE/s320/P1010004.JPG&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5096787104784642306&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;        Claro que Haruhi no falto jajaja&lt;br /&gt;&lt;br /&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg2pjzfB-6U3Kkuc0Q4M3yvmQGVWubT-9QG5R2ZuvopyIgLnIbBk7gXHFPlII-P5rxlOJIqA54Gsm-SpRdASEGxaUyAbbbqDdPOGu91kSg8Iek09-6SNUpn8TOMF0p92iktDEM2Zwx3HGY/s1600-h/P1010007.JPG&quot;&gt;&lt;img style=&quot;margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg2pjzfB-6U3Kkuc0Q4M3yvmQGVWubT-9QG5R2ZuvopyIgLnIbBk7gXHFPlII-P5rxlOJIqA54Gsm-SpRdASEGxaUyAbbbqDdPOGu91kSg8Iek09-6SNUpn8TOMF0p92iktDEM2Zwx3HGY/s320/P1010007.JPG&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5096788049677447442&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;Un Chewbaca de lego junto con Chewbaca (Peter Mayhew actor de chewbaca) y vean que el mide 2.22 metros.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhi_bXJrIghMyZt3VFtVeMke2uqqqMeZ0rEoFgEhGpSnjo_R6q1HxmpC_FqklJrD2F8I0LbOi2yH40qRJyXOPffCWwtLxswwDv6WUCAKNCBMkhqEDImK8aEzrTBcWhFyX_tN37WCYdcMK0/s1600-h/P1010026.JPG&quot;&gt;&lt;img style=&quot;margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhi_bXJrIghMyZt3VFtVeMke2uqqqMeZ0rEoFgEhGpSnjo_R6q1HxmpC_FqklJrD2F8I0LbOi2yH40qRJyXOPffCWwtLxswwDv6WUCAKNCBMkhqEDImK8aEzrTBcWhFyX_tN37WCYdcMK0/s320/P1010026.JPG&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5096790244405735714&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;    Yo con Jigsaw (de la pelicula de Saw), ahi anduvo asustando gente y me toco ver como asusto a un pobre negrito que salio corriendo, estuvo bien chistoso jaja, y tambien hizo llorar a un niño con una mirada  jajaja.&lt;br /&gt;&lt;br /&gt;Bueno a lo mejor luego subo mas fotos aqui o algun otro lugar y pongo el link jaja</content><link rel='replies' type='application/atom+xml' href='http://iztari.blogspot.com/feeds/3831034610611573708/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://iztari.blogspot.com/2007/08/comic-con-2007.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2777498175171136686/posts/default/3831034610611573708'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2777498175171136686/posts/default/3831034610611573708'/><link rel='alternate' type='text/html' href='http://iztari.blogspot.com/2007/08/comic-con-2007.html' title='Comic Con 2007'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/04882490885748178162</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiB_DMzQbxnmg1bfJ41RecWWRBAYboRiBXLFKmf82WD7MaD3rIZL3aTjTgXcYxhJZ0sK5tOWdkScVQsTF7x9hwixwYbrCPmKZaQ_KRe0IqDcXylcUQJb-9L_-1vZbMKBKvdWDfefWUN074/s72-c/P1010019.JPG" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2777498175171136686.post-2391620041901931522</id><published>2007-07-21T00:14:00.000-07:00</published><updated>2009-12-09T21:29:59.589-08:00</updated><title type='text'>Code Monkeys</title><content type='html'>&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;http://upload.wikimedia.org/wikipedia/en/a/a2/Code_monkeys_logo.jpg&quot;&gt;&lt;img style=&quot;margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px;&quot; src=&quot;http://upload.wikimedia.org/wikipedia/en/a/a2/Code_monkeys_logo.jpg&quot; alt=&quot;&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;Code Monkeys es una nueva caricatura que se estreno el 11 de Julio del 2007 en el canal de G4. Lo que hace especial a esta serie es que es una caricatura al estilo de 8-bits, si como jugabamos Mario originalmente en el NESS.&lt;br /&gt;&lt;br /&gt;Y luego para aquellos de ustedes que han visistado el blog de &lt;a href=&quot;http://sinisterinfinity.blogspot.com/&quot;&gt;Mario&lt;/a&gt; (Sinister), ya deberian conocer a&lt;span id=&quot;BeginvidDescv4Wy7gRGgeA&quot;&gt;l cantante Jonathan Coulton. Lo menciono por que la introduccion a esta caricatura es nada mas y nada menos que su cancion de &lt;a href=&quot;http://sinisterinfinity.blogspot.com/2006/12/code-monkey-de-jonathan-coulton.html&quot;&gt;Code Monkey&lt;/a&gt;, la cual recomiendo bueno a mi me gusto mucho :P&lt;br /&gt;&lt;br /&gt;Los dejo con el intro y un comercial lol:&lt;br /&gt;Intro:&lt;br /&gt;&lt;br /&gt;&lt;object height=&quot;350&quot; width=&quot;425&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/v/j0LrF2-ELqc&quot;&gt;&lt;param name=&quot;wmode&quot; value=&quot;transparent&quot;&gt;&lt;embed src=&quot;http://www.youtube.com/v/j0LrF2-ELqc&quot; type=&quot;application/x-shockwave-flash&quot; wmode=&quot;transparent&quot; height=&quot;350&quot; width=&quot;425&quot;&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;&lt;br /&gt;Comercial:&lt;br /&gt;&lt;br /&gt;&lt;object height=&quot;350&quot; width=&quot;425&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/v/YCal39wbA_w&quot;&gt;&lt;param name=&quot;wmode&quot; value=&quot;transparent&quot;&gt;&lt;embed src=&quot;http://www.youtube.com/v/YCal39wbA_w&quot; type=&quot;application/x-shockwave-flash&quot; wmode=&quot;transparent&quot; height=&quot;350&quot; width=&quot;425&quot;&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;&lt;/span&gt;</content><link rel='replies' type='application/atom+xml' href='http://iztari.blogspot.com/feeds/2391620041901931522/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://iztari.blogspot.com/2007/07/code-monkeys.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2777498175171136686/posts/default/2391620041901931522'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2777498175171136686/posts/default/2391620041901931522'/><link rel='alternate' type='text/html' href='http://iztari.blogspot.com/2007/07/code-monkeys.html' title='Code Monkeys'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/04882490885748178162</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2777498175171136686.post-6348154240370970472</id><published>2007-04-23T17:58:00.000-07:00</published><updated>2009-12-09T21:29:59.590-08:00</updated><title type='text'>涼宮ハルヒの憂鬱!!!!!!</title><content type='html'>&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgmbobVSxFXWJ5QAdLSPAlT9GHMgvLknw1JOqYvW7uYqY0BCvK27Cu8cHmyrbP2C2RXtlifh0ru7HIez4R2JHDBPCNH_FNK-07T1H3UokT7iRn1WeOT0bFXIpX0E5pg9ztlN5cBpcNPhK4/s1600-h/suzumiya_haruhi2.gif&quot;&gt;&lt;img style=&quot;margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgmbobVSxFXWJ5QAdLSPAlT9GHMgvLknw1JOqYvW7uYqY0BCvK27Cu8cHmyrbP2C2RXtlifh0ru7HIez4R2JHDBPCNH_FNK-07T1H3UokT7iRn1WeOT0bFXIpX0E5pg9ztlN5cBpcNPhK4/s320/suzumiya_haruhi2.gif&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5057425884878013554&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br /&gt;Bueno ya era hora de que pusiera algo y no hay nada mejor como poner algo de la Melancolía de Haruhi Suzumiya!! Bueno esto es un anime que se ha vuelto MUY MUY MUY popular últimamente. El anime se trata sobre las &#39;aventuras&#39; de una niña desde el punto de vista de un compañero del escuela, no les cuento mas porque honestamente cualquier otra cosa seria SPOILER!!!!  La serie es muy chistosa, entretenida, agresiva, emocionante, etc. consta de 14 capítulos los cuales salieron en un orden raro a la TV para mantener lo mas emocionante al final, siendo el episodio 14 realmente el 6to cronológico, pero no se preocupen del revoltijo si ponen atención entenderán todo, a este orden se le llama el orden de Kyon (desde el punto del personaje donde vez el anime), y el orden cronológico se le llama orden de Haruhi (personaje principal).&lt;br /&gt;Bueno lo mas raro de esta serie es que su ending es un baile de los personajes, pero lo mas extraño es lo popular que ese baile se ha vuelto y la miles de diferentes de versiones que se han echo las cuales puede apreciar en youtube.&lt;br /&gt;Versión Original Sin Créditos:&lt;br /&gt;&lt;object height=&quot;350&quot; width=&quot;425&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/v/N7ggMWYHUtc&quot;&gt;&lt;param name=&quot;wmode&quot; value=&quot;transparent&quot;&gt;&lt;embed src=&quot;http://www.youtube.com/v/N7ggMWYHUtc&quot; type=&quot;application/x-shockwave-flash&quot; wmode=&quot;transparent&quot; height=&quot;350&quot; width=&quot;425&quot;&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Una de las tantas diferentes versiones:&lt;br /&gt;&lt;object height=&quot;350&quot; width=&quot;425&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/v/m5Oe9hnpVwU&quot;&gt;&lt;param name=&quot;wmode&quot; value=&quot;transparent&quot;&gt;&lt;embed src=&quot;http://www.youtube.com/v/m5Oe9hnpVwU&quot; type=&quot;application/x-shockwave-flash&quot; wmode=&quot;transparent&quot; height=&quot;350&quot; width=&quot;425&quot;&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;Aun no se y no creo saber porque este baile se ha vuelto popular es uno de los mas grandes misterios del mundo jajaja.&lt;br /&gt;El DVD saldrá como en un mes para mas información sobre el dvd vayan a ver el blog de &lt;a href=&quot;http://brawlerbraulio.blogspot.com/&quot;&gt;Brawler&lt;/a&gt;. Esta serie la recomiendo MUCHISISISISISIMO!!!!!  y también recomiendo que la vean en ambos orden ya que son experiencias diferentes!!! Esta serie te intriga tanto (bueno a mi) que hace que quieras imagenes de la seria, con solo decirle que ya tengo mas de 200 imágenes diferentes de 涼宮ハルヒの憂鬱！！！&lt;br /&gt;Bueno los dejo con un collage que hice con &lt;a href=&quot;http://picasa.google.com/linux/download.html&quot;&gt;Google Picasa&lt;/a&gt;:&lt;br /&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiU_9W-Xu_Ov3ihqH7SZQif-YmVwEA5cetipy6Zo9f47MWgrAwl_YrTOzCKobyNugOMcpfVtjuoC1HPr18t0mmiaiyCJACf6y3TgysCGn8N00e5LslZPwKCVP8jDDD1Ph5zhGNZLiFSheA/s1600-h/collagemini.jpg&quot;&gt;&lt;img style=&quot;margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiU_9W-Xu_Ov3ihqH7SZQif-YmVwEA5cetipy6Zo9f47MWgrAwl_YrTOzCKobyNugOMcpfVtjuoC1HPr18t0mmiaiyCJACf6y3TgysCGn8N00e5LslZPwKCVP8jDDD1Ph5zhGNZLiFSheA/s320/collagemini.jpg&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5056804476814074610&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span style=&quot;font-size:78%;&quot;&gt;*Nota no había escrito en mucho tiempo porque eh estado ocupado espero volver a postear igual de seguido como antes.&lt;/span&gt;</content><link rel='replies' type='application/atom+xml' href='http://iztari.blogspot.com/feeds/6348154240370970472/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://iztari.blogspot.com/2007/04/blog-post.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2777498175171136686/posts/default/6348154240370970472'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2777498175171136686/posts/default/6348154240370970472'/><link rel='alternate' type='text/html' href='http://iztari.blogspot.com/2007/04/blog-post.html' title='涼宮ハルヒの憂鬱!!!!!!'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/04882490885748178162</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgmbobVSxFXWJ5QAdLSPAlT9GHMgvLknw1JOqYvW7uYqY0BCvK27Cu8cHmyrbP2C2RXtlifh0ru7HIez4R2JHDBPCNH_FNK-07T1H3UokT7iRn1WeOT0bFXIpX0E5pg9ztlN5cBpcNPhK4/s72-c/suzumiya_haruhi2.gif" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2777498175171136686.post-304625184187728867</id><published>2007-03-18T17:11:00.000-07:00</published><updated>2009-12-09T21:29:59.592-08:00</updated><title type='text'>Reseña &amp;quot;300&amp;quot;</title><content type='html'>Bueno esta película en lo particular me gusto mucho, se me hizo muy buena, pero no creo que todos opinen lo mismo por la razon de que tiene mucha sangre y cosas de esas. 300 es una pelicula basada en la novela gráfica de Frank Miller donde su cuenta la gran historia de la batalla de las Termópilas. Para los que no sepan esta gran batalla es donde 300 Spartans combaten por varios días un ejercito persa conformado por miles de &#39;soldados.&#39; Lo importante de esta batalla es como solo 300 hombres lograron parar un ejercito de miles por vario días sin ceder ni siquiera unos centímetros.&lt;br /&gt;La película contiene unos visuales peculiares para mantener un color fiel ah aquellos en las novelas gráficas. Y honestamente me gusto como quedaron.  Esta película no es para ir a verla con la familia si no que con los amigos si pueden. Esta película la recomiendo mucho vayan y disfruten de ella!!&lt;br /&gt;&lt;br /&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;http://www.bangproject.com/wp-content/uploads/2006/09/300_movie_logo.jpg&quot;&gt;&lt;img style=&quot;margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px;&quot; src=&quot;http://www.bangproject.com/wp-content/uploads/2006/09/300_movie_logo.jpg&quot; alt=&quot;&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;*&lt;span style=&quot;font-size:85%;&quot;&gt;Nota: Si de estos guerreros &lt;a href=&quot;http://www.bungie.net/&quot;&gt;Bungie&lt;/a&gt; se basa para crear a los Spartan II de Halo(por eso el II). &lt;/span&gt;</content><link rel='replies' type='application/atom+xml' href='http://iztari.blogspot.com/feeds/304625184187728867/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://iztari.blogspot.com/2007/03/resena.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2777498175171136686/posts/default/304625184187728867'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2777498175171136686/posts/default/304625184187728867'/><link rel='alternate' type='text/html' href='http://iztari.blogspot.com/2007/03/resena.html' title='Reseña &amp;quot;300&amp;quot;'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/04882490885748178162</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2777498175171136686.post-7356689290157887855</id><published>2007-03-11T00:32:00.000-08:00</published><updated>2009-12-09T21:29:59.595-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Aleatorio"/><category scheme="http://www.blogger.com/atom/ns#" term="Anime"/><category scheme="http://www.blogger.com/atom/ns#" term="Futbol"/><category scheme="http://www.blogger.com/atom/ns#" term="Geek Stuff"/><category scheme="http://www.blogger.com/atom/ns#" term="Videojuegos"/><title type='text'>Super Mega Agresivo Especial 42!!!!</title><content type='html'>&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;http://upload.wikimedia.org/wikipedia/commons/thumb/5/56/Answer_to_Life.png/220px-Answer_to_Life.png&quot;&gt;&lt;img style=&quot;margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px;&quot; src=&quot;http://upload.wikimedia.org/wikipedia/commons/thumb/5/56/Answer_to_Life.png/220px-Answer_to_Life.png&quot; alt=&quot;&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;span style=&quot;font-size:100%;&quot;&gt;El post de hoy es uno muy especial al ser el post 42!!!! Si el numero que a todo aplica y es la gran respuesta a la Vida, Universo y todo. Los mas chistoso es que este numero me ha estado siguiendo por mucho tiempo pero esta semana lo sentí un poco mas. También eh elegido este día para postear este gran post, al ser el cumple del que&lt;/span&gt;&lt;span style=&quot;font-size:100%;&quot;&gt; tiene la culpa de todo esto, Douglas N. Adams, lol. Este gran autor&lt;span style=&quot;font-family:arial;&quot;&gt; escribió el libro de  The Hitchhiker&#39;s Guide to the Galaxy (&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;;font-family:arial;font-size:100%;&quot;  &gt;Guía del Viajero Intergaláctico),un libro que recomiendo mucho y que se puede aprender mucho de el. lol.&lt;br /&gt;Lo mas chistoso es como muchas cosas puedo relacionar con ese numero en mi vida cotidiana. Especialmente últimamente me ah tocado varias v&lt;/span&gt;&lt;span style=&quot;;font-family:arial;font-size:100%;&quot;  &gt;e&lt;/span&gt;&lt;span style=&quot;;font-family:arial;font-size:100%;&quot;  &gt;ces. Un ejemplo es que ahorita estamos arreglando varias cosas para la graduación y resulta que el paquete de fotos cuesta $42 dlls, obviamente este paquete ni nada de la graduación me interesa excepto el titulo obviamente jaja.  Pero aun así el 42 ahí estuvo jajaja, Pero no es lo único, obviamente cualquier numero que encuentro lo intento relacionar especialmente reduciendo ese numero a un 6 o 9 si se puede y ahí multiplicarlo por el otro, &lt;/span&gt;&lt;span style=&quot;&quot;&gt;¿porque esos numeros? Pues si no lo saben como lo explican en el libro, 9x6=42. Si ya se que esto no tiene sentido, la única manera para que eso sea cierto es si pensamos en base 13 (el común es base 10). &lt;/span&gt;&lt;span style=&quot;&quot;&gt;Para mas detalles consulten &lt;a href=&quot;http://en.wikipedia.org/wiki/Answer_to_life_the_universe_and_everything&quot;&gt;wikipedia&lt;/a&gt;. Entonces ya con esto explicado sabrán como mucho números se pueden relacionar al 42 (sumando sus dígitos o multiplicándolos o de alguna manera que llegue ah 9 o 6 y&lt;/span&gt;&lt;span style=&quot;&quot;&gt; multiplicarlo por el otro a si obteniendo 42 jajaja). Pero eso no es todo también en otras circunstancias  donde el 42 aparece por si mismo. eh aquí una muestra:&lt;/span&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjEjstEQT2TPzbLlVwweqQIFPUsF-CaOna9pidzHrYSQ1f7EJD8N5QHM8PKFPri01vVRIsbmuuKeSwyV53AqOsrHPaKobhevpLCkJYKP5a3RLE4wgM4b1kvD2cY6r3eCCb24H8V3a_cI9c/s1600-h/battery42.png&quot;&gt;&lt;img style=&quot;margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 341px; height: 111px;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjEjstEQT2TPzbLlVwweqQIFPUsF-CaOna9pidzHrYSQ1f7EJD8N5QHM8PKFPri01vVRIsbmuuKeSwyV53AqOsrHPaKobhevpLCkJYKP5a3RLE4wgM4b1kvD2cY6r3eCCb24H8V3a_cI9c/s200/battery42.png&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5040110309833197986&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;A veces Ubuntu me pone la senal de &quot;low battery&quot; si realmente estar baja por alguna razon, y esta semana me lo puso por primera vez en el porcentaje de 42! Pero no solo a mi por ejemplo a Mario (&lt;a href=&quot;http://sinisterinfinity.blogspot.com/&quot;&gt;Sinister&lt;/a&gt;) el martes que entro a su google reader encontro esto:&lt;br /&gt;&lt;br /&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhMz3m03vMzcPEEtuT6n-DOiY0WQuna7a86cOkUOsgs8-ivJ85dqeXYUqtG-XoWDXDRs5d45B0LmOHfwHcUrqRxX3kK7lHHxZRjWqSUxGA4blasGndREsTNv8li_nSz19mTWG4Kkyut8i4/s1600-h/screenshot11.png&quot;&gt;&lt;img style=&quot;margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhMz3m03vMzcPEEtuT6n-DOiY0WQuna7a86cOkUOsgs8-ivJ85dqeXYUqtG-XoWDXDRs5d45B0LmOHfwHcUrqRxX3kK7lHHxZRjWqSUxGA4blasGndREsTNv8li_nSz19mTWG4Kkyut8i4/s320/screenshot11.png&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5040111877496261042&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;Si 42 cosas que leer!! Y hoy en la escuela otra vez le paso!!!!&lt;br /&gt;Luego la Carrera que quiereo estudiar (Ciencias Computacionales) tiene 42 materias que se tienen que cursar en el Cetys (mi escuela), esto no lo sabia y esta misma semana me entere!! Y para mas colmo cuando me meto al blogger me doy cuenta que ya voy a llegar a mi post 42 (siendo este)!!!!! Luego en esta semana tuve examenes y en el examen de fisica que tiene un valor de 85% solo venian dos problemas cada uno valiendo 42.5% lo suficiente para decir omfg 42!!!! jajaja.  Y obviamente en nuestro programas que hemos echo sinister y yo para practicar pusimos easter eggs del 42 jajajaja.&lt;br /&gt;Datos interesante de &lt;a href=&quot;http://en.wikipedia.org/wiki/42_%28number%29&quot;&gt;wikipedia&lt;/a&gt;:&lt;br /&gt;10! (10 factorial) segundos es exactamente 42 días!!&lt;br /&gt;Los minutos para que el teórico &quot;tren gravedad (&lt;a href=&quot;http://en.wikipedia.org/wiki/Gravity_train&quot;&gt;gravity train&lt;/a&gt;)&quot; llegue a cualquier parte del planeta!!&lt;br /&gt;Numero de dientes que tienen los caninos!!&lt;br /&gt;En el antiguo Libro Chino &quot;Tao Te Ching,&quot; el capitulo 42 es una explicación del universo!!&lt;br /&gt;El 42 es el numero que usa Dios para crear el Universo en Tradiciona Cabala (una de las principales corrientes del Esoterismo judío)!!!!!&lt;br /&gt;La edad de Peter Griffin en Family Guy!!&lt;br /&gt;La edad que se supone que Homero J. Simpson debe morir!!!!&lt;br /&gt;El record de mas gente en un carro es 42!!&lt;br /&gt;El numero de dientes de Moby Dick!!&lt;br /&gt;Y hay mucho mas curiosidades!!!&lt;br /&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;http://www.nmpft.org.uk/film/fanfilms/2004/img/hitchhiker/adams.jpg&quot;&gt;&lt;img style=&quot;margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 185px; height: 199px;&quot; src=&quot;http://www.nmpft.org.uk/film/fanfilms/2004/img/hitchhiker/adams.jpg&quot; alt=&quot;&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;Si quieren culpar ah alguien por lo del 42 ahí esta su foto lol!!!&lt;br /&gt;Algunas &lt;a href=&quot;http://www.brainyquote.com/quotes/quotes/d/douglasada124770.html&quot;&gt;frases&lt;/a&gt; de Douglas Adams (algunas son de sus libros; lo siento están en ingle):&lt;br /&gt;&quot;The knack of flying is learning how to throw yourself at the ground and miss.&quot;&lt;br /&gt;&quot;The ships hung in the sky in much the same way that bricks don&#39;t. &quot;&lt;br /&gt;&quot;Life is wasted on the living. &quot;&lt;br /&gt;&quot;There is a theory which states that if ever anyone discovers exactly what the Universe is for and why it is here, it will instantly disappear and be replaced by something even more bizarre and inexplicable.There is another theory which states that this has already happened. &quot;&lt;br /&gt;&quot;Watch?? I&#39;m gonna pray, Man! Know any good religions? &quot;&lt;br /&gt;&quot;&lt;span class=&quot;huge&quot;&gt;In the beginning the Universe was created. This has made a lot of people very angry and been widely regarded as a bad move.&quot;&lt;br /&gt;&quot;&lt;/span&gt;&lt;span class=&quot;huge&quot;&gt;Anyone who is capable of getting themselves made President should on no account be allowed to do the job.&quot;&lt;br /&gt;&quot;Nothing travels faster than the speed of light with the possible exception of bad news, which follows its own laws.&quot;&lt;br /&gt;Para mas den click &lt;a href=&quot;http://www.google.com/search?q=douglas+adams+quotes&amp;ie=utf-8&amp;amp;amp;amp;oe=utf-8&amp;aq=t&amp;amp;rls=com.ubuntu:en-US:official&amp;client=firefox-a&quot;&gt;aqui&lt;/a&gt; lol.&lt;br /&gt;Por ultimo la foto de mi cubo, con una nieve muy especial!!:&lt;br /&gt;&lt;/span&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhFVKqa-42tOGu5KR_EluDmtARSUKNH9Es41qSg0CzZg_5TMB5c1OZExl8NrjwjDrkmJhCYvnX39cQoHWUltHdG8XTOKuSmBe9BDsk6arLIwYrmny0MypnjgGv_w4w9gG8F43L9tl5P0uA/s1600-h/cubo42.png&quot;&gt;&lt;img style=&quot;margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhFVKqa-42tOGu5KR_EluDmtARSUKNH9Es41qSg0CzZg_5TMB5c1OZExl8NrjwjDrkmJhCYvnX39cQoHWUltHdG8XTOKuSmBe9BDsk6arLIwYrmny0MypnjgGv_w4w9gG8F43L9tl5P0uA/s320/cubo42.png&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5040580222205053378&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;Espero que les halla gustado !!!</content><link rel='replies' type='application/atom+xml' href='http://iztari.blogspot.com/feeds/7356689290157887855/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://iztari.blogspot.com/2007/03/super-mega-agresivo-especial-42.html#comment-form' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2777498175171136686/posts/default/7356689290157887855'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2777498175171136686/posts/default/7356689290157887855'/><link rel='alternate' type='text/html' href='http://iztari.blogspot.com/2007/03/super-mega-agresivo-especial-42.html' title='Super Mega Agresivo Especial 42!!!!'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/04882490885748178162</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjEjstEQT2TPzbLlVwweqQIFPUsF-CaOna9pidzHrYSQ1f7EJD8N5QHM8PKFPri01vVRIsbmuuKeSwyV53AqOsrHPaKobhevpLCkJYKP5a3RLE4wgM4b1kvD2cY6r3eCCb24H8V3a_cI9c/s72-c/battery42.png" height="72" width="72"/><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2777498175171136686.post-2035877743022405667</id><published>2007-03-07T20:21:00.000-08:00</published><updated>2009-12-09T21:29:59.597-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Geek Stuff"/><title type='text'>Un Héroe a Muerto</title><content type='html'>Bueno ah ocurrido algo inimaginable un gran héroe a muerto, hoy &lt;a href=&quot;http://www.marvel.com/&quot;&gt;Marvel&lt;/a&gt; ah anunciado que el Capitan America a muerto. Si Steve Rogers, el Capitan America, fue asesinado en los escalones de la Corte Federal por un sniper. Todo esto en el comic de Capitan America #25. &lt;span style=&quot;&quot;&gt;¿&lt;/span&gt;Que tiene que decir Marvel de esto? preguntan. Pues aqui la respuesta, &quot;Captain America will continue to be published despite the very real death of Steve Rogers...*&quot;&lt;br /&gt;Aquí una foto de la victima:&lt;br /&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;http://www.marvel.com/universe3zx/images/a/a8/CAP_inline_2.jpg&quot;&gt;&lt;img style=&quot;margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 200px;&quot; src=&quot;http://www.marvel.com/universe3zx/images/a/a8/CAP_inline_2.jpg&quot; alt=&quot;&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;&lt;span style=&quot;font-size:100%;&quot;&gt;Alguno comentarios de los fans&lt;span style=&quot;font-size:85%;&quot;&gt;**&lt;/span&gt;:&lt;br /&gt;&quot;&lt;/span&gt;&lt;/span&gt;I couldn&#39;t believe what I was reading. Captain America dead? I will never buy another marvel comic again.&quot;&lt;br /&gt;&quot;Relax people.  You know by now Marvel is incapable of keeping anybody dead...&quot;&lt;br /&gt;&quot;After all those super villains (and even heroes), this is how he dies? So unglamorlessly? It&#39;d have been better if Iron Man accidentally killed him.&quot;&lt;br /&gt;Para ver mas de click &lt;a href=&quot;http://www.marvel.com/boards/viewtopic.php?t=35227&quot;&gt;aqui&lt;/a&gt;.&lt;br /&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;*Cita sacada de &lt;a href=&quot;http://forum.newsarama.com/showthread.php?t=104091&quot;&gt;aqui&lt;/a&gt;.&lt;br /&gt;**Mensajes del &lt;a href=&quot;http://www.marvel.com/boards/viewtopic.php?t=35227&quot;&gt;message board&lt;/a&gt; de marvel&lt;br /&gt;&lt;/span&gt;</content><link rel='replies' type='application/atom+xml' href='http://iztari.blogspot.com/feeds/2035877743022405667/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://iztari.blogspot.com/2007/03/un-heroe-muerto.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2777498175171136686/posts/default/2035877743022405667'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2777498175171136686/posts/default/2035877743022405667'/><link rel='alternate' type='text/html' href='http://iztari.blogspot.com/2007/03/un-heroe-muerto.html' title='Un Héroe a Muerto'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/04882490885748178162</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2777498175171136686.post-8303608666587484547</id><published>2007-03-05T18:39:00.000-08:00</published><updated>2009-12-09T21:29:59.599-08:00</updated><title type='text'>Beryl de Nuevo</title><content type='html'>Si ya tengo beryl trabajando una vez mas en mi laptop, ahora por lo visto es una versión un poco mas vieja pero estable. La inestable puede llegar a tener varios problemas al ser beta. Bueno todo esto sucedio cuando vi el post de &lt;a href=&quot;http://linuxman.blogsome.com/&quot;&gt;LinuxMan&lt;/a&gt; donde el hablo de unos problemas que tuvo con el beryl del Ubuntu Ultimate Edition, donde al final pone a un link que recomienda para instalar beryl desde cero. Al no tener nada que perder decidir intentar esa &lt;a href=&quot;http://www.guia-ubuntu.org/index.php/Xgl_y_Beryl&quot;&gt;guia&lt;/a&gt; y para mi sorpresa funciono a la perfeccion y ya estoy disfrutando una vez mas de mi cubito. Lo mas raro de todo es que cuando ya lo logre poner el cubo todo estaba exactamente como lo deje cuando me ocurrio el problema del cubo blanco. Bueno los dejo con dos screenshots de mi cubo actual:&lt;br /&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiPLXFho8oQ-Rbaco5AiJDZGZQB61C1BfvyGHM-Vz_NbboJvlPJWpLX7zqB12QLfmzHfAi5Y6jXNWpAuH20f2hh9OCbQ4ipoksK9xeDrSJsAjARyNHzaoKv1Jg-qrhMBVNvRGciIY2-0RI/s1600-h/micubo.png&quot;&gt;&lt;img style=&quot;margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiPLXFho8oQ-Rbaco5AiJDZGZQB61C1BfvyGHM-Vz_NbboJvlPJWpLX7zqB12QLfmzHfAi5Y6jXNWpAuH20f2hh9OCbQ4ipoksK9xeDrSJsAjARyNHzaoKv1Jg-qrhMBVNvRGciIY2-0RI/s320/micubo.png&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5038638243006395538&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiSfhPW0nJcOGhWhrCYnfpijx1mkkRa0p7J83qDr3CWq2ZzXrqfD3ik2OIrBSCyvgCGtqU-VgqZsZH5MQBn9txZhYet9Z37XWs3w1MWItyVzitKTwXLLm3TcMsQPtAI7JP8IhyphenhyphenrjiWBYoc/s1600-h/micuboabajo.png&quot;&gt;&lt;img style=&quot;margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiSfhPW0nJcOGhWhrCYnfpijx1mkkRa0p7J83qDr3CWq2ZzXrqfD3ik2OIrBSCyvgCGtqU-VgqZsZH5MQBn9txZhYet9Z37XWs3w1MWItyVzitKTwXLLm3TcMsQPtAI7JP8IhyphenhyphenrjiWBYoc/s320/micuboabajo.png&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5038638715452798114&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;Hacer click en las imagenes para agrandar.&lt;/span&gt;</content><link rel='replies' type='application/atom+xml' href='http://iztari.blogspot.com/feeds/8303608666587484547/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://iztari.blogspot.com/2007/03/beryl-de-nuevo.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2777498175171136686/posts/default/8303608666587484547'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2777498175171136686/posts/default/8303608666587484547'/><link rel='alternate' type='text/html' href='http://iztari.blogspot.com/2007/03/beryl-de-nuevo.html' title='Beryl de Nuevo'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/04882490885748178162</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiPLXFho8oQ-Rbaco5AiJDZGZQB61C1BfvyGHM-Vz_NbboJvlPJWpLX7zqB12QLfmzHfAi5Y6jXNWpAuH20f2hh9OCbQ4ipoksK9xeDrSJsAjARyNHzaoKv1Jg-qrhMBVNvRGciIY2-0RI/s72-c/micubo.png" height="72" width="72"/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2777498175171136686.post-6321821968409784333</id><published>2007-03-04T21:52:00.000-08:00</published><updated>2009-12-09T21:29:59.601-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Geek Stuff"/><title type='text'>Usen Firefox y de una vez Linux (Ubuntu si pueden)</title><content type='html'>Bueno estaba surfeando la red y vi una imagen que me pareció interesante al ser la viva imagen del logo y nombre de un gran explorador que todos ustedes deberían usar pero por lo visto en las estadísticas de mi blog cada vez hay mas visitantes que usan el chafisima internet explorer, y si hablo del explorador Firefox. Este explorador lo deberían usar ya que es mas seguro que internet explorer, mas fácil de personalizar especialmente con el about:config. Si no sabes usar el abput:config solo consulta su &lt;a href=&quot;http://kb.mozillazine.org/Firefox_:_FAQs_:_About:config_Entries&quot;&gt;wiki&lt;/a&gt;, donde te dice para que sirve cada opción. No lo menciono como el mejor explorador ya que no eh usado el Opera (dicen que es muy seguro), Safari (explorador que viene en Macs), y Camino (explorador open source basado en el Gecko de mozilla para Macs, por lo que lei es disque mas rápido que Firefox). Bueno los dejo con las imágenes que me gustaron lol:&lt;br /&gt;&lt;br /&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEje1OJal_kbnboZnGJr0XDef6ZaP5bIFyJyncqKxCtqfhc28lh2sykycuxnh9wEoFqx19Bf_MwsebP67sy-CtT0hiKMu3aIZ_TQPi8Hghzdyp9vw6JlWtwQc6jKmL6pUGGD0A3mR1W9KTc/s1600-h/firefoxdreinull-1.jpg&quot;&gt;&lt;img style=&quot;margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEje1OJal_kbnboZnGJr0XDef6ZaP5bIFyJyncqKxCtqfhc28lh2sykycuxnh9wEoFqx19Bf_MwsebP67sy-CtT0hiKMu3aIZ_TQPi8Hghzdyp9vw6JlWtwQc6jKmL6pUGGD0A3mR1W9KTc/s320/firefoxdreinull-1.jpg&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5038319893036625682&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;                            Si el Firefox (zorro de fuego) en persona!!&lt;br /&gt;&lt;br /&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;http://www.mrbass.org/freeware/firefox/firefoxrules.jpg&quot;&gt;&lt;img style=&quot;margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 163px; height: 158px;&quot; src=&quot;http://www.mrbass.org/freeware/firefox/firefoxrules.jpg&quot; alt=&quot;&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;        La realidad&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;http://koalasoft.homelinux.net/albums/TUX/Tux_FireFox.png&quot;&gt;&lt;img style=&quot;margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 217px; height: 219px;&quot; src=&quot;http://koalasoft.homelinux.net/albums/TUX/Tux_FireFox.png&quot; alt=&quot;&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;span style=&quot;font-size:130%;&quot;&gt;Usen Firefox y Linux!!!!!!!!!!&lt;/span&gt;</content><link rel='replies' type='application/atom+xml' href='http://iztari.blogspot.com/feeds/6321821968409784333/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://iztari.blogspot.com/2007/03/usen-firefox-y-de-una-vez-linux-ubuntu.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2777498175171136686/posts/default/6321821968409784333'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2777498175171136686/posts/default/6321821968409784333'/><link rel='alternate' type='text/html' href='http://iztari.blogspot.com/2007/03/usen-firefox-y-de-una-vez-linux-ubuntu.html' title='Usen Firefox y de una vez Linux (Ubuntu si pueden)'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/04882490885748178162</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEje1OJal_kbnboZnGJr0XDef6ZaP5bIFyJyncqKxCtqfhc28lh2sykycuxnh9wEoFqx19Bf_MwsebP67sy-CtT0hiKMu3aIZ_TQPi8Hghzdyp9vw6JlWtwQc6jKmL6pUGGD0A3mR1W9KTc/s72-c/firefoxdreinull-1.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2777498175171136686.post-8361510218888416809</id><published>2007-03-02T09:29:00.000-08:00</published><updated>2009-12-09T21:29:59.604-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Aleatorio"/><category scheme="http://www.blogger.com/atom/ns#" term="Anime"/><title type='text'>Febrero para Olvidar, excepto los fin de Semanas</title><content type='html'>Bueno este Febrero ha sido un mes para al olvidar (hablando sobre el blog) ya que nada ah pasado. En este mes no eh tenido mucho de que escribir y eso no me gusta, pero bueno esperemos que marzo tenga mas info que ofrecer jejeje. Aunque Febrero no fue muy bueno para el blog, si lo fue para romper récord, ya que en este mes dos veces vinieron dos amigos de la escuela a mi  casa a dormir algo que no habia sucedido hace mucho tiempo. Lo mas destacado de este mes fue el Wii y todos lo agresivo que hemos estado con los animes jejeje, ya que vimos 21 capítulos un día de anime, (FMP, Haruhi, OVA Elfen Lied), y otro día 19 (Fumoffu, R.O.D., Genshiken (la recomiendo), y Love Hina) jajajaja y para estar peor empezábamos a ver los animes a las 10pm, SI A LAS DIEZ PM!!!!. Somos unos SUPER MEGA AGRESIVOS lo se pero eso es lo que rifa jajajajajaja. Y marzo ya empezó con ir a casa de un amigo y quedarnos a dormir para celebrar su cumple, entonces parece que continuara jajajjajaja. Bueno espero que este mes traiga as noticias y otro podcast, lo que si es que ya vi un preview del Extravaganza 2  de &lt;a href=&quot;http://www2.blogger.com/img/gl.link.gif&quot;&gt;Brawler&lt;/a&gt;.</content><link rel='replies' type='application/atom+xml' href='http://iztari.blogspot.com/feeds/8361510218888416809/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://iztari.blogspot.com/2007/03/febrero-para-olvidar-excepto-los-fin-de.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2777498175171136686/posts/default/8361510218888416809'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2777498175171136686/posts/default/8361510218888416809'/><link rel='alternate' type='text/html' href='http://iztari.blogspot.com/2007/03/febrero-para-olvidar-excepto-los-fin-de.html' title='Febrero para Olvidar, excepto los fin de Semanas'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/04882490885748178162</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2777498175171136686.post-4814754783127475677</id><published>2007-02-20T16:49:00.000-08:00</published><updated>2009-12-09T21:29:59.605-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Geek Stuff"/><category scheme="http://www.blogger.com/atom/ns#" term="Videojuegos"/><title type='text'>Halo 3 Update</title><content type='html'>Bueno todo a estado calmado últimamente sobre Halo 3 pero ya se dio al publico una estimación de salida de este juego, y eso es oto&lt;span style=&quot;font-size:100%;&quot;&gt;ño, muy probablemente en Noviembre, ya que ese es el mes en el cual Halo 1, y 2 salieron. Esta noticia no me sorprendió si no que me reafirmo lo que yo ya sospechaba y posiblemente mucho de ustedes también. También ya empezaron a sacar &#39;posters de publicidad&#39;  lo de Bung&lt;/span&gt;&lt;span style=&quot;font-size:100%;&quot;&gt;ie. Y sobre el Halo 3 Beta ya solo queda una oportunidad y esa es comprar el juego de Crackdown, el cual ya jugué el demo y me pareció divertido como para una media hora mas o menos. Les recuerdo no todos los juegos de Crackdown traen el Beta incluido solo los que lo indiquen y otra cosa el Beta TODAVÍA no sale solo el Crackdown, el beta saldrá en primavera y por lo leíd&lt;/span&gt;&lt;span style=&quot;font-size:100%;&quot;&gt;o en el Weekly Update de Bungie hasta fines de primavera. Una vez que salga el Beta solo metes tu CD de Crackdown, te vas a la sección de downloads y lo bajas y desde el Crackdown lo tendrás que jugar. Bueno los dejo con la publicidad del Halo 3 y la versión de Mister Chief:&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;http://www.bungie.net/images/news/inlineimages/H3smaller_H3-Teaser_vertical.jpg&quot;&gt;&lt;img style=&quot;margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px;&quot; src=&quot;http://www.bungie.net/images/news/inlineimages/H3smaller_H3-Teaser_vertical.jpg&quot; alt=&quot;&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;http://www.bungie.net/images/news/inlineimages/MisterRuined.jpg&quot;&gt;&lt;img style=&quot;margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px;&quot; src=&quot;http://www.bungie.net/images/news/inlineimages/MisterRuined.jpg&quot; alt=&quot;&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;</content><link rel='replies' type='application/atom+xml' href='http://iztari.blogspot.com/feeds/4814754783127475677/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://iztari.blogspot.com/2007/02/halo-3-update.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2777498175171136686/posts/default/4814754783127475677'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2777498175171136686/posts/default/4814754783127475677'/><link rel='alternate' type='text/html' href='http://iztari.blogspot.com/2007/02/halo-3-update.html' title='Halo 3 Update'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/04882490885748178162</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>