<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Silenceway &#187; Software</title>
	<atom:link href="http://byronh.axul.net/category/software/feed/" rel="self" type="application/rss+xml" />
	<link>http://byronh.axul.net</link>
	<description>Notas y apuntes de a ratos...</description>
	<lastBuildDate>Tue, 08 Nov 2011 22:41:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>Usar un UIAlertView para solicitar usuario y contraseña</title>
		<link>http://byronh.axul.net/2011/04/29/usar-un-uialertview-para-solicitar-usuario-y-contrasena/</link>
		<comments>http://byronh.axul.net/2011/04/29/usar-un-uialertview-para-solicitar-usuario-y-contrasena/#comments</comments>
		<pubDate>Fri, 29 Apr 2011 15:57:25 +0000</pubDate>
		<dc:creator>Byron H</dc:creator>
				<category><![CDATA[Iphone]]></category>
		<category><![CDATA[Programar]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[iOs]]></category>
		<category><![CDATA[UIAlertView]]></category>
		<category><![CDATA[Xcode]]></category>

		<guid isPermaLink="false">http://byronh.axul.net/?p=161</guid>
		<description><![CDATA[A veces es necesario, al desarrollar una aplicación para iphone, hacer un inicio de sesión para poder mostrar la información de una ventana. Con esta clase es posible mostrar un UIAlertView con dos campos de texto que se encargan de solicitar un usuario y una contraseña y lo entrega a la vista que lo está [...]]]></description>
			<content:encoded><![CDATA[
<div class="topsy_widget_data topsy_theme_mustard" style="float: right;margin-left: 0.75em; background: url(data:,%7B%20%22url%22%3A%20%22http%253A%252F%252Fbyronh.axul.net%252F2011%252F04%252F29%252Fusar-un-uialertview-para-solicitar-usuario-y-contrasena%252F%22%2C%20%22shorturl%22%3A%20%22http%3A%2F%2Fbit.ly%2FlWGQ2k%22%2C%20%22style%22%3A%20%22big%22%2C%20%22title%22%3A%20%22Usar%20un%20UIAlertView%20para%20solicitar%20usuario%20y%20contrase%C3%B1a%22%20%7D);"></div>
<p>A veces es necesario, al desarrollar una aplicación para iphone, hacer un inicio de sesión para poder mostrar la información de una ventana.</p>
<p>Con esta clase es posible mostrar un UIAlertView con dos campos de texto que se encargan de solicitar un usuario y una contraseña y lo entrega a la vista que lo está mostrando para su procesamiento.</p>
<p><strong>SilLoginPrompt.h</strong><br />
<code><br />
//<br />
//  SilLoginPrompt.h<br />
//  Alert login window<br />
//<br />
//  Created by Byron Herrera on 4/20/11.<br />
//  Copyright 2011 Silencesoft. All rights reserved.<br />
//</p>
<p>#import < Foundation/Foundation.h></p>
<p>@interface SilLoginPrompt : UIAlertView<br />
{<br />
	UITextField * textUser;<br />
	UITextField * textPassword;<br />
}</p>
<p>@property (nonatomic, retain) UITextField * textUser;<br />
@property (nonatomic, retain) UITextField * textPassword;<br />
@property (readonly) NSString * userName;<br />
@property (readonly) NSString * userPassword;</p>
<p>- (id) initWithTitle:(NSString *)title message:(NSString *)message delegate:(id)delegate cancelButtonTitle:(NSString *)cancelButtonTitle okButtonTitle:(NSString *)okButtonTitle;</p>
<p>@end<br />
</code></p>
<hr />
<p><strong>SilLoginPrompt.m</strong><br />
<code><br />
//<br />
//  SilLoginPrompt.m<br />
//  Alert login window<br />
//<br />
//  Created by Byron Herrera on 4/20/11.<br />
//  Copyright 2011 Silencesoft. All rights reserved.<br />
//</p>
<p>#import "SilLoginPrompt.h"<br />
// #import < QuartzCore/QuartzCore.h></p>
<p>@implementation SilLoginPrompt</p>
<p>@synthesize textUser, textPassword;<br />
@synthesize userName, userPassword;</p>
<p>-(id) initWithTitle:(NSString *)title message:(NSString *)message delegate:(id)delegate cancelButtonTitle:(NSString *)cancelButtonTitle okButtonTitle:(NSString *)okButtonTitle {<br />
	if (self = [super initWithTitle:title message:message delegate:delegate cancelButtonTitle:cancelButtonTitle otherButtonTitles:okButtonTitle, nil])<br />
	{</p>
<p>		UITextField *textField = [[UITextField alloc] initWithFrame:CGRectMake(12.0, 70.0, 260.0, 25.0)];<br />
		[textField setBackgroundColor:[UIColor whiteColor]];<br />
		[textField setPlaceholder:@"Username"];<br />
		textField.autocorrectionType = UITextAutocorrectionTypeNo;<br />
		/*<br />
        textField.textAlignment = UITextAlignmentCenter;<br />
		textField.backgroundColor = [UIColor whiteColor];<br />
		textField.borderStyle = UITextBorderStyleRoundedRect;<br />
		textField.layer.cornerRadius = 8.0f;<br />
		textField.layer.masksToBounds = YES;<br />
		textField.layer.borderColor = [[UIColor blackColor] CGColor];<br />
		textField.layer.borderWidth = 1.0f;<br />
		 */<br />
		[textField setBorderStyle:UITextBorderStyleRoundedRect];<br />
		[textField setBackgroundColor:[UIColor clearColor]];<br />
		[self addSubview:textField];<br />
		self.textUser = textField;<br />
		[textField release];</p>
<p>		textField = [[UITextField alloc] initWithFrame:CGRectMake(12.0, 95.0, 260.0, 25.0)];<br />
		[textField setBackgroundColor:[UIColor whiteColor]];<br />
		[textField setPlaceholder:@"Password"];<br />
		[textField setSecureTextEntry:YES];<br />
		[textField setBorderStyle:UITextBorderStyleRoundedRect];<br />
		[textField setBackgroundColor:[UIColor clearColor]];<br />
		[self addSubview:textField];<br />
		self.textPassword = textField;<br />
		[textField release];<br />
		self.message = [NSString stringWithFormat:@"%@\n\n\n", message];</p>
<p>	}<br />
	return self;<br />
}</p>
<p>- (void)show<br />
{<br />
	[textUser becomeFirstResponder];<br />
	[super show];<br />
}</p>
<p>- (NSString *)userName<br />
{<br />
	return textUser.text;<br />
}</p>
<p>- (NSString *)userPassword<br />
{<br />
	return textPassword.text;<br />
}</p>
<p>- (void)dealloc<br />
{<br />
	[textUser release];<br />
	[textPassword release];<br />
	[super dealloc];<br />
}</p>
<p>@end<br />
</code></p>
<p>Para usarla:<br />
<code><br />
SilLoginPrompt *newPrompt = [[SilLoginPrompt alloc] initWithTitle:@"Test"<br />
													   message:@"Message..."<br />
													  delegate:self<br />
											 cancelButtonTitle:@"cancel"<br />
											 okButtonTitle:@"login"];<br />
[newPrompt show];<br />
[newPrompt release];<br />
</code><br />
Y para recibir la información ingresada con el delegado:<br />
<code><br />
#pragma mark -<br />
- (void)alertView:(UIAlertView *)alertView willDismissWithButtonIndex:(NSInteger)buttonIndex<br />
{<br />
	if (buttonIndex != [alertView cancelButtonIndex])<br />
	{<br />
		if ([alertView isKindOfClass:[SilLoginPrompt class]]) {<br />
			NSString * userName = [(SilLoginPrompt *)alertView userName];<br />
			NSString * userPassword = [(SilLoginPrompt *)alertView userPassword];<br />
			NSLog(@"Entered information: %@ - %@", userName, userPassword);<br />
		}<br />
	}<br />
}<br />
</code></p>
<p>La información comentada se refiere a personalización del campo de texto hecha con QuartzCore.</p>

<hr />
<p><small>&copy; Byron H for <a href="http://byronh.axul.net">Silenceway</a>, 2011. |
<a href="http://byronh.axul.net/2011/04/29/usar-un-uialertview-para-solicitar-usuario-y-contrasena/">Permalink</a> |
<a href="http://byronh.axul.net/2011/04/29/usar-un-uialertview-para-solicitar-usuario-y-contrasena/#comments">2 comments</a> |
Add to
<a href="http://del.icio.us/post?url=http://byronh.axul.net/2011/04/29/usar-un-uialertview-para-solicitar-usuario-y-contrasena/&amp;title=Usar un UIAlertView para solicitar usuario y contraseña">del.icio.us</a>
<br/>
Post tags: <a href="http://byronh.axul.net/tag/ios/" rel="tag">iOs</a>, <a href="http://byronh.axul.net/tag/iphone/" rel="tag">Iphone</a>, <a href="http://byronh.axul.net/tag/uialertview/" rel="tag">UIAlertView</a>, <a href="http://byronh.axul.net/tag/xcode/" rel="tag">Xcode</a><br/>
</small></p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://byronh.axul.net/2011/04/29/usar-un-uialertview-para-solicitar-usuario-y-contrasena/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Abrir documentos desde un proyector de flash</title>
		<link>http://byronh.axul.net/2011/01/15/abrir-documentos-desde-un-proyector-de-flash/</link>
		<comments>http://byronh.axul.net/2011/01/15/abrir-documentos-desde-un-proyector-de-flash/#comments</comments>
		<pubDate>Sat, 15 Jan 2011 18:52:21 +0000</pubDate>
		<dc:creator>Byron H</dc:creator>
				<category><![CDATA[Actionscript]]></category>
		<category><![CDATA[Programar]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://byronh.axul.net/?p=148</guid>
		<description><![CDATA[Hace poco estaba diseñando una multimedia en flash que requería abrir algunos documentos externos: algunos archivos pdf, imágenes y archivos doc entre otros. Leyendo un artículo de Northcode llamado Conquering FSCommand EXEC Part 1 : Proxy que habla sobre las restricciones existentes en el comando exec de flash y haciendo pruebas con el proxy.exe que [...]]]></description>
			<content:encoded><![CDATA[
<div class="topsy_widget_data topsy_theme_mustard" style="float: right;margin-left: 0.75em; background: url(data:,%7B%20%22url%22%3A%20%22http%253A%252F%252Fbyronh.axul.net%252F2011%252F01%252F15%252Fabrir-documentos-desde-un-proyector-de-flash%252F%22%2C%20%22shorturl%22%3A%20%22http%3A%2F%2Fbit.ly%2FhkCGC1%22%2C%20%22style%22%3A%20%22big%22%2C%20%22title%22%3A%20%22Abrir%20documentos%20desde%20un%20proyector%20de%20flash%22%20%7D);"></div>
<p>Hace poco estaba diseñando una multimedia en flash que requería abrir algunos documentos externos: algunos archivos pdf, imágenes y archivos doc entre otros.<br />
Leyendo un artículo de <a href="http://byronh.axul.net/go.php?http://www.northcode.com" title="(43 hits)">Northcode</a> llamado <a href="http://byronh.axul.net/go.php?http://www.northcode.com/blog.php/2007/08/07/Conquering-FSCommand-EXEC-Part-1-Proxy" title="(51 hits)">Conquering FSCommand EXEC Part 1 : Proxy</a> que habla sobre las restricciones existentes en el comando <em>exec</em> de flash y haciendo pruebas con el proxy.exe que está publicado en la página, me di cuenta que para uno o dos archivos es suficiente, pero la multimedia en que estaba trabajando tenía una documentación mucho mayor y quería, además, poder organizarla en directorios.<br />
Así que decidí crear una aplicación que me permitiera abrir archivos usando como puente el portapapeles de windows.<br />
Es fácil de usar ya que es sólo crear en el actionscript de la película:<br />
<code><br />
var cmd = "myfile.pdf";<br />
System.setClipboard(cmd);<br />
fscommand("exec", "execClip.exe");<br />
</code><br />
Y es suficiente ya que el execClip carga un archivo de procesamiento por lotes (BAT) que se encarga de enviar la llamada al sistema operativo para ejecutar la aplicación asociada con ese documento.<br />
Se puede usar navegación en directorios usando:<br />
<code><br />
var cmd = "....\\docs\\myfile.pdf";<br />
</code><br />
La aplicación está publicada en <a href="http://byronh.axul.net/go.php?http://www.silencesoft.net/" title="(150 hits)">Silencesoft</a>:<br />
<a href="http://byronh.axul.net/go.php?http://www.silencesoft.net/execClip/execClip.php" title="(42 hits)">execClip</a>.<br />
También hay un ejemplo de publicación en formato CS3.</p>

<hr />
<p><small>&copy; Byron H for <a href="http://byronh.axul.net">Silenceway</a>, 2011. |
<a href="http://byronh.axul.net/2011/01/15/abrir-documentos-desde-un-proyector-de-flash/">Permalink</a> |
<a href="http://byronh.axul.net/2011/01/15/abrir-documentos-desde-un-proyector-de-flash/#comments">One comment</a> |
Add to
<a href="http://del.icio.us/post?url=http://byronh.axul.net/2011/01/15/abrir-documentos-desde-un-proyector-de-flash/&amp;title=Abrir documentos desde un proyector de flash">del.icio.us</a>
<br/>
Post tags: <br/>
</small></p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://byronh.axul.net/2011/01/15/abrir-documentos-desde-un-proyector-de-flash/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Aplicaciones en Iphone</title>
		<link>http://byronh.axul.net/2010/06/18/aplicaciones-en-iphone/</link>
		<comments>http://byronh.axul.net/2010/06/18/aplicaciones-en-iphone/#comments</comments>
		<pubDate>Fri, 18 Jun 2010 16:24:26 +0000</pubDate>
		<dc:creator>Byron H</dc:creator>
				<category><![CDATA[Iphone]]></category>
		<category><![CDATA[Programar]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[desarrollo]]></category>

		<guid isPermaLink="false">http://byronh.axul.net/?p=140</guid>
		<description><![CDATA[Por estos días leyendo sobre el diseño de aplicaciones para iphone y este es un buen documento de 37 páginas para guiarse en este desarrollo: Building PhotoKast: Creating an iPhone app in one month &#169; Byron H for Silenceway, 2010. &#124; Permalink &#124; One comment &#124; Add to del.icio.us Post tags: desarrollo, Iphone, Programar Feed [...]]]></description>
			<content:encoded><![CDATA[
<div class="topsy_widget_data topsy_theme_mustard" style="float: right;margin-left: 0.75em; background: url(data:,%7B%20%22url%22%3A%20%22http%253A%252F%252Fbyronh.axul.net%252F2010%252F06%252F18%252Faplicaciones-en-iphone%252F%22%2C%20%22style%22%3A%20%22big%22%2C%20%22title%22%3A%20%22Aplicaciones%20en%20Iphone%22%20%7D);"></div>
<p>Por estos días leyendo sobre el diseño de aplicaciones para iphone y este es un buen documento de 37 páginas para guiarse en este desarrollo:</p>
<p><a title="View Building PhotoKast: Creating an iPhone app in one month on Scribd (98 hits)" href="http://byronh.axul.net/go.php?http://www.scribd.com/doc/12684298/Building-PhotoKast-Creating-an-iPhone-app-in-one-month" style="margin: 12px auto 6px auto; font-family: Helvetica,Arial,Sans-serif; font-style: normal; font-variant: normal; font-weight: normal; font-size: 14px; line-height: normal; font-size-adjust: none; font-stretch: normal; -x-system-font: none; display: block; text-decoration: underline;">Building PhotoKast: Creating an iPhone app in one month</a> <object id="doc_361093962223905" name="doc_361093962223905" height="500" width="100%" type="application/x-shockwave-flash" data="http://d1.scribdassets.com/ScribdViewer.swf" style="outline:none;" rel="media:document" resource="http://d1.scribdassets.com/ScribdViewer.swf?document_id=12684298&#038;access_key=key-c0uc3wjw8uao8poe0k4&#038;page=1&#038;viewMode=list" xmlns:media="http://search.yahoo.com/searchmonkey/media/" xmlns:dc="http://purl.org/dc/terms/" ><param name="movie" value="http://d1.scribdassets.com/ScribdViewer.swf"></param><param name="wmode" value="opaque"></param><param name="bgcolor" value="#ffffff"></param><param name="allowFullScreen" value="true"></param><param name="allowScriptAccess" value="always"></param><param name="FlashVars" value="document_id=12684298&#038;access_key=key-c0uc3wjw8uao8poe0k4&#038;page=1&#038;viewMode=list"><embed id="doc_361093962223905" name="doc_361093962223905" src="http://d1.scribdassets.com/ScribdViewer.swf?document_id=12684298&#038;access_key=key-c0uc3wjw8uao8poe0k4&#038;page=1&#038;viewMode=list" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" height="500" width="100%" wmode="opaque" bgcolor="#ffffff"></embed></param></object> </p>

<hr />
<p><small>&copy; Byron H for <a href="http://byronh.axul.net">Silenceway</a>, 2010. |
<a href="http://byronh.axul.net/2010/06/18/aplicaciones-en-iphone/">Permalink</a> |
<a href="http://byronh.axul.net/2010/06/18/aplicaciones-en-iphone/#comments">One comment</a> |
Add to
<a href="http://del.icio.us/post?url=http://byronh.axul.net/2010/06/18/aplicaciones-en-iphone/&amp;title=Aplicaciones en Iphone">del.icio.us</a>
<br/>
Post tags: <a href="http://byronh.axul.net/tag/desarrollo/" rel="tag">desarrollo</a>, <a href="http://byronh.axul.net/tag/iphone/" rel="tag">Iphone</a>, <a href="http://byronh.axul.net/tag/programar/" rel="tag">Programar</a><br/>
</small></p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://byronh.axul.net/2010/06/18/aplicaciones-en-iphone/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Slitaz 2.0, una buena alternativa de Sistema Operativo</title>
		<link>http://byronh.axul.net/2009/10/25/slitaz-20-una-buena-alternativa-de-sistema-operativo/</link>
		<comments>http://byronh.axul.net/2009/10/25/slitaz-20-una-buena-alternativa-de-sistema-operativo/#comments</comments>
		<pubDate>Mon, 26 Oct 2009 01:14:43 +0000</pubDate>
		<dc:creator>Byron H</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[OS]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Sistemas Operativos]]></category>

		<guid isPermaLink="false">http://byronh.axul.net/?p=127</guid>
		<description><![CDATA[Slitaz es una distribuciÃ²n linux diseÃ±ada para equipos con poca capacidad que puede ser iniciado desde un cd o una usb. El archivo que se descarga para ejecutar el sistema operativo completo pesa sÃ²lo 29 megas y es bastante completo. Actualmente lo estoy usando en un Compaq Evo N200 y corre muy bien, no es [...]]]></description>
			<content:encoded><![CDATA[
<div class="topsy_widget_data topsy_theme_mustard" style="float: right;margin-left: 0.75em; background: url(data:,%7B%20%22url%22%3A%20%22http%253A%252F%252Fbyronh.axul.net%252F2009%252F10%252F25%252Fslitaz-20-una-buena-alternativa-de-sistema-operativo%252F%22%2C%20%22style%22%3A%20%22big%22%2C%20%22title%22%3A%20%22Slitaz%202.0%2C%20una%20buena%20alternativa%20de%20Sistema%20Operativo%22%20%7D);"></div>
<p>Slitaz es una distribuciÃ²n linux diseÃ±ada para equipos con poca capacidad que puede ser iniciado desde un cd o una usb.<br />
El archivo que se descarga para ejecutar el sistema operativo completo pesa sÃ²lo 29 megas y es bastante completo.<br />
Actualmente lo estoy usando en un Compaq Evo N200 y corre muy bien, no es complicado de instalar y tiene un amplio listado de paquetes para utilizar.<br />
Viene con so</p>

<hr />
<p><small>&copy; Byron H for <a href="http://byronh.axul.net">Silenceway</a>, 2009. |
<a href="http://byronh.axul.net/2009/10/25/slitaz-20-una-buena-alternativa-de-sistema-operativo/">Permalink</a> |
<a href="http://byronh.axul.net/2009/10/25/slitaz-20-una-buena-alternativa-de-sistema-operativo/#comments">No comment</a> |
Add to
<a href="http://del.icio.us/post?url=http://byronh.axul.net/2009/10/25/slitaz-20-una-buena-alternativa-de-sistema-operativo/&amp;title=Slitaz 2.0, una buena alternativa de Sistema Operativo">del.icio.us</a>
<br/>
Post tags: <a href="http://byronh.axul.net/tag/linux/" rel="tag">Linux</a>, <a href="http://byronh.axul.net/tag/os/" rel="tag">OS</a>, <a href="http://byronh.axul.net/tag/sistemas-operativos/" rel="tag">Sistemas Operativos</a><br/>
</small></p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://byronh.axul.net/2009/10/25/slitaz-20-una-buena-alternativa-de-sistema-operativo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Publicado Formpress 0.4 pre</title>
		<link>http://byronh.axul.net/2009/07/21/publicado-formpress-04-pre/</link>
		<comments>http://byronh.axul.net/2009/07/21/publicado-formpress-04-pre/#comments</comments>
		<pubDate>Tue, 21 Jul 2009 18:09:48 +0000</pubDate>
		<dc:creator>Byron H</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Programar]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[formpress]]></category>
		<category><![CDATA[plugin]]></category>

		<guid isPermaLink="false">http://byronh.axul.net/?p=122</guid>
		<description><![CDATA[Después de dedicarle tiempo a la actualización y a añadirle nuevas características al plugin Formpress de WordPress, hoy subí esta versión en línea para las primeras pruebas. Falta agregarle bastante documentación, pero aún estoy trabajando en código así que cuando termine me pondré a organizar toda esa parte. Igual tiene por ahí algunos "echo" que [...]]]></description>
			<content:encoded><![CDATA[
<div class="topsy_widget_data topsy_theme_mustard" style="float: right;margin-left: 0.75em; background: url(data:,%7B%20%22url%22%3A%20%22http%253A%252F%252Fbyronh.axul.net%252F2009%252F07%252F21%252Fpublicado-formpress-04-pre%252F%22%2C%20%22style%22%3A%20%22big%22%2C%20%22title%22%3A%20%22Publicado%20Formpress%200.4%20pre%22%20%7D);"></div>
<p>Después de dedicarle tiempo a la actualización y a añadirle nuevas características al plugin Formpress de WordPress, hoy subí esta versión en línea para las primeras pruebas.<br />
Falta agregarle bastante documentación, pero aún estoy trabajando en código así que cuando termine me pondré a organizar toda esa parte.<br />
Igual tiene por ahí algunos "echo" que no debería, pero estoy en depuración <img src='http://byronh.axul.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /><br />
<a href="http://byronh.axul.net/go.php?http://wordpress.org/support/topic/292268?replies=1" title="(143 hits)">En WordPress</a><br />
<a href="http://byronh.axul.net/go.php?http://www.silencesoft.net/Wordpress/formpress-0.4pre.zip" title="(123 hits)">Zip</a></p>

<hr />
<p><small>&copy; Byron H for <a href="http://byronh.axul.net">Silenceway</a>, 2009. |
<a href="http://byronh.axul.net/2009/07/21/publicado-formpress-04-pre/">Permalink</a> |
<a href="http://byronh.axul.net/2009/07/21/publicado-formpress-04-pre/#comments">No comment</a> |
Add to
<a href="http://del.icio.us/post?url=http://byronh.axul.net/2009/07/21/publicado-formpress-04-pre/&amp;title=Publicado Formpress 0.4 pre">del.icio.us</a>
<br/>
Post tags: <a href="http://byronh.axul.net/tag/formpress/" rel="tag">formpress</a>, <a href="http://byronh.axul.net/tag/php/" rel="tag">PHP</a>, <a href="http://byronh.axul.net/tag/plugin/" rel="tag">plugin</a>, <a href="http://byronh.axul.net/tag/wordpress/" rel="tag">wordpress</a><br/>
</small></p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://byronh.axul.net/2009/07/21/publicado-formpress-04-pre/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Silencesoft</title>
		<link>http://byronh.axul.net/2009/02/19/silencesoft/</link>
		<comments>http://byronh.axul.net/2009/02/19/silencesoft/#comments</comments>
		<pubDate>Thu, 19 Feb 2009 15:20:47 +0000</pubDate>
		<dc:creator>Byron H</dc:creator>
				<category><![CDATA[Otros]]></category>
		<category><![CDATA[Programar]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[silencesoft]]></category>

		<guid isPermaLink="false">http://byronh.axul.net/?p=118</guid>
		<description><![CDATA[Changed the silencesoft url. Now is silencesoft.net &#169; Byron H for Silenceway, 2009. &#124; Permalink &#124; No comment &#124; Add to del.icio.us Post tags: silencesoft, Software Feed enhanced by Better Feed from Ozh]]></description>
			<content:encoded><![CDATA[
<div class="topsy_widget_data topsy_theme_mustard" style="float: right;margin-left: 0.75em; background: url(data:,%7B%20%22url%22%3A%20%22http%253A%252F%252Fbyronh.axul.net%252F2009%252F02%252F19%252Fsilencesoft%252F%22%2C%20%22style%22%3A%20%22big%22%2C%20%22title%22%3A%20%22Silencesoft%22%20%7D);"></div>
<p>Changed the silencesoft url.<br />
Now is <a href="http://byronh.axul.net/go.php?http://www.silencesoft.net/" title="(150 hits)">silencesoft.net</a><br />
 <img src='http://byronh.axul.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>

<hr />
<p><small>&copy; Byron H for <a href="http://byronh.axul.net">Silenceway</a>, 2009. |
<a href="http://byronh.axul.net/2009/02/19/silencesoft/">Permalink</a> |
<a href="http://byronh.axul.net/2009/02/19/silencesoft/#comments">No comment</a> |
Add to
<a href="http://del.icio.us/post?url=http://byronh.axul.net/2009/02/19/silencesoft/&amp;title=Silencesoft">del.icio.us</a>
<br/>
Post tags: <a href="http://byronh.axul.net/tag/silencesoft/" rel="tag">silencesoft</a>, <a href="http://byronh.axul.net/tag/software/" rel="tag">Software</a><br/>
</small></p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://byronh.axul.net/2009/02/19/silencesoft/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>KMLite beta 3</title>
		<link>http://byronh.axul.net/2008/06/25/kmlite-beta-3/</link>
		<comments>http://byronh.axul.net/2008/06/25/kmlite-beta-3/#comments</comments>
		<pubDate>Thu, 26 Jun 2008 04:06:31 +0000</pubDate>
		<dc:creator>Byron H</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://byronh.axul.net/2008/06/25/kmlite-beta-3/</guid>
		<description><![CDATA[Hay una nueva versiÃ³n de descarga de KMLite que se ha convertido en mi navegador predeterminado. Esta beta 3 tiene algunas correcciones de bugs como la de bookmarks que no permitÃ­a abrir el navegador. Para ver la informaciÃ³n debe pertenecer al grupo the true underground en Google groups. Descargar KMLite beta 3. Si al iniciar [...]]]></description>
			<content:encoded><![CDATA[
<div class="topsy_widget_data topsy_theme_mustard" style="float: right;margin-left: 0.75em; background: url(data:,%7B%20%22url%22%3A%20%22http%253A%252F%252Fbyronh.axul.net%252F2008%252F06%252F25%252Fkmlite-beta-3%252F%22%2C%20%22style%22%3A%20%22big%22%2C%20%22title%22%3A%20%22KMLite%20beta%203%22%20%7D);"></div>
<p>Hay una nueva versiÃ³n de descarga de <a href="http://byronh.axul.net/go.php?http://geocities.com/grenleef" title="(134 hits)">KMLite</a> que se ha convertido en mi navegador predeterminado.<br />
Esta beta 3 tiene algunas correcciones de bugs como la de bookmarks que no permitÃ­a abrir el navegador.<br />
Para ver la informaciÃ³n debe pertenecer al grupo <a href="http://byronh.axul.net/go.php?http://groups.google.com/group/the-true-underground?lnk=" title="(108 hits)">the true underground</a> en <a href="http://byronh.axul.net/go.php?http://groups.google.com/" title="(115 hits)">Google groups</a>.</p>
<p>Descargar <a href="http://byronh.axul.net/go.php?http://www.mediafire.com/?ntlgwxmkjuu" title="(176 hits)">KMLite beta 3</a>.<br />
Si al iniciar muestra un error de dll faltantes: <a href="http://byronh.axul.net/go.php?http://www.mediafire.com/?qbhlsuymzxr" title="(147 hits)">Instalador de MSVCP71.dll y MSVCR71.dll</a>.</p>
<p>Ya lodescarguÃ© y lo instalÃ©.<br />
 <img src='http://byronh.axul.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>

<hr />
<p><small>&copy; Byron H for <a href="http://byronh.axul.net">Silenceway</a>, 2008. |
<a href="http://byronh.axul.net/2008/06/25/kmlite-beta-3/">Permalink</a> |
<a href="http://byronh.axul.net/2008/06/25/kmlite-beta-3/#comments">No comment</a> |
Add to
<a href="http://del.icio.us/post?url=http://byronh.axul.net/2008/06/25/kmlite-beta-3/&amp;title=KMLite beta 3">del.icio.us</a>
<br/>
Post tags: <br/>
</small></p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://byronh.axul.net/2008/06/25/kmlite-beta-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Optimizar Firefox en Memoria</title>
		<link>http://byronh.axul.net/2007/12/16/optimizar-firefox-en-memoria/</link>
		<comments>http://byronh.axul.net/2007/12/16/optimizar-firefox-en-memoria/#comments</comments>
		<pubDate>Mon, 17 Dec 2007 03:37:14 +0000</pubDate>
		<dc:creator>Byron H</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[OS]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://byronh.axul.net/2007/12/16/optimizar-firefox-en-memoria/</guid>
		<description><![CDATA[Leyendo Mi Super BLog,me encontrÃ© con una entrada acerca de un software que optimiza el uso de Firefox en memoria.]]></description>
			<content:encoded><![CDATA[
<div class="topsy_widget_data topsy_theme_mustard" style="float: right;margin-left: 0.75em; background: url(data:,%7B%20%22url%22%3A%20%22http%253A%252F%252Fbyronh.axul.net%252F2007%252F12%252F16%252Foptimizar-firefox-en-memoria%252F%22%2C%20%22style%22%3A%20%22big%22%2C%20%22title%22%3A%20%22Optimizar%20Firefox%20en%20Memoria%22%20%7D);"></div>
<p>Leyendo <a href="http://byronh.axul.net/go.php?http://albertcito.wordpress.com/" title="(383 hits)">Mi Super BLog</a>,me encontrÃ© con una entrada acerca de un software que optimiza el uso de Firefox en memoria.<br /<br />
<a href="http://felipex.net/2007/11/08/firefox-ultimate-optimizer-v11/"/>Firefox Ultimate Optimizer.</p>
<p><a href="http://byronh.axul.net/go.php?http://albertcito.wordpress.com/2007/12/03/firefox-aplicacion-para-no-ocupar-casi-nada-ram-y-mas-extensiones/" title="(121 hits)">Firefox: AplicaciÃ³n Para no Ocupar Casi Nada Ram y MÃ¡s Extensiones</a>.</p>

<hr />
<p><small>&copy; Byron H for <a href="http://byronh.axul.net">Silenceway</a>, 2007. |
<a href="http://byronh.axul.net/2007/12/16/optimizar-firefox-en-memoria/">Permalink</a> |
<a href="http://byronh.axul.net/2007/12/16/optimizar-firefox-en-memoria/#comments">No comment</a> |
Add to
<a href="http://del.icio.us/post?url=http://byronh.axul.net/2007/12/16/optimizar-firefox-en-memoria/&amp;title=Optimizar Firefox en Memoria">del.icio.us</a>
<br/>
Post tags: <br/>
</small></p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://byronh.axul.net/2007/12/16/optimizar-firefox-en-memoria/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Entrevista a Linus Torvalds sobre Linux en el 2008</title>
		<link>http://byronh.axul.net/2007/11/27/entrevista-a-linus-torvalds-sobre-linux-en-el-2008/</link>
		<comments>http://byronh.axul.net/2007/11/27/entrevista-a-linus-torvalds-sobre-linux-en-el-2008/#comments</comments>
		<pubDate>Tue, 27 Nov 2007 17:22:58 +0000</pubDate>
		<dc:creator>Byron H</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[OS]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://byronh.axul.net/2007/11/27/entrevista-a-linus-torvalds-sobre-linux-en-el-2008/</guid>
		<description><![CDATA[Information Week hizo una entrevista por correo electrÃ²nico a Linus Torvalds sobre linux para el 2008. Esta entrevista fue traducida en La Tercera OpciÃ²n. Gracias a Barrapunto. &#169; Byron H for Silenceway, 2007. &#124; Permalink &#124; No comment &#124; Add to del.icio.us Post tags: Feed enhanced by Better Feed from Ozh]]></description>
			<content:encoded><![CDATA[
<div class="topsy_widget_data topsy_theme_mustard" style="float: right;margin-left: 0.75em; background: url(data:,%7B%20%22url%22%3A%20%22http%253A%252F%252Fbyronh.axul.net%252F2007%252F11%252F27%252Fentrevista-a-linus-torvalds-sobre-linux-en-el-2008%252F%22%2C%20%22style%22%3A%20%22big%22%2C%20%22title%22%3A%20%22Entrevista%20a%20Linus%20Torvalds%20sobre%20Linux%20en%20el%202008%22%20%7D);"></div>
<p><a href="http://byronh.axul.net/go.php?http://www.informationweek.com/" title="(133 hits)">Information Week</a> hizo una <a href="http://byronh.axul.net/go.php?http://www.informationweek.com/story/showArticle.jhtml?articleID=204202971" title="(200 hits)">entrevista</a> por correo electrÃ²nico a Linus Torvalds sobre linux para el 2008. Esta entrevista fue <a href="http://byronh.axul.net/go.php?http://www.laterceraopcion.com/linus-torvalds-sobre-linux-en-2008/" title="(144 hits)">traducida</a> en <a href="http://byronh.axul.net/go.php?http://www.laterceraopcion.com/" title="(193 hits)">La Tercera OpciÃ²n</a>.</p>
<p>Gracias a <a href="http://byronh.axul.net/go.php?http://softlibre.barrapunto.com/article.pl?sid=07/11/26/1838218&#038;from=rss" title="(5 hits)">Barrapunto</a>.</p>

<hr />
<p><small>&copy; Byron H for <a href="http://byronh.axul.net">Silenceway</a>, 2007. |
<a href="http://byronh.axul.net/2007/11/27/entrevista-a-linus-torvalds-sobre-linux-en-el-2008/">Permalink</a> |
<a href="http://byronh.axul.net/2007/11/27/entrevista-a-linus-torvalds-sobre-linux-en-el-2008/#comments">No comment</a> |
Add to
<a href="http://del.icio.us/post?url=http://byronh.axul.net/2007/11/27/entrevista-a-linus-torvalds-sobre-linux-en-el-2008/&amp;title=Entrevista a Linus Torvalds sobre Linux en el 2008">del.icio.us</a>
<br/>
Post tags: <br/>
</small></p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://byronh.axul.net/2007/11/27/entrevista-a-linus-torvalds-sobre-linux-en-el-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Y mÃ¡s entregas&#8230;</title>
		<link>http://byronh.axul.net/2007/11/12/y-mas-entregas/</link>
		<comments>http://byronh.axul.net/2007/11/12/y-mas-entregas/#comments</comments>
		<pubDate>Tue, 13 Nov 2007 00:58:29 +0000</pubDate>
		<dc:creator>Byron H</dc:creator>
				<category><![CDATA[Bitácora]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://byronh.axul.net/2007/11/12/y-mas-entregas/</guid>
		<description><![CDATA[Y mÃ¡s violetCMS SWF Version. Una nueva versiÃ³n con mejoras y plugins ya fucionando. (La versiÃ³n 0.7). AsÃ­ que pronto podrÃ© subir para la descarga de usuarios este Administrador de Contenido (CMS). Sitio Web: CorporaciÃ³n SueÃ±os de Libertad. &#169; Byron H for Silenceway, 2007. &#124; Permalink &#124; No comment &#124; Add to del.icio.us Post tags: [...]]]></description>
			<content:encoded><![CDATA[
<div class="topsy_widget_data topsy_theme_mustard" style="float: right;margin-left: 0.75em; background: url(data:,%7B%20%22url%22%3A%20%22http%253A%252F%252Fbyronh.axul.net%252F2007%252F11%252F12%252Fy-mas-entregas%252F%22%2C%20%22style%22%3A%20%22big%22%2C%20%22title%22%3A%20%22Y%20m%C3%83%C2%A1s%20entregas...%22%20%7D);"></div>
<p>Y mÃ¡s violetCMS SWF Version.<br />
Una nueva versiÃ³n con mejoras y plugins ya fucionando. (La versiÃ³n 0.7). <br />
AsÃ­ que pronto podrÃ© subir para la descarga de usuarios este Administrador de Contenido (CMS).</p>
<p>Sitio Web:<br />
<a href="http://byronh.axul.net/go.php?http://www.corporacionsuenosdelibertad.com" title="(139 hits)">CorporaciÃ³n SueÃ±os de Libertad</a>.<br />
<a href="http://byronh.axul.net/go.php?http://www.zooomr.com/photos/15990@Z01/3726345/" title="Photo Sharing (148 hits)"><img src="http://static.zooomr.com/images/3726345_99b4ac6ff9.jpg" border="0" width="500" height="380" alt="corporacionsuenosdelibertad_com" /></a></p>

<hr />
<p><small>&copy; Byron H for <a href="http://byronh.axul.net">Silenceway</a>, 2007. |
<a href="http://byronh.axul.net/2007/11/12/y-mas-entregas/">Permalink</a> |
<a href="http://byronh.axul.net/2007/11/12/y-mas-entregas/#comments">No comment</a> |
Add to
<a href="http://del.icio.us/post?url=http://byronh.axul.net/2007/11/12/y-mas-entregas/&amp;title=Y mÃ¡s entregas&#8230;">del.icio.us</a>
<br/>
Post tags: <br/>
</small></p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://byronh.axul.net/2007/11/12/y-mas-entregas/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

