<?xml version="1.0" encoding="UTF-8"?><!-- generator="WordPress/2.7" -->
<rss version="0.92">
<channel>
	<title>::Albertux::Blog::</title>
	<link>http://albertux.ayalasoft.com</link>
	<description>#include  &#60;Merry/Xmas/and/Happy/New/Year.h&#62;</description>
	<lastBuildDate>Sat, 03 Jan 2009 17:10:01 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<item>
		<title>HAPPY NEW YEAR</title>
		<description>
if year == 2009: print("HAPPY NEW YEAR"); # Python (py3k)


if ($year == 2009) { print "HAPPY NEW YEAR" } # Perl


if (year == 2009) { document.write("HAPPY NEW YEAR") } // JavaScript


if year == 2009 then print("HAPPY NEW YEAR") end -- Lua


if ($year == 2009) { echo "HAPPY NEW YEAR"; } ...</description>
		<link>http://albertux.ayalasoft.com/2009/01/01/happy-new-year/</link>
			</item>
	<item>
		<title>Easy Host Fake Win32</title>
		<description>Easy Host Fake Win32
Sometimes we want to redirect some host to another ip address, the quick option is edit the hosts file.
Well i made this tool to do that.
Java Desktop Application, needs Java RunTime:

Easy Host Fake Java Setup
Is my first Java desktop application on NetBeans
PHP5 script, needs Console Getopt Pear ...</description>
		<link>http://albertux.ayalasoft.com/2008/12/27/easy-host-fake-win32/</link>
			</item>
	<item>
		<title>Tcl scripting and SQLite</title>
		<description>Tcl scripting and SQLite
Tcl tutorial
Download Tcl/Tk (source/binary)
SQLite API (tclsh)
Download SQlite (source/binary)
A simple example (taken from sqlite.org):
#!/usr/bin/tclsh
if {$argc!=2} {
  puts stderr "Usage: %s DATABASE SQL-STATEMENT"
  exit 1
}
load /usr/lib/tclsqlite3.so Sqlite3
sqlite3 db [lindex $argv 0]
db eval [lindex $argv 1] x {
  foreach v $x(*) {
    puts "$v ...</description>
		<link>http://albertux.ayalasoft.com/2008/12/24/tcl-scripting-and-sqlite/</link>
			</item>
	<item>
		<title>Fallecio Diego Zapata</title>
		<description>Fallecio Diego Zapata

No tiene mucho de que tuve la oportunidad de conocerlo en persona y hoy me entero de que fallecio, leyendo las noticas en la mañana.
http://www.oem.com.mx/elsoldecuernavaca/notas/n980182.htm </description>
		<link>http://albertux.ayalasoft.com/2008/12/22/fallecio-diego-zapata/</link>
			</item>
	<item>
		<title>qTranslate Tag Fix WordPress 2.7</title>
		<description>qTranslate Tag Fix WordPress 2.7

qTranslate is a plugin to makes creation of multilingual content as easy as working with a single language.

But ... qTranslate 2.0 crash my WordPress :'(

It's 1:15 A.M. I dont have much time to check now what's the problem, next days I'm going to Nuevo Leon with ...</description>
		<link>http://albertux.ayalasoft.com/2008/12/22/qtranslate-tag-fix-wordpress-27/</link>
			</item>
	<item>
		<title>Win32 Installers</title>
		<description>Win32 Installers

Sometimes you need to distribute your program to another computers one option is make a installer

Nullsoft Scriptable Installer System (WebSite)

You are Delphi/Pascal developer ?

Inno setup Compiler (WebSite)

You want quick and easy installer, without scripting language ?

Little Install Builder (WebSite)

If you are on Visual Studio you can use publish wizard ...</description>
		<link>http://albertux.ayalasoft.com/2008/12/21/win32-installers/</link>
			</item>
	<item>
		<title>MySQL 5.1</title>
		<description>MySQL 5.1
"We ran a side by side comparison between MySQL and Oracle both partitioned and unpartitioned. MySQL outperformed Oracle at least 2:1 in all like for like tests and, at the extreme, well partitioned MySQL was over 31 times faster than vanilla Oracle tables."

Guy Adams

Chief Technical Officer

Parallel Ltd.
Downloads:

http://dev.mysql.com/downloads/mysql/5.1.html#downloads

MySQL Workbench:

http://dev.mysql.com/downloads/workbench/5.1.html

GUI Tools:

http://dev.mysql.com/downloads/gui-tools/5.0.html

Connectors:

http://www.mysql.com/products/connector/ </description>
		<link>http://albertux.ayalasoft.com/2008/12/17/mysql-51/</link>
			</item>
	<item>
		<title>Google Native Client</title>
		<description>Google Native Client

Native Client is an open-source research technology for running x86 native code in web applications


WebSite: http://code.google.com/p/nativeclient/

More information on Google Code Blog

Download native client </description>
		<link>http://albertux.ayalasoft.com/2008/12/11/google-native-client/</link>
			</item>
	<item>
		<title>Fixing the Time</title>
		<description>Fixing the Time
function total(year) {
  var seconds = 365 * 24 * 60 * 60; //Normal Year;
  var plus = 24 * 60 * 60; // Leap year have one more day
  var leap = false;
  if ((year % 4 == 0 &#38;&#38; year % 100 ...</description>
		<link>http://albertux.ayalasoft.com/2008/12/07/fixing-the-time/</link>
			</item>
	<item>
		<title>JavaFX 1.0 Release</title>
		<description>JavaFX 1.0 Release

JavaFX is a rich client platform for building cross-device applications and content. Designed to enable easy creation and deployment of rich internet applications (RIAs) with immersive media and content, the JavaFX platform ensures that RIAs look and behave consistently across diverse form factors and devices.

See the Tutorial, Samples, ...</description>
		<link>http://albertux.ayalasoft.com/2008/12/05/javafx-10-release/</link>
			</item>
	<item>
		<title>Send Fake Mail</title>
		<description>Send Fake Mail



Remember is very posible the mail was arrived on Junk Box.
#!/usr/bin/perl
# Script: fakemail.pl, Version 1.0  [2008-12-04]
# Author: Albertux (Alberto Isaac Ayala Esquivias)
# Web Author: http://Albertux.AyalaSoft.com
# FeedBack:
# Description: Send fake mail.
# Licence: GPLv3

use strict;
use warnings;

# Chouse the host to connect on port 25
my $host='localhost'; 

# The vars
my @raw_data=;
my ...</description>
		<link>http://albertux.ayalasoft.com/2008/12/05/send-fake-mail/</link>
			</item>
</channel>
</rss>
