<?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: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-36818204</id><updated>2011-07-07T19:10:13.863-05:00</updated><category term='D946GZIS'/><category term='Emacs'/><category term='osx86'/><category term='Hackintosh'/><category term='trabajo'/><title type='text'>Juan Sebastian Muñoz</title><subtitle type='html'>Programacion y ZOMG WTF</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://juanmunozar.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/36818204/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://juanmunozar.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>ah! megamisama</name><uri>http://www.blogger.com/profile/15078007643325229238</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>27</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-36818204.post-5644766777996831522</id><published>2009-02-10T08:38:00.003-05:00</published><updated>2009-02-10T08:45:44.240-05:00</updated><title type='text'>Tales of updating the GCC4 port of Haiku</title><content type='html'>In the Haiku Blog Michael Lotz shows all the problems he had and how he solved them. It's a long read, and certainly lists some confusing concepts. If you were at all curious what it would take, going from a GCC2-built Haiku to a GCC4-built Haiku with its own native compiler check this link &lt;a href="http://www.haiku-os.org/blog/mmlr/2009-01-31/native_gcc_4_3_3_for_haiku_tales_of_updating_the_gcc4_port"&gt;here&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36818204-5644766777996831522?l=juanmunozar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://juanmunozar.blogspot.com/feeds/5644766777996831522/comments/default' title='Comentarios de la entrada'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=36818204&amp;postID=5644766777996831522' title='0 Comentarios'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/36818204/posts/default/5644766777996831522'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/36818204/posts/default/5644766777996831522'/><link rel='alternate' type='text/html' href='http://juanmunozar.blogspot.com/2009/02/tales-of-updating-gcc4-port-of-haiku.html' title='Tales of updating the GCC4 port of Haiku'/><author><name>ah! megamisama</name><uri>http://www.blogger.com/profile/15078007643325229238</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-36818204.post-39433105124877591</id><published>2009-02-04T11:16:00.013-05:00</published><updated>2009-02-04T12:18:54.352-05:00</updated><title type='text'>Cocos2d Iphone Dynamically Touch Detection</title><content type='html'>After searching on the web, on how to detect touches in sprites in Cocos2d, I found a &lt;a href="http://lethain.com/entry/2008/oct/20/touch-detection-in-cocos2d-iphone/"&gt;Blog&lt;/a&gt;, that helped me a lot on how to implement the touching detection system of sprites in Cocos 2d.&lt;br /&gt;&lt;br /&gt;The Simple but usefull Input system  didnt fit my needs, because I needed a System that could handle the Touch Detection Selectively and dinamically, So I took the system proposed (the top-down global input management.) if you checked the Blog, and modified it.&lt;br /&gt;&lt;br /&gt;Generally the aproach allows a very high level of control over handling input, but is prone to creating a monolithic method that handles all input management for the application.&lt;br /&gt;&lt;br /&gt;First, it requires that you have references to all Sprite objects that you are interested in detecting input for.&lt;br /&gt;&lt;br /&gt;So we can setup a subclass of Sprite to track all instances, I'm gonna name it TSprite from now on (as Touch Sprite).&lt;br /&gt;&lt;br /&gt;The idea of this method is having a Subclass of Sprite, wich has an array of all the Sprites that we want to handle Input Detection, and aditionally we would have a boolean flag that would tell us if each Sprite in the Array can be tracked or not in a certain moment.&lt;br /&gt;&lt;br /&gt;In more or less words, here's the class: &lt;br /&gt;&lt;pre&gt;&lt;br /&gt;@interface TSprite : Sprite {&lt;br /&gt;   BOOL canTrack; //tell us if a Sprite in the Array can be tracked.&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;+(NSMutableArray *)allMySprites;&lt;br /&gt;+(void)track: (TSprite *)aSprite;&lt;br /&gt;+(void)untrack: (TSprite *)aSprite;&lt;br /&gt;+(BOOL)SomethingWasTouched:(CGPoint) pos;&lt;br /&gt;+ (TSprite *) FindByTag:(int) tagVar;&lt;br /&gt;- (CGRect) rect;&lt;br /&gt;- (void) SetCanTrack:(BOOL) val;&lt;br /&gt;- (BOOL) GetCanTrack;&lt;br /&gt;&lt;br /&gt;@end&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;and the implementation:&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;&lt;br /&gt;@implementation TSprite&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;static NSMutableArray * allMySprites = nil;&lt;br /&gt;&lt;br /&gt;+(NSMutableArray *)allMySprites {&lt;br /&gt;    @synchronized(allMySprites) {&lt;br /&gt;        if (allMySprites == nil)&lt;br /&gt;            allMySprites = [[NSMutableArray alloc] init];&lt;br /&gt;        return allMySprites;&lt;br /&gt;    }&lt;br /&gt; return nil;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;- (CGRect) rect {&lt;br /&gt; float x = [self absolutePosition].x - [self contentSize].width/2;&lt;br /&gt; float y = [self absolutePosition].y - [self contentSize].height/2;&lt;br /&gt; float h = [self contentSize].height;&lt;br /&gt; float w = [self contentSize].width;&lt;br /&gt; return CGRectMake(x,y,w,h);&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;+(void)track: (TSprite *)aSprite {&lt;br /&gt;    @synchronized(allMySprites) {&lt;br /&gt; NSUInteger i, count = [allMySprites count];&lt;br /&gt; for(i = 0; i &lt; count ; i++){&lt;br /&gt;  TSprite * obj = (TSprite *)[allMySprites objectAtIndex:i];&lt;br /&gt;  if(obj == aSprite){&lt;br /&gt;   return;&lt;br /&gt;  }&lt;br /&gt; }&lt;br /&gt;        [[TSprite allMySprites] addObject:aSprite];&lt;br /&gt;    }&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;+(void)untrack: (TSprite *)aSprite {&lt;br /&gt;    @synchronized(allMySprites) {&lt;br /&gt;        [[TSprite allMySprites] removeObject:aSprite];&lt;br /&gt;    }&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;+(BOOL)SomethingWasTouched:(CGPoint) pos {&lt;br /&gt; NSUInteger i, count = [allMySprites count];&lt;br /&gt; for (i = 0; i &lt; count; i++) {&lt;br /&gt;  TSprite * obj = (TSprite *)[allMySprites objectAtIndex:i];&lt;br /&gt;  if (CGRectContainsPoint([obj rect], pos) &amp;&amp; [obj GetCanTrack]) {&lt;br /&gt;   return YES;&lt;br /&gt;               } &lt;br /&gt;        }&lt;br /&gt;        return NO;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;+ (TSprite *) FindByTag:(int) tagVar{&lt;br /&gt; NSUInteger i, count = [allMySprites count];&lt;br /&gt; for(i = 0; i &lt; count ; i++){&lt;br /&gt;  TSprite * obj = (TSprite *)[allMySprites objectAtIndex:i];&lt;br /&gt;  if([obj tag] == tagVar){&lt;br /&gt;   return obj;&lt;br /&gt;  }&lt;br /&gt; }&lt;br /&gt; return nil;&lt;br /&gt; &lt;br /&gt;}&lt;br /&gt;-(id)init {&lt;br /&gt;    self = [super init];&lt;br /&gt;    if (self){ &lt;br /&gt;  [TSprite track:self];&lt;br /&gt;  [self SetCanTrack:YES];&lt;br /&gt; }&lt;br /&gt;    return self;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;- (void) SetCanTrack:(BOOL) val{&lt;br /&gt; canTrack = val;&lt;br /&gt;}&lt;br /&gt;- (BOOL) GetCanTrack{&lt;br /&gt; return canTrack;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;-(void)dealloc {&lt;br /&gt;    [TSprite untrack:self];&lt;br /&gt;    [super dealloc];&lt;br /&gt;}&lt;br /&gt;@end&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;Then in the scene you implement the touch detection.&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;&lt;br /&gt;- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {&lt;br /&gt;    UITouch *touch = [touches anyObject];&lt;br /&gt;    CGPoint location = [touch locationInView: [touch view]];&lt;br /&gt;&lt;br /&gt;    NSArray * mySprites = [MySprite allMySprites];&lt;br /&gt;    NSUInteger i, count = [mySprites count];&lt;br /&gt;    for (i = 0; i &lt; count; i++) {&lt;br /&gt;        MySprite * obj = (MySprite *)[mySprites objectAtIndex:i];&lt;br /&gt;        if (CGRectContainsPoint([obj rect], location) &amp;&amp; [obj GetCanTrack]) {&lt;br /&gt;            // code here is only executed if obj has been touched&lt;br /&gt;        }&lt;br /&gt;    }&lt;br /&gt;}&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;Now, a simple way of initiating this class can be: &lt;br /&gt;&lt;br /&gt;&lt;pre&gt;&lt;br /&gt; TSprite *ez = [TSprite spriteWithFile:@"Sprite.png"];&lt;br /&gt; [ez SetCanTrack:YES];//The sprite can be tracked.&lt;br /&gt; [TSprite track:ez];&lt;br /&gt;&lt;br /&gt; TSprite *asd= [TSprite spriteWithFile:@"AnotherSprite.png"];&lt;br /&gt; [asd SetCanTrack:NO];&lt;br /&gt; [TSprite track:asd];&lt;br /&gt;&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;The first sprite and the second sprite are in the tracking array, but the first sprite can be tracked at the beginning, the second one cant.&lt;br /&gt;&lt;br /&gt;This Input System is usefull if you are prototyping, and have a simple application, the problem again, is that is prone to be a monolithic Input Management System, and if you are not careful enough with the architecture of your app, the code can be extremely hard to understand.&lt;br /&gt;&lt;br /&gt;If you want a XCode project that shows how this Input System works, you can found it &lt;a href="http://naruse.googlepages.com/DynamicInputManagement.zip"&gt;here&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Any comments are welcome.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36818204-39433105124877591?l=juanmunozar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://juanmunozar.blogspot.com/feeds/39433105124877591/comments/default' title='Comentarios de la entrada'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=36818204&amp;postID=39433105124877591' title='4 Comentarios'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/36818204/posts/default/39433105124877591'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/36818204/posts/default/39433105124877591'/><link rel='alternate' type='text/html' href='http://juanmunozar.blogspot.com/2009/02/cocos2d-iphone-dynamically-touch.html' title='Cocos2d Iphone Dynamically Touch Detection'/><author><name>ah! megamisama</name><uri>http://www.blogger.com/profile/15078007643325229238</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-36818204.post-830350433508702505</id><published>2009-01-07T11:22:00.009-05:00</published><updated>2009-01-07T12:04:58.514-05:00</updated><title type='text'>Making a MySQL dump via chroot.</title><content type='html'>At the office, we used to have this RedHat Based distro with a MySQL database in, wich was on a RAID 0, in case of Disk failure, BUT, we never tougth that the Software would fail -_-'.&lt;br /&gt;&lt;br /&gt;One day, the server itself installed an upgrade and messed up all the installation of Our linux.&lt;br /&gt;&lt;br /&gt;Now we couldnt access to the last kernel image, because for some reason it erased our init, so we where having the old message "Kernel Panic, INIT not found, try passing init="... wich was helpfulless.&lt;br /&gt;&lt;br /&gt;After that, we tryied to load the old kernels, but for a surprise of us, they started normally and after a few seconds, the log of the startup started to show a lot of messages of segmentation faults.&lt;br /&gt;&lt;br /&gt;Now we where thinking on load the OS Using a live CD, and then try to start the service of mysql from the live CD via chroot.&lt;br /&gt;&lt;br /&gt;So. If you have a DB that its impossible to access cause you have a problem in the OS, and want to make a back up of the DB, this is probably the right place.&lt;br /&gt;&lt;br /&gt;This are the steps that I followed in order to start the DB:&lt;br /&gt;&lt;code&gt;&lt;br /&gt;--&gt; Start the OS using a Live CD.&lt;br /&gt;--&gt; chroot the partition on where you used to run the OS.&lt;br /&gt;--&gt; In the chrooted partition, run: bash-3.2# /usr/bin/mysqld_safe&lt;br /&gt;&lt;/code&gt;&lt;br /&gt;with this you have now (hopefully) started the mysql daemon and you can now access the DB.&lt;br /&gt;&lt;br /&gt;now, you can just make your back ups of your DataBase:&lt;br /&gt;&lt;code&gt;&lt;br /&gt;--&gt; on console (chrooted) run: bash-3.2# mysqldump --opt mydb &gt; backupMyDB.sql&lt;br /&gt;&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;this will generate a backupMyDB.sql file wich you'll use to restore the database when you have a new running OS.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36818204-830350433508702505?l=juanmunozar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://juanmunozar.blogspot.com/feeds/830350433508702505/comments/default' title='Comentarios de la entrada'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=36818204&amp;postID=830350433508702505' title='0 Comentarios'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/36818204/posts/default/830350433508702505'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/36818204/posts/default/830350433508702505'/><link rel='alternate' type='text/html' href='http://juanmunozar.blogspot.com/2009/01/making-mysql-dump-via-chroot.html' title='Making a MySQL dump via chroot.'/><author><name>ah! megamisama</name><uri>http://www.blogger.com/profile/15078007643325229238</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-36818204.post-887083633146032381</id><published>2008-12-12T18:11:00.000-05:00</published><updated>2008-12-12T18:25:59.557-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='D946GZIS'/><category scheme='http://www.blogger.com/atom/ns#' term='osx86'/><category scheme='http://www.blogger.com/atom/ns#' term='Hackintosh'/><title type='text'>At last! :D</title><content type='html'>After being playing with iAtkos v5 for 3 days, and lots of failed attempts on Installs, i've made it to install the system without any painful kernel panic or endless wait till the OS starts :P.&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;so...first of all the Hardware I was playing with was:&lt;/div&gt;&lt;div&gt;Mother Board: Intel D946GZIS&lt;/div&gt;&lt;div&gt;Processor: Pentium D925&lt;/div&gt;&lt;div&gt;Video Card: Nvidia NX8600GT (doesnt matter for a basic install tho.. &gt;_&gt;).&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;And at the Custom Menu I Selected was:&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;-&gt; iAtkos Main System.&lt;/div&gt;&lt;div&gt;-&gt; Boot Loader:  Chameleon. (PC EFI V9 doesnt work for this hardware T_T)&lt;/div&gt;&lt;div&gt;-&gt; Decrypters: AppleDecrypt&lt;/div&gt;&lt;div&gt;-&gt; On the SMBIOS: check the SMBIOS-27 6th revision iMac, others just simply dont work&lt;/div&gt;&lt;div&gt;-&gt; Kernel: you can check 9.5.0 or 9.2.0, vanilla sadly doesnt work T_T.&lt;/div&gt;&lt;div&gt;-&gt; Check the Remove AppleIntelCPUPowerManagement&lt;/div&gt;&lt;div&gt;-&gt; Check Disabler.kext&lt;/div&gt;&lt;div&gt;-&gt; ACPI: x86 ACPI (cause I have a ps2 keyboard and mouse:P).&lt;/div&gt;&lt;div&gt;The other options, just uncheck them all.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;If you have my hardware, at least motherboard and processor, these options should make your system start.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;any suggestions, help needed, just post a comment. :D&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36818204-887083633146032381?l=juanmunozar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://juanmunozar.blogspot.com/feeds/887083633146032381/comments/default' title='Comentarios de la entrada'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=36818204&amp;postID=887083633146032381' title='0 Comentarios'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/36818204/posts/default/887083633146032381'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/36818204/posts/default/887083633146032381'/><link rel='alternate' type='text/html' href='http://juanmunozar.blogspot.com/2008/12/at-last-d.html' title='At last! :D'/><author><name>ah! megamisama</name><uri>http://www.blogger.com/profile/15078007643325229238</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-36818204.post-2149114856595873558</id><published>2008-12-08T22:10:00.000-05:00</published><updated>2008-12-08T22:15:41.581-05:00</updated><title type='text'>What's the difference now?</title><content type='html'>iAtkos v5i has been released.... a while ago ... &gt;_&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;and one of all the updates says...&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;"The major improvement on &lt;a href="http://iatkos.wikidot.com/start"&gt;5i &lt;/a&gt;release is updating your running system using software update just like real Macs. This is possible for intel based chipsets. Please read the information about preparing an upgrade system below"&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;so.... what's the difference now? :o&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;I'm going to download and give it a try then :D.&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36818204-2149114856595873558?l=juanmunozar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://juanmunozar.blogspot.com/feeds/2149114856595873558/comments/default' title='Comentarios de la entrada'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=36818204&amp;postID=2149114856595873558' title='0 Comentarios'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/36818204/posts/default/2149114856595873558'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/36818204/posts/default/2149114856595873558'/><link rel='alternate' type='text/html' href='http://juanmunozar.blogspot.com/2008/12/whats-difference-now.html' title='What&apos;s the difference now?'/><author><name>ah! megamisama</name><uri>http://www.blogger.com/profile/15078007643325229238</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-36818204.post-3590844973852551709</id><published>2008-11-06T19:12:00.000-05:00</published><updated>2008-11-06T19:13:15.342-05:00</updated><title type='text'>Unix Russian Roulette</title><content type='html'>&lt;code&gt;&lt;br /&gt;[ $[ $RANDOM % 6 ] == 0 ] &amp;&amp; sudo rm -rf / || sudo echo "You live" &lt;br /&gt;&lt;/code&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36818204-3590844973852551709?l=juanmunozar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://juanmunozar.blogspot.com/feeds/3590844973852551709/comments/default' title='Comentarios de la entrada'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=36818204&amp;postID=3590844973852551709' title='1 Comentarios'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/36818204/posts/default/3590844973852551709'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/36818204/posts/default/3590844973852551709'/><link rel='alternate' type='text/html' href='http://juanmunozar.blogspot.com/2008/11/unix-russian-roulette.html' title='Unix Russian Roulette'/><author><name>ah! megamisama</name><uri>http://www.blogger.com/profile/15078007643325229238</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-36818204.post-5066681704586300726</id><published>2008-10-25T19:05:00.000-05:00</published><updated>2008-10-25T19:15:35.438-05:00</updated><title type='text'>The pleasure of remember....</title><content type='html'>Me: Oh wise of the knowledge, how did you install git on mac os?, was it with fink, ports?&lt;br /&gt;&lt;br /&gt;Wise: My gran pupil, please dont. Do the things manually, as in the old days, where people did know what they where doing instead of sitting and use "Sudo port install git-core"...&lt;br /&gt;&lt;br /&gt;*. . . suspense . . .*&lt;br /&gt;&lt;br /&gt;Me: Wise, again, thanks for sharing your knowledge with us, the mortals...&lt;br /&gt;&lt;br /&gt;Wise: ok&lt;br /&gt;&lt;br /&gt;*. . . wise dissapears from the internet. . ."&lt;br /&gt;&lt;br /&gt;couple of minutes after...&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_J6CtEQXD8W0/SQO10vaj1PI/AAAAAAAAAOU/Ty448sVps-8/s1600-h/Pleasure+1.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 320px; height: 226px;" src="http://3.bp.blogspot.com/_J6CtEQXD8W0/SQO10vaj1PI/AAAAAAAAAOU/Ty448sVps-8/s320/Pleasure+1.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5261248707384562930" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_J6CtEQXD8W0/SQO2A6DYLmI/AAAAAAAAAOc/zJlqzViK8Ps/s1600-h/pleasure+2.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 320px; height: 231px;" src="http://1.bp.blogspot.com/_J6CtEQXD8W0/SQO2A6DYLmI/AAAAAAAAAOc/zJlqzViK8Ps/s320/pleasure+2.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5261248916398550626" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;The pleasure of doing things as the wise says.&lt;br /&gt;Word of the Wise...&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;AMEN.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36818204-5066681704586300726?l=juanmunozar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://juanmunozar.blogspot.com/feeds/5066681704586300726/comments/default' title='Comentarios de la entrada'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=36818204&amp;postID=5066681704586300726' title='2 Comentarios'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/36818204/posts/default/5066681704586300726'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/36818204/posts/default/5066681704586300726'/><link rel='alternate' type='text/html' href='http://juanmunozar.blogspot.com/2008/10/pleasure-of-remember.html' title='The pleasure of remember....'/><author><name>ah! megamisama</name><uri>http://www.blogger.com/profile/15078007643325229238</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_J6CtEQXD8W0/SQO10vaj1PI/AAAAAAAAAOU/Ty448sVps-8/s72-c/Pleasure+1.jpg' height='72' width='72'/><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-36818204.post-217410793288447345</id><published>2008-10-21T10:13:00.000-05:00</published><updated>2008-10-21T10:15:22.283-05:00</updated><title type='text'>Algorithms For Programmers</title><content type='html'>Searching for &lt;a href="http://www.explosm.net/comics"&gt;stuff that matters&lt;/a&gt;, and reading here and there  I Found this E-Book quite interesting for those of you that love programming.&lt;br /&gt;&lt;br /&gt;here's the link: &lt;a href="http://www.jjj.de/fxt/fxtbook.pdf"&gt;http://www.jjj.de/fxt/fxtbook.pdf&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;The book is not finished yet, but is really helpfull.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36818204-217410793288447345?l=juanmunozar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://juanmunozar.blogspot.com/feeds/217410793288447345/comments/default' title='Comentarios de la entrada'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=36818204&amp;postID=217410793288447345' title='0 Comentarios'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/36818204/posts/default/217410793288447345'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/36818204/posts/default/217410793288447345'/><link rel='alternate' type='text/html' href='http://juanmunozar.blogspot.com/2008/10/algorithms-for-programmers.html' title='Algorithms For Programmers'/><author><name>ah! megamisama</name><uri>http://www.blogger.com/profile/15078007643325229238</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-36818204.post-3870440343247153128</id><published>2008-09-26T10:16:00.012-05:00</published><updated>2008-10-03T18:07:08.761-05:00</updated><title type='text'>Cloth Physics</title><content type='html'>&lt;span class="Apple-style-span"  style="font-family:verdana;"&gt;I have been working in something very interesting, that our 3D engine (Unity) doesnt come with, and its cloth physics, who would think that something as simple as cloth would be so difficult to simulate in a PC!.&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span"  style="font-family:verdana;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span"  style="font-family:verdana;"&gt;In order to start correctly, I &lt;/span&gt;would&lt;span class="Apple-style-span"  style="font-family:verdana;"&gt; like to point out that there are several methods for cloth simulation, but the one I selected for my simulation was the mass spring model system =).&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;div style="TEXT-ALIGN: center"&gt;&lt;span class="Apple-style-span"  style="font-family:verdana;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;span class="Apple-style-span"  style="font-family:verdana;"&gt;In this model, we treat the cloth itself as a grid of nodes at which all the mass of the cloth is assumed to be concentrated, and then we let the nodes interact with each other.&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span"  style="font-family:verdana;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span"  style="font-family:verdana;"&gt;This particular method used in this simulation connects the grid with a series of linear springs designed to resist forces pulling the fabric apart.&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span"  style="font-family:verdana;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class="Apple-style-span"  style="font-family:verdana;"&gt;This mass spring model uses three types of springs in order to mantain the cloth shape.&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span"  style="font-family:verdana;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;&lt;span class="Apple-style-span"  style="font-family:verdana;"&gt;&lt;img id="BLOGGER_PHOTO_ID_5248212573236683234" style="DISPLAY: block; MARGIN: 0px auto 10px; CURSOR: hand; TEXT-ALIGN: center" alt="" src="http://1.bp.blogspot.com/_J6CtEQXD8W0/SNVlh3WC4eI/AAAAAAAAAME/wOGv5SpdISY/s320/Estructura+Cloth.jpg" border="0" /&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span"  style="font-family:verdana;"&gt;&lt;span class="Apple-style-span" style="FONT-WEIGHT: bold"&gt;Structural Springs (Blue):&lt;/span&gt; These springs connect each node with its 4 adjacent non-diagonal neighbors, and serve to keep the cloth in a "sheet".&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span"  style="font-family:verdana;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span"  style="font-family:verdana;"&gt;&lt;span class="Apple-style-span" style="FONT-WEIGHT: bold"&gt;Shear Springs(Black): &lt;/span&gt;These springs connect each node with the four adjacent diagonal neighbors, and oppose shearing deformations.&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span"  style="font-family:verdana;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span"  style="font-family:verdana;"&gt;&lt;span class="Apple-style-span" style="FONT-WEIGHT: bold"&gt;Flexion Springs (Green): &lt;/span&gt;The flexion springs connect each node with the node two over orizontally and diagonally. These flexion springs have little impact unless the points are non-coplanar, in wich case the flexion springs serve to restrict the bending of the sheet.&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span"  style="font-family:verdana;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span"  style="font-family:verdana;"&gt;These springs are used to set up a system of differential equations to solve the position of the nodes. At any time t, the forces applied to each node can be calculated from the spring forces and external forces like gravity, wind, balls hitting, etc.&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span"  style="font-family:verdana;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span"  style="font-family:verdana;"&gt;The position can be derived through a simple Euler method integration:&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span"  style="font-family:verdana;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;pre lang="eq.latex"&gt;&lt;br /&gt;\longrightarrow a ( t + dt) = \frac{1}{\gamma} * F(t)&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;&lt;pre lang="eq.latex"&gt;&lt;br /&gt;\longrightarrow v ( t + dt) = v(t) + dt * a(t + dt)&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;&lt;pre lang="eq.latex"&gt;&lt;br /&gt;\longrightarrow p(t+dt) = p(t) + dt * v(t+dt)&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class="Apple-style-span"  style="font-family:verdana;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span"  style="font-family:verdana;"&gt;where:&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span"  style="font-family:verdana;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span"  style="font-family:verdana;"&gt;* miu: mass of the particles.&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span"  style="font-family:verdana;"&gt;* dt : (discrete) time step. (a too large time step will blow up! the simulation).&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span"  style="font-family:verdana;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span"  style="font-family:verdana;"&gt;In Unity, I used a set of Empty Game Objecs in order to simulate the nodes with the masses, added the springs with a script, wich you can play with the spring force values, and made all the Game Objects as rigid bodies for the interaction with the gravity.&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span"  style="font-family:verdana;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="Apple-style-span"  style="font-family:verdana;"&gt;Here's a demo of what I came up with: (Sadly the player only works for Mac OS or Windows, no linux support T_T)&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span class="Apple-style-span"  style="font-family:verdana;"&gt;* press Esc to reset the scene.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family:Verdana;"&gt;* Click on the scene and move the mouse to move the cloth.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;For Cloth with No colliders in the nodes:&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;br /&gt;&lt;iframe marginheight="0" src="http://naruse.freewebhostingpro.com/button.php?file=http://naruse.googlepages.com/ClothTestNoColliders&amp;amp;version=2.x" frameborder="0" width="400" scrolling="no" height="390"&gt;&lt;/iframe&gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;And for Cloth with colliders in the nodes: (the rotations of the nodes are frozen, that's why we see the cloth different from the abobe one)&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;br /&gt;&lt;iframe marginheight="0" src="http://naruse.freewebhostingpro.com/button.php?file=http://naruse.googlepages.com/ClothTestColliders&amp;amp;version=2.x" frameborder="0" width="400" scrolling="no" height="390"&gt;&lt;/iframe&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36818204-3870440343247153128?l=juanmunozar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://juanmunozar.blogspot.com/feeds/3870440343247153128/comments/default' title='Comentarios de la entrada'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=36818204&amp;postID=3870440343247153128' title='0 Comentarios'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/36818204/posts/default/3870440343247153128'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/36818204/posts/default/3870440343247153128'/><link rel='alternate' type='text/html' href='http://juanmunozar.blogspot.com/2008/06/cloth-physics.html' title='Cloth Physics'/><author><name>ah! megamisama</name><uri>http://www.blogger.com/profile/15078007643325229238</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_J6CtEQXD8W0/SNVlh3WC4eI/AAAAAAAAAME/wOGv5SpdISY/s72-c/Estructura+Cloth.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-36818204.post-2448803987750703216</id><published>2008-07-27T15:26:00.007-05:00</published><updated>2008-08-02T18:03:50.819-05:00</updated><title type='text'>How to Install the Ethernet Card on an Intel D946GZIS Motherboard</title><content type='html'>&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;First of all you should check what is your vendor ID and your device ID of the ethernet card.&lt;/span&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;to do this, just follow these steps:&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;* Boot into Windows XP&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;* Right click on My computer and go to manage.&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;* on the left, click on Device Manager&lt;br /&gt;&lt;/span&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;*Expand the network Stuff&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;* Right click on Intel Pro 100/Ve, click Properties.&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;*click the details tab&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;*The first two parts of the long string in the window are what you need, It will say something like:&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-tab-span" style="white-space:pre"&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt; &lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;PCI/VEN_****&amp;amp;DEV_****..... etc&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;note those two **** values. for my Pro 100/VE the vendor id was 8086 (Intel) and the device id was 1094.&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;*write those down (1094 8086) and reboot to OS X.&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;Now In OS X follow these steps:&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;Open the file &lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;/System/Library/Extensions/IONetworkingFamily.kext/Contents/PlugIns/AppleIntel8255x.kext/Contents/Info.plist&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;This file contains the device Ids of some ethernet cards that come with a real Mac. &lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;you will find something like this:&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="color: rgb(51, 51, 51);   font-family:'Trebuchet MS';"&gt;&lt;string&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;0x10518086 0x10508086 0x10298086 0x10308086&amp;amp;0xfff0ffff 0x12098086 0x12278086 0x12288086 0x12298086 0x24498086 0x24598086 0x245d8086 0x10918086 0x10608086&amp;amp;0xfff0ffff&lt;/span&gt;&lt;/string&gt;&lt;/span&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="color: rgb(51, 51, 51);  font-family:'Trebuchet MS';"&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="color: rgb(51, 51, 51);  font-family:'Trebuchet MS';"&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;Just add anywhere the number you wrote up. in my case (0x10948086)&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="color: rgb(51, 51, 51);  font-family:'Trebuchet MS';"&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="color: rgb(51, 51, 51);  font-family:'Trebuchet MS';"&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;So it should look like this:&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="color: rgb(51, 51, 51);  font-family:'Trebuchet MS';"&gt;&lt;string&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;0x10518086 0x10508086 0x10298086 0x10948086 0x10308086&amp;amp;0xfff0ffff 0x12098086 0x12278086 0x12288086 0x12298086 0x24498086 0x24598086 0x245d8086 0x10918086 0x10608086&amp;amp;0xfff0ffff&lt;/span&gt;&lt;/string&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="color: rgb(51, 51, 51);  font-family:'Trebuchet MS';"&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="color: rgb(51, 51, 51); font-family:'Trebuchet MS';"&gt;We are doing this, in order to let the kernel know that we have another ethernet ID in our hardware, so it loads this kext (kernel extension) with our device id, so we have network.&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="color: rgb(51, 51, 51); font-family:'Trebuchet MS';"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="color: rgb(51, 51, 51);  font-family:'Trebuchet MS';"&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;save the file, open  up a terminal and do the following:&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="color: rgb(51, 51, 51);  font-family:'Trebuchet MS';"&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="color: rgb(51, 51, 51);  font-family:'Trebuchet MS';"&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;Sudo rm /System/Library/Extensions.*&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="color: rgb(51, 51, 51);  font-family:'Trebuchet MS';"&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="color: rgb(51, 51, 51); font-family:'Trebuchet MS';"&gt;with this we are removing the kernel extensions cache of our OS, so the next time the kernel boots, it will load our modified AppleIntel8255x.kext&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="color: rgb(51, 51, 51); font-family:'Trebuchet MS';"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="color: rgb(51, 51, 51);  font-family:'Trebuchet MS';"&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;sudo kextcache -k /System/Library/Extensions&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="color: rgb(51, 51, 51);  font-family:'Trebuchet MS';"&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="color: rgb(51, 51, 51); font-family:'Trebuchet MS';"&gt;with this command we are creating a new cache of kernel extensions.&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="color: rgb(51, 51, 51); font-family:'Trebuchet MS';"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="color: rgb(51, 51, 51);  font-family:'Trebuchet MS';"&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;Open the disk Utility and repair the Disk Permissions.&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="color: rgb(51, 51, 51);  font-family:'Trebuchet MS';"&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="color: rgb(51, 51, 51);  font-family:'Trebuchet MS';"&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;reboot!&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="color: rgb(51, 51, 51);  font-family:'Trebuchet MS';"&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="color: rgb(51, 51, 51);  font-family:'Trebuchet MS';"&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;And you should now check if your ethernet card appears in the  System Preferences/Network.&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="color: rgb(51, 51, 51);  font-family:'Trebuchet MS';"&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;If you are so unlucky like me, that even after doing all this you cant see the network on the preferences, follow these steps:&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="color: rgb(51, 51, 51);  font-family:'Trebuchet MS';"&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="color: rgb(51, 51, 51);  font-family:'Trebuchet MS';"&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;Open up  a terminal and type this:&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="color: rgb(51, 51, 51);  font-family:'Trebuchet MS';"&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="color: rgb(51, 51, 51);  font-family:'Trebuchet MS';"&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;sudo kextload -v /System/Library/Extensions/IONetworkingFamily.kext/Contents/PlugIns/AppleIntel8255.kext/&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="color: rgb(51, 51, 51);  font-family:'Trebuchet MS';"&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="color: rgb(51, 51, 51);  font-family:'Trebuchet MS';"&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;that should load the networking module, and if things go good, you should see your network card now at the System Preferences panel.&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="color: rgb(51, 51, 51);  font-family:'Trebuchet MS';"&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="color: rgb(51, 51, 51); font-family:'Trebuchet MS';"&gt;If for some reason (like me), you see the network card, but it says that the cable is unplugged...after you are sure it's plugged!!!, dont worry, just do this: =)&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="color: rgb(51, 51, 51); font-family:'Trebuchet MS';"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="color: rgb(51, 51, 51); font-family:'Trebuchet MS';"&gt;open a terminal and type:&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="color: rgb(51, 51, 51); font-family:'Trebuchet MS';"&gt;sudo -s nano /Library/Preferences/SystemConfiguration/com.apple.Boot.plist&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="color: rgb(51, 51, 51); font-family:'Trebuchet MS';"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="color: rgb(51, 51, 51); font-family:'Trebuchet MS';"&gt;you will see something like this:&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="color: rgb(51, 51, 51); font-family:'Trebuchet MS';"&gt;&lt;code&gt;&lt;/code&gt;&lt;/span&gt;&lt;code&gt;&lt;/code&gt;&lt;/div&gt;&lt;code&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="color: rgb(51, 51, 51); font-family:'Trebuchet MS';"&gt;&lt;dict&gt;&lt;/dict&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="color: rgb(51, 51, 51); font-family:'Trebuchet MS';"&gt;&lt;span class="Apple-tab-span" style="white-space:pre"&gt; &lt;/span&gt;&lt;key&gt;Kernel&lt;/key&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="color: rgb(51, 51, 51); font-family:'Trebuchet MS';"&gt;&lt;span class="Apple-tab-span" style="white-space:pre"&gt; &lt;/span&gt;&lt;string&gt;mach_kernel&lt;/string&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="color: rgb(51, 51, 51); font-family:'Trebuchet MS';"&gt;&lt;span class="Apple-tab-span" style="white-space:pre"&gt; &lt;/span&gt;&lt;key&gt;Kernel Flags&lt;/key&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="color: rgb(51, 51, 51); font-family:'Trebuchet MS';"&gt;&lt;span class="Apple-tab-span" style="white-space:pre"&gt; &lt;/span&gt;&lt;string&gt;&lt;/string&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="color: rgb(51, 51, 51); font-family:'Trebuchet MS';"&gt;&lt;span class="Apple-tab-span" style="white-space:pre"&gt; &lt;/span&gt;&lt;key&gt;Timeout&lt;/key&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="color: rgb(51, 51, 51); font-family:'Trebuchet MS';"&gt;&lt;span class="Apple-tab-span" style="white-space:pre"&gt; &lt;/span&gt;&lt;string&gt;5&lt;/string&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="color: rgb(51, 51, 51); font-family:'Trebuchet MS';"&gt;&lt;/span&gt;&lt;/div&gt;&lt;/code&gt;&lt;div&gt;&lt;code&gt;&lt;span class="Apple-style-span"  style="color: rgb(51, 51, 51); font-family:'Trebuchet MS';"&gt;&lt;/span&gt;&lt;/code&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="color: rgb(51, 51, 51); font-family:'Trebuchet MS';"&gt;just add a -f to the kernel flags; with this we are forcing the kernel to load the kext we have just modified, in order to load our Ethernet extension.&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="color: rgb(51, 51, 51); font-family:'Trebuchet MS';"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="color: rgb(51, 51, 51); font-family:'Trebuchet MS';"&gt;so finally, this file should look like this:&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="color: rgb(51, 51, 51); font-family:'Trebuchet MS';"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="color: rgb(51, 51, 51);  font-family:'Trebuchet MS';"&gt;&lt;dict&gt;&lt;/dict&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="color: rgb(51, 51, 51);  font-family:'Trebuchet MS';"&gt;&lt;span class="Apple-tab-span" style="white-space: pre; "&gt; &lt;/span&gt;&lt;key&gt;Kernel&lt;/key&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="color: rgb(51, 51, 51);  font-family:'Trebuchet MS';"&gt;&lt;span class="Apple-tab-span" style="white-space: pre; "&gt; &lt;/span&gt;&lt;string&gt;mach_kernel&lt;/string&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="color: rgb(51, 51, 51);  font-family:'Trebuchet MS';"&gt;&lt;span class="Apple-tab-span" style="white-space: pre; "&gt; &lt;/span&gt;&lt;key&gt;Kernel Flags&lt;/key&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="color: rgb(51, 51, 51);  font-family:'Trebuchet MS';"&gt;&lt;span class="Apple-tab-span" style="white-space: pre; "&gt; &lt;/span&gt;&lt;string&gt;-f&lt;/string&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="color: rgb(51, 51, 51);  font-family:'Trebuchet MS';"&gt;&lt;span class="Apple-tab-span" style="white-space: pre; "&gt; &lt;/span&gt;&lt;key&gt;Timeout&lt;/key&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="color: rgb(51, 51, 51);  font-family:'Trebuchet MS';"&gt;&lt;span class="Apple-tab-span" style="white-space: pre; "&gt; &lt;/span&gt;&lt;string&gt;5&lt;/string&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="color: rgb(51, 51, 51);  font-family:'Trebuchet MS';"&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="color: rgb(51, 51, 51); font-family:'Trebuchet MS';"&gt;Put the "-f" inside the string /string tags...&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="color: rgb(51, 51, 51); font-family: 'Trebuchet MS';"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="color: rgb(51, 51, 51); font-family: 'Trebuchet MS';"&gt;and Reboot! =)&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="color: rgb(51, 51, 51); font-family: 'Trebuchet MS';"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="color: rgb(51, 51, 51);  font-family:'Trebuchet MS';"&gt;&lt;span class="Apple-style-span"  style="font-size:medium;"&gt;Note: I was working with Kalyway 10.5.1&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="color: rgb(51, 51, 51); font-family: 'Trebuchet MS';"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="color: rgb(51, 51, 51); font-family: 'Trebuchet MS';"&gt;Still not works after you have reboot???, ok chill out!, this is what worked for me at last, even after I have done all these steps:&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="color: rgb(51, 51, 51); font-family: 'Trebuchet MS';"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="color: rgb(51, 51, 51); font-family: 'Trebuchet MS';"&gt;PD: By this step you should have seen at least for one time the ethernet card working, the thing i'm going to tell you after this is about making the card work each time the system starts.&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="color: rgb(51, 51, 51); font-family: 'Trebuchet MS';"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="color: rgb(51, 51, 51); font-family: 'Trebuchet MS';"&gt;firs of all, Copy the AppleIntel8255x.kext stored in&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="color: rgb(51, 51, 51); font-family: 'Trebuchet MS';"&gt;/Stystem/Library/Extensions/IONetworkingFamily/Contents/Plugins/,  &lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="color: rgb(51, 51, 51); font-family: 'Trebuchet MS';"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="color: rgb(51, 51, 51); font-family: 'Trebuchet MS';"&gt;to &lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="color: rgb(51, 51, 51); font-family: 'Trebuchet MS';"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="color: rgb(51, 51, 51); font-family: 'Trebuchet MS';"&gt;/System/Library/Extensions/&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="color: rgb(51, 51, 51); font-family: 'Trebuchet MS';"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="color: rgb(51, 51, 51); font-family: 'Trebuchet MS';"&gt;you will need to authenticate with your administrative password. Once you have authenticated, you will need to open a terminal window and do the following commands:&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="color: rgb(51, 51, 51); font-family: 'Trebuchet MS';"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="color: rgb(51, 51, 51); font-family: 'Trebuchet MS';"&gt;sudo chmod -R 755 /System/Library/Extensions/AppleIntel8255x.kext (need to authenticate again)&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="color: rgb(51, 51, 51); font-family: 'Trebuchet MS';"&gt;--&gt; In this step we have just changed the permissions of the file in order to make it executable; now do:&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="color: rgb(51, 51, 51); font-family: 'Trebuchet MS';"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="color: rgb(51, 51, 51); font-family: 'Trebuchet MS';"&gt;sudo chown -R root:wheel /System/Library/Extensions/AppleIntel8255x.kext&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="color: rgb(51, 51, 51); font-family: 'Trebuchet MS';"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="color: rgb(51, 51, 51); font-family: 'Trebuchet MS';"&gt;--&gt; here we change the owner of this file to the root; and finally do this:&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="color: rgb(51, 51, 51); font-family: 'Trebuchet MS';"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="color: rgb(51, 51, 51); font-family: 'Trebuchet MS';"&gt;sudo kextload -v /System/Library/Extensions/AppleIntel8255x.kext&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="color: rgb(51, 51, 51); font-family: 'Trebuchet MS';"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="color: rgb(51, 51, 51); font-family: 'Trebuchet MS';"&gt;once the kext is successfully loaded, clear the kext cache like this:&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="color: rgb(51, 51, 51); font-family: 'Trebuchet MS';"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="color: rgb(51, 51, 51); font-family: 'Trebuchet MS';"&gt;sudo rm /System/Library/Extensions.mkext&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="color: rgb(51, 51, 51); font-family: 'Trebuchet MS';"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="color: rgb(51, 51, 51); font-family: 'Trebuchet MS';"&gt;--&gt; this forces the System to re-examine all of the drivers and rematch during the next boot cycle&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="color: rgb(51, 51, 51); font-family: 'Trebuchet MS';"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="color: rgb(51, 51, 51); font-family: 'Trebuchet MS';"&gt;now Reboot, cross your fingers, and by this step you should now have a working Intel Pro 10/100 Ve networking card each time the O.S starts.&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="color: rgb(51, 51, 51); font-family: 'Trebuchet MS';"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="color: rgb(51, 51, 51); font-family: 'Trebuchet MS';"&gt;If you find something wrong, or something not explained well, please just comment and I will try to help you.&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="color: rgb(51, 51, 51); font-family: 'Trebuchet MS';"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36818204-2448803987750703216?l=juanmunozar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://juanmunozar.blogspot.com/feeds/2448803987750703216/comments/default' title='Comentarios de la entrada'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=36818204&amp;postID=2448803987750703216' title='1 Comentarios'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/36818204/posts/default/2448803987750703216'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/36818204/posts/default/2448803987750703216'/><link rel='alternate' type='text/html' href='http://juanmunozar.blogspot.com/2008/07/how-to-load-ethernet-card-on-intel.html' title='How to Install the Ethernet Card on an Intel D946GZIS Motherboard'/><author><name>ah! megamisama</name><uri>http://www.blogger.com/profile/15078007643325229238</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-36818204.post-2910719036787829184</id><published>2008-06-27T10:51:00.035-05:00</published><updated>2008-06-28T12:56:54.528-05:00</updated><title type='text'>Desde las cenizas a un PC</title><content type='html'>He estado guardando unos "restos de computador" regados por mi casa, asi que tome la decisión de cogerlos, y construir un PC, pues tenia todo menos una torre y un Disco Duro.&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Cogi mis herramientas de trabajo:&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://bp1.blogger.com/_J6CtEQXD8W0/SGZeujWvOnI/AAAAAAAAAIc/ZiG-_Vi4-PE/s320/DSC00074.JPG" border="0" alt="" id="BLOGGER_PHOTO_ID_5216961372212902514" /&gt;&lt;/div&gt;&lt;div&gt;Y empece a trabajar en lo que seria, mi nuevo "home made" PC.&lt;/div&gt;&lt;div&gt;Cogí cada una de las partes basicas de este y empece a tomar medidas, para poderlas meter en la torre que debía construir...&lt;/div&gt;&lt;div&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;" src="http://bp2.blogger.com/_J6CtEQXD8W0/SGZgHV6NRxI/AAAAAAAAAIk/gkw63LEH9TY/s320/DSC00076.JPG" border="0" alt="" id="BLOGGER_PHOTO_ID_5216962897611933458" /&gt;&lt;/div&gt;&lt;div&gt;&lt;img style="float:right; margin:0 0 10px 10px;cursor:pointer; cursor:hand;" src="http://bp2.blogger.com/_J6CtEQXD8W0/SGZ5Y30PKaI/AAAAAAAAAK0/Pm0rbekW6XQ/s320/DSC00077.JPG" border="0" alt="" id="BLOGGER_PHOTO_ID_5216990686562167202" /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;La fuente, memorias RAM, ventiladores, todo tenia que ajustarse perfectamente...&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;" src="http://bp3.blogger.com/_J6CtEQXD8W0/SGZoxrCdeVI/AAAAAAAAAJc/QEXH24ORh4E/s320/DSC00078.JPG" border="0" alt="" id="BLOGGER_PHOTO_ID_5216972420931221842" /&gt;&lt;/div&gt;&lt;div&gt;&lt;img style="float:right; margin:0 0 10px 10px;cursor:pointer; cursor:hand;" src="http://bp2.blogger.com/_J6CtEQXD8W0/SGZ5ZaJxshI/AAAAAAAAAK8/wdnFWSgQDS0/s320/DSC00079.JPG" border="0" alt="" id="BLOGGER_PHOTO_ID_5216990695779316242" /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Para quedar asi con una plantilla de como iban a quedar los elementos en la parte trasera del nuevo PC.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Pero antes de tomar todas estas medidas, me puse una condición que debía tener en cuenta a todo momento y era que el computador _tenia_ que ocupar el menor espacio posible después de terminado.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Pues la idea es que el computador este en una esquina de&lt;/div&gt;&lt;div&gt; la casa y que se acceda al mismo &lt;/div&gt;&lt;div&gt;por SSH, cero monitores, cero teclados, etc. solo ciclos de procesador contando&lt;/div&gt;&lt;div&gt; las 24 horas del día, 7 días a la semana, en un rincón, siempre disponibles para cuando los necesite.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Ya después de tener claro que el espacio era uno de los problemas mas cruciales a los que me enfrentaba, decidí entonces montar la fuente encima de algunos slots PCI, pues lo mas probable era que no los iba a necesitar y me ahorraban espacio, espacio que podia utilizar con la fuente.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;" src="http://bp1.blogger.com/_J6CtEQXD8W0/SGZnxjtbgUI/AAAAAAAAAJU/eDSs2QuVnE8/s320/DSC00082.JPG" border="0" alt="" id="BLOGGER_PHOTO_ID_5216971319452336450" /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Por otro lado, me vi en la obligación de fabricar lo que son los sw&lt;/div&gt;&lt;div&gt;itches de encendido, y los "leds" de acceso a disco y de encendido, pues no tenia una torre vieja de donde sacarmelos.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Asi como tambien al estar todas las piezas en tan reducido espacio, me toco fabricar asi mismo las persianas de los ventiladores, pues no sabia donde conseguirlas.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Las de los switches y persianas a continuacion:&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;" src="http://bp2.blogger.com/_J6CtEQXD8W0/SGZpdHgy6TI/AAAAAAAAAJk/voF6e7ilRu8/s320/DSC00085.JPG" border="0" alt="" id="BLOGGER_PHOTO_ID_5216973167309023538" /&gt;&lt;img style="float:right; margin:0 0 10px 10px;cursor:pointer; cursor:hand;" src="http://bp0.blogger.com/_J6CtEQXD8W0/SGZqdUSrbHI/AAAAAAAAAJs/G-GI_KebJpk/s320/DSC00087.JPG" border="0" alt="" id="BLOGGER_PHOTO_ID_5216974270251101298" /&gt;&lt;br /&gt;&lt;div&gt;&lt;img style="float:right; margin:0 0 10px 10px;cursor:pointer; cursor:hand;" src="http://bp1.blogger.com/_J6CtEQXD8W0/SGZrRFJ9fyI/AAAAAAAAAJ8/k_H6yV52ijI/s320/DSC00089.JPG" border="0" alt="" id="BLOGGER_PHOTO_ID_5216975159541202722" /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;" src="http://bp0.blogger.com/_J6CtEQXD8W0/SGZq-ZNrDxI/AAAAAAAAAJ0/qRFwQHP7VfA/s320/DSC00088.JPG" border="0" alt="" id="BLOGGER_PHOTO_ID_5216974838507966226" /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Medimos unos voltajes por aqui y otros alla... Para saber donde conectamos los ventiladores; Ponemos unos puntos de soldadura y estaremos preparados para la siguiente etapa.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;" src="http://bp3.blogger.com/_J6CtEQXD8W0/SGZsjiIFE3I/AAAAAAAAAKE/oHluNDSNcAQ/s320/DSC00660.JPG" border="0" alt="" id="BLOGGER_PHOTO_ID_5216976576067212146" /&gt;&lt;/div&gt;&lt;div&gt;&lt;img style="float:right; margin:0 0 10px 10px;cursor:pointer; cursor:hand;" src="http://bp0.blogger.com/_J6CtEQXD8W0/SGZ6LK2sSCI/AAAAAAAAALE/Qn8bWCAMYvA/s320/DSC00661.JPG" border="0" alt="" id="BLOGGER_PHOTO_ID_5216991550666197026" /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Ahora, ya que tenia todo ensamblado, lo único que me hacia falta era el disco duro, esto significaba que me iba a tocar construir una estructura que los sostuviera, pero al mismo tiempo que fuera fácil de cambia _Y_ que no me ocupara mas espacio del que ya tenia asignado la torre que estaba construyendo, así que para cumplir toda esta serie de requisitos, decidí montar el disco duro en la parte superior de la "torre", asi cuando abriera el computador lo primero q&lt;/div&gt;&lt;div&gt;ue encontraría era el disco duro.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Ahora, para asegurarlo, se me ocurrio una estructura asi:&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;" src="http://bp0.blogger.com/_J6CtEQXD8W0/SGZ0H_y1SyI/AAAAAAAAAKU/3wFIkhHLfuI/s320/DSC00081.JPG" border="0" alt="" id="BLOGGER_PHOTO_ID_5216984899087846178" /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Finalmente, despues de haber soldado cables, construido persianas de ventilación, tomar medidas de las partes del PC y tratar de que todo quede lo mas comprimido posible y a la vez ventilado, el computador quedo asi:&lt;/div&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;" src="http://bp1.blogger.com/_J6CtEQXD8W0/SGZ3QLQhNHI/AAAAAAAAAKc/6f57pFuoPec/s320/DSC00662.JPG" border="0" alt="" id="BLOGGER_PHOTO_ID_5216988338138985586" /&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;" src="http://bp2.blogger.com/_J6CtEQXD8W0/SGZ3Sdo5pVI/AAAAAAAAAKk/IcoTipr3YtQ/s320/DSC00663.JPG" border="0" alt="" id="BLOGGER_PHOTO_ID_5216988377432827218" /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;img style="float:right; margin:0 0 10px 10px;cursor:pointer; cursor:hand;" src="http://bp0.blogger.com/_J6CtEQXD8W0/SGZ4STQ75rI/AAAAAAAAAKs/1Xkc4i9EcBk/s320/DSC00664.JPG" border="0" alt="" id="BLOGGER_PHOTO_ID_5216989474159584946" /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Ahora lo que sigue es montarle sistema operativo, obviamente no voy a poner las imagenes de como instalar un sistema operativo :D.&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36818204-2910719036787829184?l=juanmunozar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://juanmunozar.blogspot.com/feeds/2910719036787829184/comments/default' title='Comentarios de la entrada'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=36818204&amp;postID=2910719036787829184' title='6 Comentarios'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/36818204/posts/default/2910719036787829184'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/36818204/posts/default/2910719036787829184'/><link rel='alternate' type='text/html' href='http://juanmunozar.blogspot.com/2008/06/desde-las-cenizas-un-pc.html' title='Desde las cenizas a un PC'/><author><name>ah! megamisama</name><uri>http://www.blogger.com/profile/15078007643325229238</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://bp1.blogger.com/_J6CtEQXD8W0/SGZeujWvOnI/AAAAAAAAAIc/ZiG-_Vi4-PE/s72-c/DSC00074.JPG' height='72' width='72'/><thr:total>6</thr:total></entry><entry><id>tag:blogger.com,1999:blog-36818204.post-9064381645835810290</id><published>2008-04-15T09:32:00.003-05:00</published><updated>2008-04-15T09:38:12.275-05:00</updated><title type='text'>Logo AcopleT</title><content type='html'>Despues de hacer como 15 diseños completamente diferentes, tomamos la decisión, de que este va a ser nuestro logo, es gratificante ver que todos estan poniendo empeño en que esto se pueda hacer realidad.&lt;br /&gt;Este es el logo que elegimos, obviamente habra que refinarlo mas, pero por aca va la idea.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp3.blogger.com/_J6CtEQXD8W0/SAS9nbgId-I/AAAAAAAAAHU/LMWSOIBBmLs/s1600-h/Logo.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 317px; height: 154px;" src="http://bp3.blogger.com/_J6CtEQXD8W0/SAS9nbgId-I/AAAAAAAAAHU/LMWSOIBBmLs/s320/Logo.jpg" alt="" id="BLOGGER_PHOTO_ID_5189481155732731874" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36818204-9064381645835810290?l=juanmunozar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://juanmunozar.blogspot.com/feeds/9064381645835810290/comments/default' title='Comentarios de la entrada'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=36818204&amp;postID=9064381645835810290' title='0 Comentarios'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/36818204/posts/default/9064381645835810290'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/36818204/posts/default/9064381645835810290'/><link rel='alternate' type='text/html' href='http://juanmunozar.blogspot.com/2008/04/logo-acoplet.html' title='Logo AcopleT'/><author><name>ah! megamisama</name><uri>http://www.blogger.com/profile/15078007643325229238</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://bp3.blogger.com/_J6CtEQXD8W0/SAS9nbgId-I/AAAAAAAAAHU/LMWSOIBBmLs/s72-c/Logo.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-36818204.post-7287240398983603529</id><published>2008-03-27T09:48:00.002-05:00</published><updated>2008-03-27T10:27:45.231-05:00</updated><title type='text'>Mi empresa, mi vida</title><content type='html'>Ya hace _muchos_ dias vengo pensando que mi vida no es trabajar 8 horas al dia esperando una retribucion de lo que hice a lo largo de un mes, no digo que esto sea malo, pues no lo es siempre y cuando uno este &lt;a href="http://pemberthy.blogspot.com/2008/03/basecamp-sera-que-algn-da-tengo-mi.html"&gt;satisfecho con lo que esta haciendo en mas de un 80%&lt;/a&gt;,  es por esto que conversando con mi Mejor amigo, decidimos el y otro compañero de nosotros montar (o al menos intentarlo) nuestra propia empresa, a pesar que todos tengamos gustos completamente diferentes (yo programación de videojuegos, el rails y web) cosa que de acuerdo con nuestros proyectos se acomoda bien, debido a que yo por un lado podre programar videoJuegos y él se dedicará a montar toda la infraestructura de nuestra pagina, donde vamos  a montar los juegos desarrollados.&lt;br /&gt;&lt;br /&gt;Podra sonar muy salido de los cabellos eso de  "montemos una empresa de videojuegos aca en medellin, donde lo unico que se hace es paginas web", pero si uno tiene sueños por lo menos debe tratar de alcanzarlos, ademas nuestro publico esta en focado al del exterior.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36818204-7287240398983603529?l=juanmunozar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://juanmunozar.blogspot.com/feeds/7287240398983603529/comments/default' title='Comentarios de la entrada'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=36818204&amp;postID=7287240398983603529' title='4 Comentarios'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/36818204/posts/default/7287240398983603529'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/36818204/posts/default/7287240398983603529'/><link rel='alternate' type='text/html' href='http://juanmunozar.blogspot.com/2008/03/mi-empresa-mi-vida.html' title='Mi empresa, mi vida'/><author><name>ah! megamisama</name><uri>http://www.blogger.com/profile/15078007643325229238</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-36818204.post-1997302324206725688</id><published>2008-03-24T19:20:00.014-05:00</published><updated>2008-03-24T20:05:44.124-05:00</updated><title type='text'>proyecto de practica Terminado xD</title><content type='html'>Pues si, despues de todo lo que me preocupe por como iba a hacer el proyecto, despues de tantas horas si poder dormir (puro drama :P) al fin logré terminar el proyecto de practica &gt;_&gt;&lt;br /&gt;&lt;br /&gt;La idea es algo boba, pero era necesaria (o eso me dijeron) para la empresa, el proyeto mio consistió en coger el script de sincronización de servidores y modificarlo de tal manera que sincronizara carpetas dentro de un determinado repositorio.&lt;br /&gt;&lt;br /&gt;Mas o menos la idea es asi:&lt;br /&gt;&lt;br /&gt;&lt;span style="line-height: 115%;font-family:Arial;font-size:10;"  lang="ES-CO" &gt;El problema que se enfrenta en estos momentos podría ser solucionado d&lt;/span&gt;&lt;span style="line-height: 115%;font-family:Arial;font-size:10;"  lang="ES-CO" &gt;e dos maneras válidas más sin embargo una &lt;/span&gt;&lt;span style="line-height: 115%;font-family:Arial;font-size:10;"  lang="ES-CO" &gt;de ellas no viable.&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;p style="font-weight: bold;" class="MsoSubtitle"&gt;&lt;span lang="ES-CO"&gt;Primera (pero no viable):&lt;/span&gt;&lt;/p&gt;  &lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp0.blogger.com/_J6CtEQXD8W0/R-hIDI9u0TI/AAAAAAAAAHE/Sn6-KBKAnQA/s1600-h/clip_image002.gif"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 525px; height: 314px;" src="http://bp0.blogger.com/_J6CtEQXD8W0/R-hIDI9u0TI/AAAAAAAAAHE/Sn6-KBKAnQA/s320/clip_image002.gif" alt="" id="BLOGGER_PHOTO_ID_5181470590072967474" border="0" /&gt;&lt;/a&gt; &lt;p class="MsoNormal"&gt;&lt;span lang="ES-CO"&gt;Tener&lt;span style=""&gt;  &lt;/span&gt;un repositorio base que es donde se encuentran los datos principales, y tener “sub-repositorios” (donde se va a guardar cada carpeta) para mantener las dos (o más) sedes sincronizadas, de esta manera habría que:&lt;/span&gt;&lt;/p&gt;    &lt;p class="ListParagraphCxSpMiddle" style="text-indent: -18pt;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="" lang="ES-CO"&gt;&lt;span style=""&gt;    &lt;span style=""&gt; .    1.--&gt; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang="ES-CO"&gt;exportar la carpeta a un nuevo reposit&lt;/span&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="" lang="ES-CO"&gt;orio&lt;/span&gt;&lt;/p&gt;&lt;p class="ListParagraphCxSpMiddle" style="text-indent: -18pt;"&gt;&lt;!--[endif]--&gt;&lt;span lang="ES-CO"&gt;&lt;span style=""&gt;      &lt;/span&gt;2 . --&gt;  hacer un dump del repositorio&lt;/span&gt;&lt;/p&gt;  &lt;p class="ListParagraphCxSpMiddle" style="text-indent: -18pt;"&gt;&lt;!--[if !supportLists]--&gt;                . &lt;span lang="ES-CO"&gt;    ----&gt; Trasladar el dump a la nueva máquina donde se quiere cargar el repositorio&lt;/span&gt;&lt;/p&gt;  &lt;p class="ListParagraphCxSpLast" style="text-indent: -18pt;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="" lang="ES-CO"&gt;&lt;span style=""&gt;4.       .--&gt; &lt;/span&gt;&lt;/span&gt;&lt;span lang="ES-CO"&gt;Cargar el dump en la nueva maquina.&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span lang="ES-CO"&gt;Luego de esto automatizar una tarea cron para que cada determinado tiempo, se ejecute el script de sincronización de repositorios existente y así mantener el repositorio del servidor 1 sincronizado con el repositorio del servidor 2.&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span lang="ES-CO"&gt;¿Pero porque no es viable? Respuesta: Por varias razones, entre ellas:&lt;/span&gt;&lt;/p&gt;  &lt;p class="ListParagraphCxSpFirst" style="margin-left: 32.2pt; text-indent: -18pt;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span  lang="ES-CO" style="font-family:Wingdings;"&gt;&lt;span style=""&gt;*&lt;span style=""&gt;    &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang="ES-CO"&gt;Qué tal si tenemos más de una carpeta a se&lt;/span&gt;&lt;span lang="ES-CO"&gt;r sincronizada, habría que crear más de un repositorio y al otro lado tener el mismo número de repositorios a los que llegan la sincronización&lt;/span&gt;&lt;/p&gt;  &lt;p class="ListParagraphCxSpMiddle" style="margin-left: 32.2pt; text-indent: -18pt;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span  lang="ES-CO" style="font-family:Wingdings;"&gt;&lt;span style=""&gt;&lt;span style=""&gt;  &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span lang="ES-CO"&gt;*   La gente ya está&lt;span style=""&gt;  &lt;/span&gt;acostumbrada a subir y bajar datos del repositorio principal, seria ineficiente&lt;span style=""&gt;  &lt;/span&gt;acostumbrar a la gente a subir determinados datos a un repositorio, y otros datos a otros repositorios, seria confuso y poco práctico.&lt;/span&gt;&lt;/p&gt;  &lt;p class="ListParagraphCxSpLast" style="margin-left: 32.2pt; text-indent: -18pt;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span  lang="ES-CO" style="font-family:Wingdings;"&gt;&lt;span style=""&gt;*&lt;span style=""&gt;    &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang="ES-CO"&gt;No se puede mesclar de dos repositorios exist&lt;/span&gt;&lt;span lang="ES-CO"&gt;entes determinadas carpetas y sincronizarlo a un repositorio.&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span lang="ES-CO"&gt;De esto podemos concluir que con esta primer alternativa, la conexión de sincronización que opera en los repositorios es una conexión 1&lt;/span&gt;&lt;span lang="ES-CO"&gt;:1, es decir por cada repositorio existente en Server 1, este solo tiene uno y solo un repositorio sincronizado en Server 2.&lt;/span&gt;&lt;/p&gt;    &lt;p class="MsoSubtitle"&gt;&lt;span lang="ES-CO"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Segunda:&lt;/span&gt;&lt;/span&gt;&lt;/p&gt; &lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp1.blogger.com/_J6CtEQXD8W0/R-hJaY9u0UI/AAAAAAAAAHM/PZdY-landIQ/s1600-h/varios.gif"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 499px; height: 289px;" src="http://bp1.blogger.com/_J6CtEQXD8W0/R-hJaY9u0UI/AAAAAAAAAHM/PZdY-landIQ/s320/varios.gif" alt="" id="BLOGGER_PHOTO_ID_5181472089016553794" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;p class="MsoNormal"&gt;&lt;span lang="ES-CO"&gt;Tener en una red de repositorios, varias carpetas que se quieran sincronizar, no importa de donde vengan dichas carpetas e introducirlas a uno o varios repositorios, de tal forma que un repositorio sea la suma de varios repositorios.&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span lang="ES-CO"&gt;Esta propuesta de proyecto de práctica, después de haber investigado las operaciones posibles sobre un repositorio de SVN, llegué a la conclusión de que podía haber dos maneras para desarrollar este modelo de sincronización las cuales eran:&lt;/span&gt;&lt;/p&gt;  &lt;h1 style="font-weight: normal;"&gt;&lt;span lang="ES-CO"&gt;Export – Import.&lt;/span&gt;&lt;/h1&gt;  &lt;p class="MsoNormal"&gt;&lt;span lang="ES-CO"&gt;Procedemos&lt;span style=""&gt;  &lt;/span&gt;para&lt;span style=""&gt;  &lt;/span&gt;hacer un “dump” asi:&lt;/span&gt;&lt;/p&gt;  &lt;p class="ListParagraphCxSpFirst" style="text-indent: -18pt;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="" lang="ES-CO"&gt;&lt;span style=""&gt;1.&lt;span style=""&gt;          --&gt; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang="ES-CO"&gt;Del repositorio de inicio hacer un export de la carpeta que queremos sincronizar&lt;/span&gt;&lt;/p&gt;  &lt;p class="ListParagraphCxSpLast" style="text-indent: -18pt;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="" lang="ES-CO"&gt;&lt;span style=""&gt;2.&lt;span style=""&gt;          --&gt; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span lang="ES-CO"&gt;Trasladar dicha carpeta al repositorio destino y adicionarla al nuevo repositorio&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span lang="ES-CO"&gt;El problema de este enfoque es que cada vez que se quiera hacer una operación de sincronización, al no poseer el export un manejo de versiones, hay que traerse toda la carpeta y añadirla forzosamente, esto implica que cada vez que estamos haciendo updates, nos toca traernos toda la carpeta a la que se le añadió algo.&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span lang="ES-CO"&gt;Por esta sencilla razón, esta opción queda completamente descartada, pues estamos desperdiciando demasiado ancho de banda trayéndonos toda la carpeta cada vez que se actualiza un pedazo del directorio.&lt;/span&gt;&lt;/p&gt;  &lt;h1 style="font-weight: normal;"&gt;&lt;span lang="ES-CO"&gt;SVN DIFF (La elegida)&lt;br /&gt;&lt;/span&gt;&lt;/h1&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="line-height: 115%;font-family:Arial;font-size:10;"  lang="ES-CO" &gt;Despues de hablar con el &lt;a href="http://blog.febuiles.com/"&gt;wise&lt;/a&gt;  , este me recomendo usar svn diff, para esta aproximacion, procedemos de la siguiente manera:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="ListParagraphCxSpFirst" style="text-indent: -18pt;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="line-height: 115%;font-family:Arial;font-size:10;"  lang="ES-CO" &gt;&lt;span style=""&gt;1    1.&lt;span style=""&gt;      &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span style="line-height: 115%;font-family:Arial;font-size:10;"  lang="ES-CO" &gt;Si la carpeta a hacer el backup nunca ha sido sincronizada, entonces realizamos un svn diff desde la revisión cero hasta la actual, de tal forma que nos traigamos todo el historial de todo lo que se ha hecho desde que se creó la carpeta y se añadió al repositorio hasta el momento actual.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="ListParagraphCxSpLast" style="text-indent: -18pt;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="line-height: 115%;font-family:Arial;font-size:10;"  lang="ES-CO" &gt;&lt;span style=""&gt;    2.&lt;span style=""&gt;      &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span style="line-height: 115%;font-family:Arial;font-size:10;"  lang="ES-CO" &gt;Trasladar dicha carpeta al repositorio destino, revisar si la versión de la carpeta que estoy tratando de sincronizar es mas nueva en comparación con la del repositorio destino, si dicha carpeta está en su más reciente versión, entonces no realizar ningún cambio, de lo contrario “parchar” la carpeta con los cambios que esta trae.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="line-height: 115%;font-family:Arial;font-size:10;"  lang="ES-CO" &gt;El único problema que este enfoque presenta es que si se borra un archivo en el repositorio inicio, al momento de actualizar, en el repositorio destino, dicho archivo no es eliminado, sino que su contenido es el eliminado, es decir queda un&lt;span style=""&gt;  &lt;/span&gt;archivo en blanco en el repositorio destino.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;span style="line-height: 115%;font-family:Calibri;font-size:11;"  lang="ES-CO" &gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36818204-1997302324206725688?l=juanmunozar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://juanmunozar.blogspot.com/feeds/1997302324206725688/comments/default' title='Comentarios de la entrada'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=36818204&amp;postID=1997302324206725688' title='2 Comentarios'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/36818204/posts/default/1997302324206725688'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/36818204/posts/default/1997302324206725688'/><link rel='alternate' type='text/html' href='http://juanmunozar.blogspot.com/2008/03/proyecto-de-practica-terminado-xd.html' title='proyecto de practica Terminado xD'/><author><name>ah! megamisama</name><uri>http://www.blogger.com/profile/15078007643325229238</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://bp0.blogger.com/_J6CtEQXD8W0/R-hIDI9u0TI/AAAAAAAAAHE/Sn6-KBKAnQA/s72-c/clip_image002.gif' height='72' width='72'/><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-36818204.post-8778254673996459306</id><published>2008-03-14T07:44:00.002-05:00</published><updated>2008-03-14T09:02:13.936-05:00</updated><title type='text'>Proyecto de práctica</title><content type='html'>Pues si, resulta que en el semestre de práctica nos ponen a desarrollar un proyecto de práctica. El cual debe ser algo como un "aporte voluntario" que se le hace a la empresa en un especie de agradecimiento por haber recibido al practicante, pienso yo.&lt;br /&gt;&lt;br /&gt;Y a no ser mas, a mí tambien me corresponde hacer un proyecto de práctica, el cual estaba entre dos alternativas (una propuesta por mi jefe yehuda y la otra propuesta por mi jefe Tomás), las cuales consistian en desarrollar una librería javascript que ayudara al desarrollo de aplicaciones web internas de la empresa (propuesta por Tomás) y la otra fue el desarrollo de un script de sincronizacion entre servidores de svn, pero lo interesante ( y no tan interesante) del script es que la idea es no hacer un dump de todo el repositorio, sino hacer "Dumps" de carpetas que luego seran cargadas en otro repositorio.&lt;br /&gt;&lt;br /&gt;Este procedimiento debe ser hecho automáticamente y cada determinado tiempo, cosa que no es problema pues el script va a correr en un ambiente UNIX y puede ser automatizado con una tarea &lt;a href="http://en.wikipedia.org/wiki/Cron"&gt;cron&lt;/a&gt; .&lt;br /&gt;&lt;br /&gt;Digo que interesante ( y no tan interesante) porque pense que extractar una carpeta del proyecto era algo complicado, pues no es posibles hacer dumps directos sobre una carpeta. pero hablando con el &lt;a href="http://blog.febuiles.com/"&gt;"wise"&lt;/a&gt; me dio unas ideas con diff (cosa de unos minutos), que creo podria resultar.&lt;br /&gt;&lt;br /&gt;En fin, vamos a ver como progresa el proyecto :).&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36818204-8778254673996459306?l=juanmunozar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://juanmunozar.blogspot.com/feeds/8778254673996459306/comments/default' title='Comentarios de la entrada'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=36818204&amp;postID=8778254673996459306' title='1 Comentarios'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/36818204/posts/default/8778254673996459306'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/36818204/posts/default/8778254673996459306'/><link rel='alternate' type='text/html' href='http://juanmunozar.blogspot.com/2008/03/proyecto-de-prctica.html' title='Proyecto de práctica'/><author><name>ah! megamisama</name><uri>http://www.blogger.com/profile/15078007643325229238</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-36818204.post-5323352218107074654</id><published>2008-02-16T13:27:00.000-05:00</published><updated>2008-02-16T13:43:57.039-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Emacs'/><title type='text'>eTags recursivo...eTags recursivo...eTag..</title><content type='html'>resulta que etags solo coge  (para armar la tabla de funciones) los archivos que esten en '.' (directorio donde estoy parado).&lt;br /&gt;&lt;br /&gt;&lt;code&gt;&lt;br /&gt;&lt;pre class="programlisting"&gt; etags *.c *.h&lt;br /&gt;&lt;/pre&gt;&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;Pero resulta que necesitaba hacer una tabla con todos los archivos que estuvieran debajo de miProyecto/, fue cuando con un poco de ayuda de google encontre:&lt;br /&gt;&lt;code&gt;&lt;br /&gt;    find . | fgrep 'h|c|hpp|cpp$' | etags&lt;br /&gt;&lt;/code&gt;&lt;br /&gt;Pero resulta que me decia que no se podia, me sacaba el tipico:&lt;br /&gt;&lt;br /&gt;etags: no input files specified.&lt;br /&gt;        Try `etags --help' for a complete list of options.&lt;br /&gt;&lt;br /&gt;Hasta que los de # emacs en irc me comentaron que hiciera esto&lt;br /&gt;&lt;code&gt;&lt;br /&gt;     find . | egrep '\.(h|c|hpp|cpp)$' | etags -&lt;br /&gt;&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;lo cual funciono a la perfeccion!, ahora como moraleja me queda que tengo que conseguirme el libro de Regular Expresions ^_^ del wise!, porque no entiendo bien esas expresiones regulares.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36818204-5323352218107074654?l=juanmunozar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://juanmunozar.blogspot.com/feeds/5323352218107074654/comments/default' title='Comentarios de la entrada'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=36818204&amp;postID=5323352218107074654' title='0 Comentarios'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/36818204/posts/default/5323352218107074654'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/36818204/posts/default/5323352218107074654'/><link rel='alternate' type='text/html' href='http://juanmunozar.blogspot.com/2008/02/etags-recursivoetags-recursivoetag.html' title='eTags recursivo...eTags recursivo...eTag..'/><author><name>ah! megamisama</name><uri>http://www.blogger.com/profile/15078007643325229238</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-36818204.post-974987469250324948</id><published>2008-01-14T11:51:00.000-05:00</published><updated>2008-02-16T13:48:30.618-05:00</updated><title type='text'>La simplicidad de C#</title><content type='html'>Despues de estar aca aprendiendo en TVEEZ sobre lo que es el manejo de xaml en el framework de .Net 3.0, decidi por mi propia cuenta hacer una aplicacion que estaba planeando programar,  pero que no la habia echo debido a estar ocupado con &lt;a href="http://www.worldofwarcraft.com/"&gt;ciertas cosas&lt;/a&gt; el caso es que la aplicacion consistia en traerme la foto del dia de www.explosm.net/comics para asi evitarme entrar a la pagina y ver propaganda &gt;_&gt;&lt;br /&gt;&lt;br /&gt;La aplicacion esta desarrollada parcialmente en C# con xaml en la capa de presentacion.&lt;br /&gt;&lt;br /&gt;Codigo Xaml para la parte de presentacion de la aplicacion&lt;br /&gt;&lt;code&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;&lt;window class="WPFStaticResourceTest.Window1"&gt;&lt;/window&gt;&lt;/span&gt; &lt;span style="font-family:courier new;"&gt;    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"&lt;/span&gt; &lt;span style="font-family:courier new;"&gt;    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"&lt;/span&gt; &lt;span style="font-family:courier new;"&gt;    xmlns:src="clr-namespace:WPFStaticResourceTest"&lt;/span&gt; &lt;span style="font-family:courier new;"&gt;    Title="Prueba" Height="537" Width="667" HorizontalAlignment="Center"&gt;&lt;/span&gt;  &lt;span style="font-family:courier new;"&gt;    &lt;grid&gt;&lt;/grid&gt;&lt;/span&gt; &lt;span style="font-family:courier new;"&gt;        &lt;grid.resources&gt;&lt;/grid.resources&gt;&lt;/span&gt; &lt;span style="font-family:courier new;"&gt;            &lt;src:questionselector key="qstSelector"&gt;&lt;/src:questionselector&gt;&lt;/span&gt; &lt;span style="font-family:courier new;"&gt;            &lt;src:explosm key="myExplosm"&gt;&lt;/src:explosm&gt;&lt;/span&gt; &lt;span style="font-family:courier new;"&gt;&lt;/span&gt; &lt;span style="font-family:courier new;"&gt;        &lt;textblock text="{Binding Converter={StaticResource myExplosm}}" height="25" margin="156,0,119,17" name="textBlock2" verticalalignment="Bottom" cliptobounds="False"&gt;&lt;/textblock&gt;&lt;/span&gt; &lt;span style="font-family:courier new;"&gt;    &lt;/span&gt; &lt;span style="font-family:courier new;"&gt;&lt;br /&gt;&lt;/code&gt;&lt;br /&gt;&lt;span style="font-family:georgia;"&gt;Y para la parte de la logica se implemento en C#&lt;span style="font-family:courier new;"&gt;&lt;span style="font-family:trebuchet ms;"&gt; &lt;span style="font-family:georgia;"&gt;Con cosas tan senc&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-family:courier new;"&gt;&lt;span style="font-family:georgia;"&gt;&lt;span style="font-family:courier new;"&gt;&lt;span style="font-family:trebuchet ms;"&gt;&lt;span style="font-family:georgia;"&gt;illas como es el hecho de hacer una peticion de GET para la pagina que queremos visitar (www.explosm.net/comics)&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;code&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;&lt;span style="font-family:georgia;"&gt;&lt;span style="font-family:courier new;"&gt;&lt;span style="font-family:trebuchet ms;"&gt;&lt;span style="font-family:georgia;"&gt;&lt;span style="font-family:trebuchet ms;"&gt;StreamReader objReader = new StreamReader(objStream);&lt;/span&gt; &lt;span style="font-family:trebuchet ms;"&gt;&lt;br /&gt;string sLine = "";&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:trebuchet ms;"&gt;int i = 0;&lt;/span&gt; &lt;span style="font-family:trebuchet ms;"&gt;&lt;br /&gt;while (sLine != null)&lt;/span&gt;&lt;span style="font-family:trebuchet ms;"&gt;{&lt;/span&gt;&lt;br /&gt; &lt;span style="font-family:trebuchet ms;"&gt;&lt;t&gt;    i++;&lt;br /&gt;&lt;t&gt;    s&lt;/span&gt;&lt;span style="font-family:trebuchet ms;"&gt;Line = objReader.ReadLine();&lt;/span&gt; &lt;span style="font-family:trebuchet ms;"&gt;&lt;br /&gt;&lt;t&gt;    if (sLine != null)&lt;/span&gt;&lt;span style="font-family:trebuchet ms;"&gt;{&lt;/span&gt; &lt;span style="font-family:trebuchet ms;"&gt;&lt;br /&gt;&lt;t&gt;&lt;t&gt;        pageContent = pageContent + " " + sLine;  &lt;/span&gt; &lt;span style="font-family:trebuchet ms;"&gt;&lt;br /&gt;&lt;t&gt;    }&lt;br /&gt;&lt;/span&gt; &lt;span style="font-family:trebuchet ms;"&gt;}&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;&lt;span style="font-family:georgia;"&gt;&lt;span style="font-family:courier new;"&gt;&lt;span style="font-family:trebuchet ms;"&gt;&lt;span style="font-family:georgia;"&gt;&lt;span style="font-family:trebuchet ms;"&gt;&lt;span style="font-family:georgia;"&gt;Con esta pequeñez de codigo recibimos toda el codigo html de Explosm y lo guardamos en una string, ahora la unica tarea que nos queda es simplemente parsear dicho codigo para buscar la foto y mostrala en la aplicacion.&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;code&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;&lt;span style="font-family:georgia;"&gt;&lt;span style="font-family:courier new;"&gt;&lt;span style="font-family:trebuchet ms;"&gt;&lt;span style="font-family:georgia;"&gt;&lt;span style="font-family:trebuchet ms;"&gt;&lt;span style="font-family:georgia;"&gt;&lt;span style="font-family:trebuchet ms;"&gt;private string searchForPicture(string s){&lt;/span&gt; &lt;span style="font-family:trebuchet ms;"&gt;&lt;br /&gt;         //&lt;img alt="Cyanide and Happiness, a daily webcomic" src="http://www.blogger.com/this" is="" the="" string="" to="" be="" /&gt;&lt;/span&gt; &lt;span style="font-family:trebuchet ms;"&gt;&lt;br /&gt;         int index = s.IndexOf("&lt;i.m.g alt="\&amp;quot;Cyanide" and="" a="" daily="" c="\&amp;quot;&amp;quot;)"&gt;&lt;span style="font-family:trebuchet ms;"&gt; img alt=\"Cyanide and Happiness, a daily webcomic\" src=\"")&lt;br /&gt;int count = 0;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:trebuchet ms;"&gt;            while(s[index+count] != '\"'){&lt;/span&gt; &lt;span style="font-family:trebuchet ms;"&gt;&lt;br /&gt;    count++;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:trebuchet ms;"&gt;            }&lt;/span&gt; &lt;span style="font-family:trebuchet ms;"&gt;&lt;br /&gt;           string urlPic = s.Substring(index, count);&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:trebuchet ms;"&gt;            return urlPic;&lt;/span&gt; &lt;span style="font-family:trebuchet ms;"&gt;&lt;br /&gt;}&lt;br /&gt;&lt;/span&gt;&lt;/i.m.g&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;&lt;span style="font-family:georgia;"&gt;&lt;span style="font-family:courier new;"&gt;&lt;span style="font-family:trebuchet ms;"&gt;&lt;span style="font-family:georgia;"&gt;&lt;span style="font-family:trebuchet ms;"&gt;&lt;span style="font-family:georgia;"&gt;&lt;span style="font-family:trebuchet ms;"&gt;&lt;i.m.g alt="\&amp;quot;Cyanide" and="" a="" daily="" c="\&amp;quot;&amp;quot;)"&gt;&lt;/i.m.g&gt;&lt;/span&gt; &lt;span style="font-family:georgia;"&gt;Asi llevamos a cabo la tarea de sacar el string que nos interesa, que es la direccion de la foto.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Ahora lo mas interesante, con esta instruccion mostramos el contenido de la foto, sin importar en que formato este, y de donde venga&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-family:courier new;"&gt;&lt;span style="font-family:courier new;"&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:georgia;"&gt;Finalmente la aplicacion se ve asi ^_^:&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp0.blogger.com/_J6CtEQXD8W0/R4vT9PnTbuI/AAAAAAAAAFw/PFMJmzVjr5g/s1600-h/aplicacion.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp0.blogger.com/_J6CtEQXD8W0/R4vT9PnTbuI/AAAAAAAAAFw/PFMJmzVjr5g/s320/aplicacion.jpg" alt="" id="BLOGGER_PHOTO_ID_5155447247572528866" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Lo mas chistoso es que yo no sabiendo casi nada de C# pude realizar esta aplicacion en practicamente una mañana de trabajo, me tiene impresionado la facilidad como salen las cosas en .net.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36818204-974987469250324948?l=juanmunozar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://juanmunozar.blogspot.com/feeds/974987469250324948/comments/default' title='Comentarios de la entrada'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=36818204&amp;postID=974987469250324948' title='0 Comentarios'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/36818204/posts/default/974987469250324948'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/36818204/posts/default/974987469250324948'/><link rel='alternate' type='text/html' href='http://juanmunozar.blogspot.com/2008/01/la-simplicidad-de-c.html' title='La simplicidad de C#'/><author><name>ah! megamisama</name><uri>http://www.blogger.com/profile/15078007643325229238</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://bp0.blogger.com/_J6CtEQXD8W0/R4vT9PnTbuI/AAAAAAAAAFw/PFMJmzVjr5g/s72-c/aplicacion.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-36818204.post-1348825704823290102</id><published>2008-01-11T20:09:00.000-05:00</published><updated>2008-01-12T13:23:46.095-05:00</updated><title type='text'>Practica</title><content type='html'>Pues si, se llego el tiempo de la practica y me di cuenta que lo que uno mas quiere no es siempre lo que consigue, pues casi todos mis compañeros de practica consiguieron practica en el exterior y yo me quede aca, el caso fue que consegui mi practica en una empresa de marketing llamada TVEEZ Internacional &lt;a href="http://tveez.studioyael.co.il/"&gt;http://tveez.studioyael.co.il&lt;/a&gt; y mi trabajo es como desarrollador, la empresa en resumidas cuentas lo que tiene es un reproductor de contenidos que van desde imagenes videos y musica hasta  RSS feeds, pero dicho reproductor es un sistema distribuido que coge dichos archivos multimedia de diferentes servidores distribuidos en internet, y basandose en unas reglas de inferencia, datos de la empresa, etc. Decide que propagandas poner a determinadas horas del dia, el caso es que yo que estaba tan feliz en mi mundo linux, con mi unico (para mi) IDE emacs y con mi lenguaje C++, paso ya ahora a estar en un mundo donde el sistema operativo (windows Vista) no es lo mas agradable del mundo, mi IDE (que tiene sus ventajas) es  Visual Studio 2008 y mi lenguaje para trabajar es algo llamado xaml (lenguaje en el que se hacen los storyboards del reproductor), es como si me cogieran de las pelotas y me las martillaran en un yunke, me siento como sino hubiera hecho nada con mi vida, pues todo el mundo sabe lo que esta haciendo y yo a duras penas entiendo pedazos de xaml...&gt;_&gt;.&lt;br /&gt;&lt;br /&gt;Lo que importa es que a medida que pasa el tiempo se hace mas y mas placentero pertenecer a TVEEZ, espero aprender mucho de ellos y dar mucho de mi espero cogerle el ritmo a esto y algun dia salir  a israel que es donde esta la sede madre de  TVEEZ.&lt;br /&gt;&lt;br /&gt;PD: Nunca es tarde si la dicha es buena.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36818204-1348825704823290102?l=juanmunozar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://juanmunozar.blogspot.com/feeds/1348825704823290102/comments/default' title='Comentarios de la entrada'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=36818204&amp;postID=1348825704823290102' title='3 Comentarios'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/36818204/posts/default/1348825704823290102'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/36818204/posts/default/1348825704823290102'/><link rel='alternate' type='text/html' href='http://juanmunozar.blogspot.com/2008/01/practica.html' title='Practica'/><author><name>ah! megamisama</name><uri>http://www.blogger.com/profile/15078007643325229238</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-36818204.post-5839673914889865216</id><published>2007-12-17T15:42:00.000-05:00</published><updated>2007-12-17T15:56:16.234-05:00</updated><title type='text'>Fotos Laboratorio</title><content type='html'>Adjunto aca unas fotos que nos tomamos en el laboratorio en un dia (de tantos) que no haciamos absolutamente nada =)&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp1.blogger.com/_J6CtEQXD8W0/R2bhHJPFKWI/AAAAAAAAAFQ/BSQVjJODHoY/s1600-h/DSC_0216.JPG"&gt;&lt;img style="cursor: pointer;" src="http://bp1.blogger.com/_J6CtEQXD8W0/R2bhHJPFKWI/AAAAAAAAAFQ/BSQVjJODHoY/s320/DSC_0216.JPG" alt="" id="BLOGGER_PHOTO_ID_5145047137171876194" border="0" /&gt;&lt;/a&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp0.blogger.com/_J6CtEQXD8W0/R2bgX5PFKVI/AAAAAAAAAFI/4rE7NRA2lj4/s1600-h/DSC_0210.JPG"&gt;&lt;img style="cursor: pointer;" src="http://bp0.blogger.com/_J6CtEQXD8W0/R2bgX5PFKVI/AAAAAAAAAFI/4rE7NRA2lj4/s320/DSC_0210.JPG" alt="" id="BLOGGER_PHOTO_ID_5145046325423057234" border="0" /&gt;&lt;/a&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp2.blogger.com/_J6CtEQXD8W0/R2bhvZPFKXI/AAAAAAAAAFY/iRxszF7Rpwo/s1600-h/DSC_0217.JPG"&gt;&lt;img style="cursor: pointer;" src="http://bp2.blogger.com/_J6CtEQXD8W0/R2bhvZPFKXI/AAAAAAAAAFY/iRxszF7Rpwo/s320/DSC_0217.JPG" alt="" id="BLOGGER_PHOTO_ID_5145047828661610866" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36818204-5839673914889865216?l=juanmunozar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://juanmunozar.blogspot.com/feeds/5839673914889865216/comments/default' title='Comentarios de la entrada'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=36818204&amp;postID=5839673914889865216' title='4 Comentarios'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/36818204/posts/default/5839673914889865216'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/36818204/posts/default/5839673914889865216'/><link rel='alternate' type='text/html' href='http://juanmunozar.blogspot.com/2007/12/fotos-laboratorio.html' title='Fotos Laboratorio'/><author><name>ah! megamisama</name><uri>http://www.blogger.com/profile/15078007643325229238</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://bp1.blogger.com/_J6CtEQXD8W0/R2bhHJPFKWI/AAAAAAAAAFQ/BSQVjJODHoY/s72-c/DSC_0216.JPG' height='72' width='72'/><thr:total>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-36818204.post-3015605484938027575</id><published>2007-09-13T11:14:00.000-05:00</published><updated>2007-09-13T11:23:51.197-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='trabajo'/><title type='text'>Nuevos Proyectos, Nuevas oportunidades</title><content type='html'>Resulta que en estos dias de aburricion y desperdicio he estado pensando en hacer algo con mi vida, que no llegue el dia de mi practica y no haber echo nada, mas importante aun queria demostrarme a mi mismo que cualquier persona es capas de hacer un juego, sencillo pero (a mi modo de ver) entretenido y es por esto que decidi hacer una especie de Tennis distribuido, primeramente estoy tratando de que corra en una maquina sola, pero despues de tener montada toda la logica de la aplicacion junto con el sistema de colisiones, etc espero portarlo para que se pueda jugar en modo multijugador.&lt;br /&gt;&lt;br /&gt;Obviamente si alguien le interesa ayudarme seria chèvere, el juego lo estoy desarrollando en C++ con una interfaz y manejo de eventos en SDL, nada de .net, java, flash, workflows,etc... pues no es porque me paresca una pendejada, porque no, no lo es y creo que se puede hacer mas bonito en dichos lenguajes y mucho mas rapido, sino porque hay 2 motivos fundamentales ingenieritos de software.&lt;br /&gt;&lt;br /&gt;1) los juegos de verdad no se hacen en java ni flash&lt;br /&gt;2) nose ninguno de estas tecnologias y soy vieja escuela&lt;br /&gt;&lt;br /&gt;les dejo la inquietud a quien lea este blog, si esqe alguien lo hace todavia :P.&lt;br /&gt;&lt;br /&gt;aca esta el proyecto: &lt;a href="http://code.google.com/p/distri-tennis"&gt;distri-tennis&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36818204-3015605484938027575?l=juanmunozar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://juanmunozar.blogspot.com/feeds/3015605484938027575/comments/default' title='Comentarios de la entrada'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=36818204&amp;postID=3015605484938027575' title='0 Comentarios'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/36818204/posts/default/3015605484938027575'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/36818204/posts/default/3015605484938027575'/><link rel='alternate' type='text/html' href='http://juanmunozar.blogspot.com/2007/09/nuevos-proyectos-nuevas-oportunidades.html' title='Nuevos Proyectos, Nuevas oportunidades'/><author><name>ah! megamisama</name><uri>http://www.blogger.com/profile/15078007643325229238</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-36818204.post-8019909630143765801</id><published>2007-03-10T18:39:00.000-05:00</published><updated>2007-03-10T19:01:17.493-05:00</updated><title type='text'>th3Kings podcast</title><content type='html'>pues si,  depues de mucho esfuerzo (de pemberthy y diego:P) logramos montar el podcast th3 Kings Corner.&lt;br /&gt;&lt;br /&gt;la idea surgio de que toda la basura que hablamos en la universidad, para alguien seria charra, asi que decidimos tomar esas conversaciones y pasarlas a un programa de radio...:p&lt;br /&gt;Dicho programa haremos lo posible por subir un nuevo capitulo cada semana, cubriendo temas actuales como es la drogadiccion, homosexualiso, y hechos inusuales que nos suele suceder en la universidad.&lt;br /&gt;&lt;br /&gt;para ver el podcast se puede acceder por medio de los links o dando &lt;a href="http://th3kings.blogspot.com"&gt;&lt;span style="text-decoration: underline;"&gt;click aqui&lt;/span&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36818204-8019909630143765801?l=juanmunozar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://juanmunozar.blogspot.com/feeds/8019909630143765801/comments/default' title='Comentarios de la entrada'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=36818204&amp;postID=8019909630143765801' title='0 Comentarios'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/36818204/posts/default/8019909630143765801'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/36818204/posts/default/8019909630143765801'/><link rel='alternate' type='text/html' href='http://juanmunozar.blogspot.com/2007/03/th3kings-podcast.html' title='th3Kings podcast'/><author><name>ah! megamisama</name><uri>http://www.blogger.com/profile/15078007643325229238</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-36818204.post-9087998888122818128</id><published>2006-12-15T12:19:00.000-05:00</published><updated>2006-12-15T13:20:25.257-05:00</updated><title type='text'>Los Abuelos II</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp1.blogger.com/_J6CtEQXD8W0/RYLZp2I6dhI/AAAAAAAAAAM/A1uBvWlpqhM/s1600-h/DSC02452.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://bp1.blogger.com/_J6CtEQXD8W0/RYLZp2I6dhI/AAAAAAAAAAM/A1uBvWlpqhM/s320/DSC02452.JPG" alt="" id="BLOGGER_PHOTO_ID_5008805048520177170" border="0" /&gt;&lt;/a&gt;Bueno...como lo prometido es deuda, y como la pereza me Sodomiza... aca van las fotos&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Para empezar, aca estamos los 5 comensales (los 4 de el carro...-_- y alejandra ke toma la foto)&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp1.blogger.com/_J6CtEQXD8W0/RYLaB2I6diI/AAAAAAAAAAU/BtGxOcFrQAo/s1600-h/DSC02459.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://bp1.blogger.com/_J6CtEQXD8W0/RYLaB2I6diI/AAAAAAAAAAU/BtGxOcFrQAo/s320/DSC02459.JPG" alt="" id="BLOGGER_PHOTO_ID_5008805460837037602" border="0" /&gt;&lt;/a&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp1.blogger.com/_J6CtEQXD8W0/RYLa72I6dkI/AAAAAAAAAAk/t9EQCxg0XKY/s1600-h/DSC02549.JPG"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer;" src="http://bp1.blogger.com/_J6CtEQXD8W0/RYLa72I6dkI/AAAAAAAAAAk/t9EQCxg0XKY/s320/DSC02549.JPG" alt="" id="BLOGGER_PHOTO_ID_5008806457269450306" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp1.blogger.com/_J6CtEQXD8W0/RYLaj2I6djI/AAAAAAAAAAc/Y5vqCU2KIVY/s1600-h/DSC02456.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://bp1.blogger.com/_J6CtEQXD8W0/RYLaj2I6djI/AAAAAAAAAAc/Y5vqCU2KIVY/s320/DSC02456.JPG" alt="" id="BLOGGER_PHOTO_ID_5008806044952589874" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp2.blogger.com/_J6CtEQXD8W0/RYLbWGI6dlI/AAAAAAAAAAs/gkswI9hqmIo/s1600-h/DSC02458.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://bp2.blogger.com/_J6CtEQXD8W0/RYLbWGI6dlI/AAAAAAAAAAs/gkswI9hqmIo/s320/DSC02458.JPG" alt="" id="BLOGGER_PHOTO_ID_5008806908241016402" border="0" /&gt;&lt;/a&gt;y pues claro...el condctor elegido...:( n podia degustar las delicias de la cantimplora... :( ENERGY PROTEIN!!!!... deliciosoo, cabe decir que despues de pasar el tunel quitamos el parabrisas y era una mezcla genial Calor+viento+carro en movimiento+trago!!!&lt;br /&gt;&lt;br /&gt;Esta vez no nos toco bajarnos del carro!! y pasamos Borraos Q_Q por los huecos... guisao nos putiaste los riñones...Q_Q...&lt;br /&gt;&lt;br /&gt;bueno... llegamos a la finca, lo mas normal del mundo y habia media caja de cervezas llena asi que..las reembotellamos en un Botellon y miren como quedo :D&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp1.blogger.com/_J6CtEQXD8W0/RYLc82I6dmI/AAAAAAAAAA0/Cn6D7GoF1T4/s1600-h/DSC02562.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://bp1.blogger.com/_J6CtEQXD8W0/RYLc82I6dmI/AAAAAAAAAA0/Cn6D7GoF1T4/s320/DSC02562.JPG" alt="" id="BLOGGER_PHOTO_ID_5008808673472575074" border="0" /&gt;&lt;/a&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp0.blogger.com/_J6CtEQXD8W0/RYLdOmI6dnI/AAAAAAAAAA8/-Vi3-3q55Aw/s1600-h/DSC02563.JPG"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer;" src="http://bp0.blogger.com/_J6CtEQXD8W0/RYLdOmI6dnI/AAAAAAAAAA8/-Vi3-3q55Aw/s320/DSC02563.JPG" alt="" id="BLOGGER_PHOTO_ID_5008808978415253106" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Cabe decir que sabia a mil demonios...-_-.. porque no tenia GAS!!!!(me equivoco Diego?:P) pero igual...no la terminamos tomando jugando SIDEEEEE POCKEEETT!!!! (juego de snes) Diego y yo!&lt;br /&gt;&lt;br /&gt;Como siempre...toda la semana no la pasamos... emm....&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp2.blogger.com/_J6CtEQXD8W0/RYLd7GI6doI/AAAAAAAAABE/xBkR87XR_-4/s1600-h/DSC02557.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://bp2.blogger.com/_J6CtEQXD8W0/RYLd7GI6doI/AAAAAAAAABE/xBkR87XR_-4/s320/DSC02557.JPG" alt="" id="BLOGGER_PHOTO_ID_5008809742919431810" border="0" /&gt;&lt;/a&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp0.blogger.com/_J6CtEQXD8W0/RYLeMmI6dpI/AAAAAAAAABM/u4-VpJT_q3A/s1600-h/DSC02565.JPG"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer;" src="http://bp0.blogger.com/_J6CtEQXD8W0/RYLeMmI6dpI/AAAAAAAAABM/u4-VpJT_q3A/s320/DSC02565.JPG" alt="" id="BLOGGER_PHOTO_ID_5008810043567142546" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;A la izquiera...diego y (mi ayuda) haciendo el hogao PICANTE para los frijoles...; a la derecha ...diego y yo...fritando un MANGOO!!! si señores..un ManGo... y tomando.....(teniamos cara de que..-_-)...&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp3.blogger.com/_J6CtEQXD8W0/RYLfhWI6dqI/AAAAAAAAABU/l9dxyonhkXQ/s1600-h/DSC02578.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://bp3.blogger.com/_J6CtEQXD8W0/RYLfhWI6dqI/AAAAAAAAABU/l9dxyonhkXQ/s320/DSC02578.JPG" alt="" id="BLOGGER_PHOTO_ID_5008811499561055906" border="0" /&gt;&lt;/a&gt;a la izquierda...diego matando un sapo con un zurriago de la finca...estabamos infectados de sapos por todos lados... Q_Q y los sapos se pegaban de las paredes... (me hubiera gustado tomarle foto al rey (carlos) cuando le puse un sapo al lao!!! jajajajaj!!!!!&lt;br /&gt;Diego...los sapos no se matan con un palo...-_- ;)&lt;br /&gt;&lt;br /&gt;y asi nos pasamos toodos...estos 5 o 4 dias?...no me acuerdo :S, el ultmio dia hicimos un asao...cosa que no puede faltar! y estas fueron las fotos... un poco oscuras para mi opinion; y no, aleja no se quemo esta vez :D :D !!!&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp3.blogger.com/_J6CtEQXD8W0/RYLgxWI6drI/AAAAAAAAABc/_PPR3EuM4ao/s1600-h/DSC02575.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://bp3.blogger.com/_J6CtEQXD8W0/RYLgxWI6drI/AAAAAAAAABc/_PPR3EuM4ao/s320/DSC02575.JPG" alt="" id="BLOGGER_PHOTO_ID_5008812873950590642" border="0" /&gt;&lt;/a&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp0.blogger.com/_J6CtEQXD8W0/RYLhKmI6dsI/AAAAAAAAABk/ZKy05JHa2H8/s1600-h/DSC02571.JPG"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer;" src="http://bp0.blogger.com/_J6CtEQXD8W0/RYLhKmI6dsI/AAAAAAAAABk/ZKy05JHa2H8/s320/DSC02571.JPG" alt="" id="BLOGGER_PHOTO_ID_5008813307742287554" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;a la izquierda Aleja con las pinzas demenciales.... a la derecha..diego prendiendo el asadero soplando XDXD!!!&lt;br /&gt;&lt;br /&gt;y ya de venida...&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp1.blogger.com/_J6CtEQXD8W0/RYLhu2I6dtI/AAAAAAAAABs/OVk8HQNHffM/s1600-h/DSC02580.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://bp1.blogger.com/_J6CtEQXD8W0/RYLhu2I6dtI/AAAAAAAAABs/OVk8HQNHffM/s320/DSC02580.JPG" alt="" id="BLOGGER_PHOTO_ID_5008813930512545490" border="0" /&gt;&lt;/a&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp1.blogger.com/_J6CtEQXD8W0/RYLh92I6duI/AAAAAAAAAB0/RZZi7K2nMa4/s1600-h/DSC02582.JPG"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer;" src="http://bp1.blogger.com/_J6CtEQXD8W0/RYLh92I6duI/AAAAAAAAAB0/RZZi7K2nMa4/s320/DSC02582.JPG" alt="" id="BLOGGER_PHOTO_ID_5008814188210583266" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;cerramos la casa...una metidita a la piscina con quimicos Q_Q...:P&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp1.blogger.com/_J6CtEQXD8W0/RYLiZ2I6dvI/AAAAAAAAAB8/Ytgat5Vc32Y/s1600-h/DSC02617.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://bp1.blogger.com/_J6CtEQXD8W0/RYLiZ2I6dvI/AAAAAAAAAB8/Ytgat5Vc32Y/s320/DSC02617.JPG" alt="" id="BLOGGER_PHOTO_ID_5008814669246920434" border="0" /&gt;&lt;/a&gt;Obviamente..nos preparamos nuevamente nuestro energy  protein solamente que estavez con una sutil diferencia...partimos desde la finca con unos cuantos traguitos...&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp2.blogger.com/_J6CtEQXD8W0/RYLjDGI6dwI/AAAAAAAAACE/Lp8d7Vkj00o/s1600-h/DSC02596.JPG"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer;" src="http://bp2.blogger.com/_J6CtEQXD8W0/RYLjDGI6dwI/AAAAAAAAACE/Lp8d7Vkj00o/s320/DSC02596.JPG" alt="" id="BLOGGER_PHOTO_ID_5008815377916524290" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Fuera de eso....nos coge una tempestad...-_- --&gt;&lt;br /&gt;y ..nos toco poner la carpa!!! (mal puesta...pero .a pusimos)...&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp0.blogger.com/_J6CtEQXD8W0/RYLjmmI6dxI/AAAAAAAAACM/Gz1uLIp5Z2g/s1600-h/DSC02607.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://bp0.blogger.com/_J6CtEQXD8W0/RYLjmmI6dxI/AAAAAAAAACM/Gz1uLIp5Z2g/s320/DSC02607.JPG" alt="" id="BLOGGER_PHOTO_ID_5008815987801880338" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp3.blogger.com/_J6CtEQXD8W0/RYLj1WI6dyI/AAAAAAAAACU/IoMNFmx7p3c/s1600-h/DSC02609.JPG"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer;" src="http://bp3.blogger.com/_J6CtEQXD8W0/RYLj1WI6dyI/AAAAAAAAACU/IoMNFmx7p3c/s320/DSC02609.JPG" alt="" id="BLOGGER_PHOTO_ID_5008816241204950818" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp1.blogger.com/_J6CtEQXD8W0/RYLkA2I6dzI/AAAAAAAAACc/mvt49JC8kqg/s1600-h/DSC02610.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://bp1.blogger.com/_J6CtEQXD8W0/RYLkA2I6dzI/AAAAAAAAACc/mvt49JC8kqg/s320/DSC02610.JPG" alt="" id="BLOGGER_PHOTO_ID_5008816438773446450" border="0" /&gt;&lt;/a&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp2.blogger.com/_J6CtEQXD8W0/RYLkSGI6d0I/AAAAAAAAACk/eUXWVUfWqZc/s1600-h/DSC02611.JPG"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer;" src="http://bp2.blogger.com/_J6CtEQXD8W0/RYLkSGI6d0I/AAAAAAAAACk/eUXWVUfWqZc/s320/DSC02611.JPG" alt="" id="BLOGGER_PHOTO_ID_5008816735126189890" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp1.blogger.com/_J6CtEQXD8W0/RYLkh2I6d1I/AAAAAAAAACs/OF2xwr-SWq0/s1600-h/DSC02605.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://bp1.blogger.com/_J6CtEQXD8W0/RYLkh2I6d1I/AAAAAAAAACs/OF2xwr-SWq0/s320/DSC02605.JPG" alt="" id="BLOGGER_PHOTO_ID_5008817005709129554" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;en la carpa...los del volco...(los mas llevados del &amp;/&amp;amp;·%) con las manos arriba teniendo la carpa...-_-&lt;br /&gt;&lt;br /&gt;pero bebiendo de la cantimplora feliz! n_n&lt;br /&gt;hasta que se nos acabo la cantimploroa O.o...&lt;br /&gt;&lt;br /&gt;entonces lo unico que nos quedo fue&lt;br /&gt;Tanquearla, y a su vez... carlos...pelandolo...se puso a quemar aceite...-_-...entonces tambien nos figuro...&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp2.blogger.com/_J6CtEQXD8W0/RYLlLGI6d2I/AAAAAAAAAC0/7RaZDOTLH4M/s1600-h/DSC02648.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://bp2.blogger.com/_J6CtEQXD8W0/RYLlLGI6d2I/AAAAAAAAAC0/7RaZDOTLH4M/s320/DSC02648.JPG" alt="" id="BLOGGER_PHOTO_ID_5008817714378733410" border="0" /&gt;&lt;/a&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp0.blogger.com/_J6CtEQXD8W0/RYLlmmI6d3I/AAAAAAAAAC8/1SF-5aBw774/s1600-h/DSC02624.JPG"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer;" src="http://bp0.blogger.com/_J6CtEQXD8W0/RYLlmmI6d3I/AAAAAAAAAC8/1SF-5aBw774/s320/DSC02624.JPG" alt="" id="BLOGGER_PHOTO_ID_5008818186825135986" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;seguimos nuestro viaje...&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp2.blogger.com/_J6CtEQXD8W0/RYLl9GI6d4I/AAAAAAAAADE/GL1_Agn2q4A/s1600-h/DSC02651.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://bp2.blogger.com/_J6CtEQXD8W0/RYLl9GI6d4I/AAAAAAAAADE/GL1_Agn2q4A/s320/DSC02651.JPG" alt="" id="BLOGGER_PHOTO_ID_5008818573372192642" border="0" /&gt;&lt;/a&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp1.blogger.com/_J6CtEQXD8W0/RYLmI2I6d5I/AAAAAAAAADM/IrH4buIY0ag/s1600-h/DSC02674.JPG"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer;" src="http://bp1.blogger.com/_J6CtEQXD8W0/RYLmI2I6d5I/AAAAAAAAADM/IrH4buIY0ag/s320/DSC02674.JPG" alt="" id="BLOGGER_PHOTO_ID_5008818775235655570" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp2.blogger.com/_J6CtEQXD8W0/RYLmaGI6d6I/AAAAAAAAADU/yujnB8RcYGw/s1600-h/DSC02691.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://bp2.blogger.com/_J6CtEQXD8W0/RYLmaGI6d6I/AAAAAAAAADU/yujnB8RcYGw/s320/DSC02691.JPG" alt="" id="BLOGGER_PHOTO_ID_5008819071588399010" border="0" /&gt;&lt;/a&gt;Hasta llegar a medellin...sanos, salvos y voltiados!!!, despues de que nos dejaron en el estadio...-_-&lt;br /&gt;&lt;br /&gt;Diego,Joan y yo nos fuimos a pie hasta el exito de laureles (obviamente comprando mas cerveza y metiendola en la cantimplora feliz!)...&lt;br /&gt;&lt;br /&gt;Notas:&lt;br /&gt;1)Nos fuimos y venimos escuchando Judas priest&lt;br /&gt;&lt;br /&gt;2)caifaz, david...lo pelaron...-_-&lt;br /&gt;3)que chimba el willis el trago y judas!!!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36818204-9087998888122818128?l=juanmunozar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://juanmunozar.blogspot.com/feeds/9087998888122818128/comments/default' title='Comentarios de la entrada'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=36818204&amp;postID=9087998888122818128' title='11 Comentarios'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/36818204/posts/default/9087998888122818128'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/36818204/posts/default/9087998888122818128'/><link rel='alternate' type='text/html' href='http://juanmunozar.blogspot.com/2006/12/los-abuelos-ii.html' title='Los Abuelos II'/><author><name>ah! megamisama</name><uri>http://www.blogger.com/profile/15078007643325229238</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://bp1.blogger.com/_J6CtEQXD8W0/RYLZp2I6dhI/AAAAAAAAAAM/A1uBvWlpqhM/s72-c/DSC02452.JPG' height='72' width='72'/><thr:total>11</thr:total></entry><entry><id>tag:blogger.com,1999:blog-36818204.post-891106819343114489</id><published>2006-11-28T15:49:00.000-05:00</published><updated>2006-11-28T16:00:14.515-05:00</updated><title type='text'>Tan Harto...</title><content type='html'>Estoy harto...&lt;br /&gt;De aquellos que prometen y no cumplen.&lt;br /&gt;De los que estan encima de uno a todo momento revisando&lt;br /&gt;De las personas las cuales espere mucho y al fin no recibi nada.&lt;br /&gt;De los minglanillas que pretenden saber mucho.&lt;br /&gt;De los idiotas que se creen superiores&lt;br /&gt;De los que creen que la felicidad esta en tener un mejor carro, una mejor mujer, un mejor empleo.&lt;br /&gt;De los que prometen mucho y no dan nada&lt;br /&gt;De aquellos que &amp;amp;/$%·! mucho y al fin nada&lt;br /&gt;De los imbeciles de turno&lt;br /&gt;De el simio y sus "jo jo jo...esto esta corto"&lt;br /&gt;De las materias de relleno&lt;br /&gt;De la mierda que me inculcan&lt;br /&gt;De las reglas de "casa"&lt;br /&gt;De los que creen que por hacer dibujitos el Sw va a tener mas calidad&lt;br /&gt;De estas y tantas cosas que me callo&lt;br /&gt;...&lt;br /&gt;Estoy a minuto de explotar (8)...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36818204-891106819343114489?l=juanmunozar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://juanmunozar.blogspot.com/feeds/891106819343114489/comments/default' title='Comentarios de la entrada'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=36818204&amp;postID=891106819343114489' title='7 Comentarios'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/36818204/posts/default/891106819343114489'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/36818204/posts/default/891106819343114489'/><link rel='alternate' type='text/html' href='http://juanmunozar.blogspot.com/2006/11/tan-harto_28.html' title='Tan Harto...'/><author><name>ah! megamisama</name><uri>http://www.blogger.com/profile/15078007643325229238</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>7</thr:total></entry><entry><id>tag:blogger.com,1999:blog-36818204.post-5824353281380061241</id><published>2006-11-25T11:50:00.000-05:00</published><updated>2006-11-25T11:55:05.397-05:00</updated><title type='text'>Como instalar el diccionario de español para Aspell en carbonemacs</title><content type='html'>Para instalar el Diccionario de español para el Aspell y que coja en el carbonemacs para Mac&lt;br /&gt;&lt;br /&gt;1) Bajar cocoaspell&lt;br /&gt;2) bajar el diccionario de español&lt;br /&gt;2.5) tratar de instalar el diccionario (./configure &amp;&amp;amp; make &amp;&amp;amp; make install)&lt;br /&gt;3) si la consola pone problema entonces entrar al Makefile&lt;br /&gt;4) modificar la parte que dice espa??ol.alias por espanol.alias&lt;br /&gt;5) en la carpeta donde esta el diccionario: modificar el nombre del archivo español.alias por espanol.alias&lt;br /&gt;6) instalar el diccionario nuevamente (./configure &amp;&amp;amp; make &amp;&amp;amp; make install)&lt;br /&gt;7) copiar todo el contenido (menos el doc, makefiles, README, configure,etc) a:&lt;br /&gt; /Applications/Emacs.app/Contents/Resources/lib/aspell-i386/ (aspell i386,tengo intel..-_-)&lt;br /&gt;8) devolverse a donde esta instalado el diccionarioy escribir este comando:&lt;br /&gt;     word-list-compress d &lt; es.cwl | aspell --lang=es create master ./es.rws&lt;br /&gt;9) copiar el es.rws a /Applications/Emacs.app/Contents/Resources/lib/aspell-i386/&lt;br /&gt;10) cargar el diccionario que dice espanol, y listo:D&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36818204-5824353281380061241?l=juanmunozar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://juanmunozar.blogspot.com/feeds/5824353281380061241/comments/default' title='Comentarios de la entrada'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=36818204&amp;postID=5824353281380061241' title='0 Comentarios'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/36818204/posts/default/5824353281380061241'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/36818204/posts/default/5824353281380061241'/><link rel='alternate' type='text/html' href='http://juanmunozar.blogspot.com/2006/11/como-instalar-el-diccionario-de-espaol.html' title='Como instalar el diccionario de español para Aspell en carbonemacs'/><author><name>ah! megamisama</name><uri>http://www.blogger.com/profile/15078007643325229238</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-36818204.post-116338435467975775</id><published>2006-11-12T20:55:00.000-05:00</published><updated>2006-11-12T21:19:14.686-05:00</updated><title type='text'>Mac ...La manzanita mordida n_n</title><content type='html'>bueno... precisamente en este post no voy a hablar de trago ni de peripecias o cosas asi...asi que lo siento...ya empiezo a reivindicarme con la sociedad, lo que si pienso tratar en este post son los pro y los contras de un pc Mac (macbook) para ser precisos...&lt;br /&gt;Pro:&lt;br /&gt;--&gt; Mi sistema operativo carga en 27 segundos!!! n_n !!!&lt;br /&gt;--&gt; es lindo&lt;br /&gt;--&gt; los programas son TRIVIALES de instalar (a veces puede ser una desventaja para algunas personas que no mencionaré...-_-)&lt;br /&gt;--&gt; es un sistema operativo que de verdad SI utiliza la memoria ram que tiene...(comentare despues el porque...)&lt;br /&gt;--&gt; Soporta Gcc Y G++, cosa que obviamente tambien esta en linux ... y no me vengan con windows... -_- no me gusta cygwin de a mucho, Porque?... nose...es como si le preguntaran a alguien a que sabe la felicidad... son preguntas de ese estilo y no quiero pensar en ellas...me volveria loco...-_-&lt;br /&gt;--&gt; el sistema operativo trabaja con un modo proteccion de memoria (corrijanme si estoy mal) que consiste en que si un programa colapsa, ese y solo ese programa que colapsa es el unico que se ve afectado,  permitiendo al sistema operativo continuar con las tareas que tiene...-_- (me parece esto interesante..personalmente nunca lo lei de linux ni de windows..porque? demas que porque no leo mucho :(  o porque sencillamente no existe...)&lt;br /&gt;--&gt; el conector de luz del portatil es imantado n_n asi que si tropiezo..no tumbo el portatil:D&lt;br /&gt;--&gt; la manzanita de atras de la pantalla alumbra en la obscuridad Q_Q!!!&lt;br /&gt;Contras:&lt;br /&gt;--&gt; NO EXISTE LA TECLA SUPRIMIR!!!:S:S:S:S &lt;--- grave grave...:S:S&lt;br /&gt;--&gt; No hay casi MMORPGS (es bueno y malo:S bueno porque asi no podre jugar..:P malo porque NO HAY!!!)&lt;br /&gt;--&gt; la tecla con la que se corta, pega y copia en windows (la manzanita para el mac) esta muy cerca de la barra espaciadora, cosa que me incomoda demasiado&lt;br /&gt;--&gt; no tiene el bombillito que dice "hey parce...estoy pensando si? ...se espera?...-_-" cosa que es a veces incomoda porque uno no sabe que esta haciendo :P...&lt;br /&gt;&lt;br /&gt;Pero por lo demas ...me siento contento con la maquinita n_n, solo llevo como 3 semanas ...Pero por el momento no me he aburrido del computador...:D&lt;br /&gt;&lt;br /&gt;Algun comentario?...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36818204-116338435467975775?l=juanmunozar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://juanmunozar.blogspot.com/feeds/116338435467975775/comments/default' title='Comentarios de la entrada'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=36818204&amp;postID=116338435467975775' title='4 Comentarios'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/36818204/posts/default/116338435467975775'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/36818204/posts/default/116338435467975775'/><link rel='alternate' type='text/html' href='http://juanmunozar.blogspot.com/2006/11/mac-la-manzanita-mordida-nn.html' title='Mac ...La manzanita mordida n_n'/><author><name>ah! megamisama</name><uri>http://www.blogger.com/profile/15078007643325229238</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-36818204.post-116327869549966733</id><published>2006-11-11T14:23:00.000-05:00</published><updated>2006-11-11T15:58:15.776-05:00</updated><title type='text'>Una semana en... "Los Abuelos"</title><content type='html'>Bueno...hasta que por fin pude conseguir algunas de las  fotos (patrocinadas por diego) para mostrarles de lo que es una semana en la finca "Los Abuelos".&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/973/4123/1600/P1010009.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://photos1.blogger.com/blogger/973/4123/320/P1010009.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Bueno..empecemos con que estamos todos en el carro de Carlos llendo para antioquia,  y claro...como yo no voy manejando... era obvio que tenia mi cantimplora en mano..si si...esa con la que ustedes me ven en la universidad...esa misma, la que fuera de estar conmigo academicamente, tambien me acompaña etilicamente. (uish...eso sono muy alcoholico:P); lastimosamene en la foto no se ve la cantimplora por eso les voy a pedir que hagan cato de FE!.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/973/4123/1600/P1010011.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://photos1.blogger.com/blogger/973/4123/320/P1010011.jpg" alt="" border="0" /&gt;&lt;/a&gt;bueno llegando a la finca. Como el carro del rey(Carlos) era tan bajito, nos tocó bajarnos y caminar.&lt;br /&gt;En la foto aparecemos Joan y yo (me imagino que Diego estaba tomando la foto?) y no...no crean que estaba muy cuerdo... pues la cantimplora se nos acabó cuando dejamos el pavimento :(. pero bueno... sigamos con el recorrido:D&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/973/4123/1600/P1010012.jpg"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer;" src="http://photos1.blogger.com/blogger/973/4123/320/P1010012.jpg" alt="" border="0" /&gt;&lt;/a&gt;Despues de mucho sufrir por rallar el carro por debajo y bastante caminar llegamos por fin! y claro... la foto nunca puede faltar...:D&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/973/4123/1600/P1010015.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://photos1.blogger.com/blogger/973/4123/320/P1010015.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Ya despues de haber desempacado y despues de haber organizado algunas cosas nos dividimos las tareas, en la foto de la izquierda estamos Aleja, Carlos(el de las pastas) y yo, los 3 elegidos para hacer el coctel:D. El 1er coctel!&lt;br /&gt;&lt;br /&gt;Y si, aca les tengo una foto de la preparacion, &lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/973/4123/1600/P1010014.jpg"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer;" src="http://photos1.blogger.com/blogger/973/4123/320/P1010014.jpg" alt="" border="0" /&gt;&lt;/a&gt;la nevera que se alcanza  a ver en la izquiera (la rojita? , si esa)  fue y sera llenada de ahora en adelante con coctel para llevarlo a la piscina o salidas campo traviesa, pero ese es otro cuento, basicamente el coctel que estabamos preparando consistia en naranjas, pamplemusas y limones con Aguardiente, y RON y algo mas? ..no me acuerdo bien:S("Porque dicho y hecho esta: La finca proveera a aquellos los elegidos con limones, pamplemusas y NARANJAS!"). lo unico que se era que estaba delicioso y adquirio color de aguapanela(mas adelante les mostrare el color), despues de terminado el coctel lo unico que hicimos fue meterlo a la nevera, sacar el xbox, conectarlo y esperar...&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/973/4123/1600/P1010072.jpg"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer;" src="http://photos1.blogger.com/blogger/973/4123/320/P1010072.jpg" alt="" border="0" /&gt;&lt;/a&gt;... y empezamos a tomar... (si aprecian bien el vaso, ese es el color que tomó el coctel dicha vez...). Tomamos y tomamos...&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/973/4123/1600/P1010070.jpg"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer;" src="http://photos1.blogger.com/blogger/973/4123/320/P1010070.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/973/4123/1600/P1010065.jpg"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer;" src="http://photos1.blogger.com/blogger/973/4123/320/P1010065.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Cuando de un momento a otro, alguien sugiere..vamos para la piscina, y todo el mundo...dice..."bueno...", dicho y hecha esta afirmacion, Diego coge rumbo hacia la piscina y nosotros detras de el Obviamente...-_-... Pero...cabe aclarar algo...no nos llevamos el coctel, no señor.&lt;br /&gt;Nos llevamos un tetrapack de ron n_n y una barra de SALCHICHON con LIMON!!!.&lt;br /&gt;Llegamos a la piscina (la cual estaba cerrada...:P,lo que hizo que saltaramos la puerda), nos bañamos, nos tomamos practicamente todo el tetrapack de ron con el SALCHICHON! y obviamente nos voltiamos (mucho diria yo)...&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/973/4123/1600/P1010045.jpg"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer;" src="http://photos1.blogger.com/blogger/973/4123/320/P1010045.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/973/4123/1600/P1010044.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://photos1.blogger.com/blogger/973/4123/320/P1010044.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;despues de venida...cuando llegamos, Los efectos del trago empezaron a trabajar n_n y miren  lo que suc&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/973/4123/1600/P1010021.jpg"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer;" src="http://photos1.blogger.com/blogger/973/4123/320/P1010021.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/973/4123/1600/P1010018.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://photos1.blogger.com/blogger/973/4123/320/P1010018.jpg" alt="" border="0" /&gt;&lt;/a&gt;edio...&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/973/4123/1600/P1010078.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://photos1.blogger.com/blogger/973/4123/320/P1010078.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/973/4123/1600/P1010028.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://photos1.blogger.com/blogger/973/4123/320/P1010028.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/973/4123/1600/P1010023.jpg"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer;" src="http://photos1.blogger.com/blogger/973/4123/320/P1010023.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Joan no toma = no se voltio, los demas si...y mucho!, Y creanme...es muy bueno jugar Xbox Cuando uno se encuentra en este estado, debido a que ademas del juego ser un reto, la coordinacion de las manos con el resto del cuerpo se vuelve algo  muy complicado e interesante -_- ....XDXD&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Como siempre cada vez que hay ida a la finca, a la mañana siguiente (yo personalmente) desayuno con brava n_n lo mismo que Diego n_n y si... desde por la mañana ya nos veiamos asi...:S...&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/973/4123/1600/P1010056.jpg"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer;" src="http://photos1.blogger.com/blogger/973/4123/320/P1010056.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/973/4123/1600/P1010054.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://photos1.blogger.com/blogger/973/4123/320/P1010054.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;No son caras de guayabo...mas bien yo lo describiria como caras de prenda que continuara por 1 semana... Obviamente...los demas comenzales no empiezan el dia asi...&lt;br /&gt;Para finalizar, cabe mencionar que toda la semana no la pasamos asi (Diego, Aleja y yo)... Y,el ultimo dia..hacemos un asado para espantar las malas energias del trag&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/973/4123/1600/P1010046.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://photos1.blogger.com/blogger/973/4123/320/P1010046.jpg" alt="" border="0" /&gt;&lt;/a&gt;o... &lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/973/4123/1600/P1010047.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://photos1.blogger.com/blogger/973/4123/320/P1010047.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Y despues de haber terminado la aventura de 1 semana sin saber que dia es, ni cuanto tiempo llevamos tomando, terminamos todos felices de vuelta a medellin a seguir nuestras vidas comun y corriente n_n...&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/973/4123/1600/P1010003.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://photos1.blogger.com/blogger/973/4123/320/P1010003.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36818204-116327869549966733?l=juanmunozar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://juanmunozar.blogspot.com/feeds/116327869549966733/comments/default' title='Comentarios de la entrada'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=36818204&amp;postID=116327869549966733' title='4 Comentarios'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/36818204/posts/default/116327869549966733'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/36818204/posts/default/116327869549966733'/><link rel='alternate' type='text/html' href='http://juanmunozar.blogspot.com/2006/11/una-semana-en-los-abuelos.html' title='Una semana en... &quot;Los Abuelos&quot;'/><author><name>ah! megamisama</name><uri>http://www.blogger.com/profile/15078007643325229238</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-36818204.post-116217787660218491</id><published>2006-10-29T21:57:00.000-05:00</published><updated>2006-10-29T22:11:16.666-05:00</updated><title type='text'>...he estado prendido desde el miercoles...</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/973/4123/1600/Foto_100506_035.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://photos1.blogger.com/blogger/973/4123/320/Foto_100506_035.jpg" alt="" border="0" /&gt;&lt;/a&gt;Pues si...como dice el titulo...he estado prendido desde el miercoles por la noche(vodka) jueves por la noche(vodka) viernes por la noche(coctel Dr. 20921) sabado(escocia azul y carga de profundidad y por la mañana de hoy VAT69...VIVO:D con caifacita y pember), me siento alcoholico...:P ...pero pos fale....ahi vamos no?...&lt;br /&gt;&lt;br /&gt;nota: esta es una foto de los multiples...que nose porque ni como me la tomaron... la verdad no me acuerdo...:P estaba como medio rascado no?:p...espero comentarios:P&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/36818204-116217787660218491?l=juanmunozar.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://juanmunozar.blogspot.com/feeds/116217787660218491/comments/default' title='Comentarios de la entrada'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=36818204&amp;postID=116217787660218491' title='2 Comentarios'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/36818204/posts/default/116217787660218491'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/36818204/posts/default/116217787660218491'/><link rel='alternate' type='text/html' href='http://juanmunozar.blogspot.com/2006/10/he-estado-prendido-desde-el-miercoles.html' title='...he estado prendido desde el miercoles...'/><author><name>ah! megamisama</name><uri>http://www.blogger.com/profile/15078007643325229238</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry></feed>
