Friday, November 13, 2009
Redes Neuronales
http://dynamicnotions.blogspot.com/2008/11/c-self-organising-map-som.html
http://www.shy.am/2005/12/kohonen-self-organizing-map-demos/
http://www.codeproject.com/KB/recipes/sofm.aspx
http://69.10.233.10/KB/recipes/aforge_neuro.aspx
http://www.heatonresearch.com/encog
http://www.aforgenet.com/framework/downloads.html
Thursday, November 12, 2009
Wednesday, November 11, 2009
Vesicula Biliar
http://www.ecodigest.net/atlas_cap02.php
Limón y propiedades contra calculos vesicuales
http://www.casapia.com/Paginacast/Paginas/Paginasdemenus/MenudeInformaciones/LosAlimentos/ElLimon.htm
Thursday, November 05, 2009
SQL Server 200x Backups Automáticos
=============
1. Activar SQL Server Agent
2. Crear plan de Mantenimiento en el Management Studio(Management/Maintenance Plans)
2.1 Arrastar y editar Back Up Database Task
2.2 Programar la ejecucion en Subplan Schedule(botón)
Otras forma a manera de Script
BACKUP DATABASE [CompelligenceRelease2DB] TO DISK = N'D:\Backup\Fisical\CompelligenceRelease2DB.bak' WITH NOFORMAT, NOINIT, NAME = N'CompelligenceRelease2DB_backup_2009_11_05_104833_3906250', SKIP, REWIND, NOUNLOAD, STATS = 10
Otra form con Script Externo, programar la tarea en Windows
osql -S SERVIDOR\SQLEXPRESS -U usuario -P contraseña -Q "backup
database nombrebd to dispositivobackup"
Tuesday, November 03, 2009
Tuesday, October 27, 2009
Sub Version
http://www.osmosislatina.com/subversion/instalacion.htm
http://informatica.escuelaedib.com/index.php?option=com_myblog&show=Configurar-un-servidor-de-Subversion-desde-cero.html&Itemid=59
Wednesday, October 21, 2009
J2EE Primeros pasos
Además que se nos muestra cómo podemos invocar al EJB desde un cliente Web y Desktop
Les comparto el link: Creating EJB3 Sessions Beans using Netbeans 6.1 and Glassfish
EJB 3.0 Session Bean
http://www.perevillega.com/java/ejb-30-session-beans/
EJB 3.0 Plugins
http://www.javabeat.net/articles/ejb3/1/
EJB 3.0
http://www.netbeans.org/kb/55/ejb30.html
Despliegue de EJB
http://www.proactiva-calidad.com/java/ejb/ejemplo1.html
Codigo Ejemplo
http://ccia.ei.uvigo.es/docencia/SCS/practicas0809/
EJB en Netbeans con Postgres
http://nachxs.wordpress.com/2009/04/28/tutorial-ejb-persistencia-y-postgresql-en-netbeans-65/
Hibernate
http://www.adictosaltrabajo.com/tutoriales/tutoriales.php?pagina=hibernateAnnotations
Hibernate vs Ejb
http://www.javahispano.org/forum/j2ee/es/hibernate_vs__ejb/
Integrar Hibernate Ejb
https://www.hibernate.org/82.html
Hibernate y las anotaciones de EJB 3.0
http://www.adictosaltrabajo.com/tutoriales/tutoriales.php?pagina=hibernateAnnotations
The Simple Logging Facade for Java or (SLF4J) http://www.slf4j.org/manual.html
import org.slf4j.Logger;Implementaciones
import org.slf4j.LoggerFactory;
public class HelloWorld {
public static void main(String[] args) {
Logger logger = LoggerFactory.getLogger(HelloWorld.class);
logger.info("Hello World");
}
}
http://openejb.apache.org/ejb3-tutorial.html
http://www.roseindia.net/ejb/
http://www.caucho.com/resin-3.0/ejb3/tutorial/index.xtp
http://wiki.netbeans.org/CreatingEJB3UsingNetbeansAndGlassfish
http://www.dosideas.com/cursos/course/view.php?id=5
http://www.dosideas.com/cursos/mod/resource/index.php?id=5
http://www.roseindia.net/ejb/examples-of-StatelessBean.shtml
Otras Referencias:
EJB con Hiberante
http://www.theserverside.com/discussions/thread.tss?thread_id=35663
http://www.velocityreviews.com/forums/t293538-hibernate-vs-ejb-or-jdbc.html
http://www.jtech.ua.es/j2ee/ejemplos/ejb/sesion01-apuntes.htm
http://www.adictosaltrabajo.com/tutoriales/tutoriales.php?pagina=orionejb
http://www.forosdelweb.com/f45/ejb-forma-local-247730/
Thursday, October 15, 2009
Wednesday, October 14, 2009
ASP.NET MVC DropDownList
SelectList elements= new SelectList(new [] {"10", "15", "25", "50", "100", "1000"}, "15");
IList customers = repository.GetAll();
IEnumerable selectList =
from c in customers
select new SelectListItem
{
Selected = (c.CustomerID == invoice.CustomerID),
Text = c.Name,
Value = c.CustomerID.ToString()
};
ViewData["myList"] =
new SelectList(new[] { "10", "15", "25", "50", "100", "1000" }
.Select(x => new {value = x, text = x}),
"value", "text", "15");
<%=Html.DropDownList("myList") %>
SelectList sl = new SelectList( new[]{
new SelectListItem{ Text="one", Value="1"},
new SelectListItem{ Text="two", Value="2"},
new SelectListItem{ Text="three", Value="3"}
}, "Text", "Value", "2" );
Referencias:
http://blog.wekeroad.com/blog/asp-net-mvc-dropdownlist-and-html-attributes/
Monday, October 12, 2009
Foxpro Base de datos remota via VPN u otros
referencias:
http://www.portalfox.com/index.php?name=News&file=article&sid=2494
http://www.todoexpertos.com/categorias/tecnologia-e-internet/bases-de-datos/visual-foxpro/respuestas/1255697/quiero-aprender-vpn
C# Leer y Escribir campos Blob
http://www.akadia.com/services/dotnet_read_write_blob.html (GOOD)
http://www.codeproject.com/KB/database/images2db.aspx
http://www.codeproject.com/KB/database/ADOImageDB.aspx
Friday, October 09, 2009
Usb Boot Installer for WindowsXP
http://blog.dahousecat.net/2008/09/14/instalar-windows-xp-desde-una-memoria-usb/
http://es.kioskea.net/faq/sujet-2937-instalar-windows-xp-desde-una-memoria-usb
http://xosef.obolog.com/crear-usb-booteable-instalar-windows-xp-usar-cd-rom-337515
USB Image tool
Como crear imagen de USb con USB Image Tool
http://www.shivaranjan.com/2008/10/15/make-or-create-images-of-usb-drive-contents-using-usb-image-tool/
Descarga
http://www.alexpage.de/download/usbit/usbit.zip
Tuesday, October 06, 2009
Iconos
http://vigon.mvps.org/recursos2.htm
Formato png
http://commons.wikimedia.org/wiki/Crystal_Clear
http://commons.wikimedia.org/wiki/Category:Vista_icons
Monday, October 05, 2009
SalesForce
Aqui muestro unos tips para conectarte a salesforce, particularmente ahora trabajo en C#.
Primero necesitas una cuenta en salesforce tipo desarrollador.
Register on Salesforce for importa data
=======================================
Step 1:
goto http://developer.force.com/
Username:* : it's important, it's account name for salesforce [[Account]]
Step 2:
Open your mail and confirm your account at salesforce(click on link)
salesforce will be open window for reset password(set new password) [[Password]]
Step 3:
Click on Setup, My Personal Information, Reset My Security Token, finally click on Reset Security Token button.
Step 4:
here:
User Name: [[Account]]
Security Token: xxxxxxxxxxxxxxxxxxxxxxxxx
Open your mail account and review you new token [[Token]]
ready.
Note:
on Compelligence System you need register one user with same email [[Account]] for import data, it's important
on Salesforce it's possible register four new account into account principal registered.
Crear Cliente propio de Salesforce
===========================
Paso 1:
Descargar el API de conexion
http://code.google.com/p/salesforce-dotnet/
Paso 2: generar el archivo faltante con los WSDL obtenidos de Setup, Develop, API
Siguiendo lo indicado aqui:
http://wiki.developerforce.com/index.php/Web_Services_API#API
Ejem.
Establecer ruta de wsdl.exe
D:\local\salesforce.wsdl>set path=%path%;"C:\Archivos de programa\Microsoft SDKs\Windows\v6.0A\bin"
D:\local\salesforce.wsdl>wsdl.exe /language:CS /out:SforceService.cs enterprise.wsdl
D:\local\salesforce.wsdl>wsdl.exe /language:CS /out:SforceMetadata.cs metadata.wsdl
Listo.
=================================================================================
Crear Objetos usando la API
http://www.salesforce.com/us/developer/docs/api/Content/sforce_api_calls_create.htm
Accediendo a la metadata
http://www.pocketsoap.com/weblog/2008/01/1803.html
Herramientas
http://salesforceonrails.com/tags/apex%20data%20loader
Probar importar datos con Apex Data Loader
http://sourceforge.net/projects/sforce-app-dl/
Video referencia
http://www.megaupload.com/?d=METWVO2I
Sunday, October 04, 2009
Saturday, October 03, 2009
NHibernate
http://sourceforge.net/projects/mygeneration/
Templates ( Entities/Maps hbm etc.)
http://www.mygenerationsoftware.com/TemplateLibrary/Templates/
Bases de datos soportadas por NHibernate
https://www.hibernate.org/80.html
Quick Start guide
https://www.hibernate.org/362.html
http://darioquintana.com.ar/articles/tutorial-de-nhibernate-primeros-pasos
http://www.fincher.org/tips/Languages/NHibernate.shtml
Otras referencias:
Tutorial de NHibernate y MySQL
http://dcala.wordpress.com/2009/07/14/nhibernate-visual-studio-2008-y-c/Tutorial de NHibernate y Visual C# con SQL Server Express
Wednesday, September 30, 2009
C# Conectar a BD
ADO.NET ofrece varios espacios de nombres para acceder a datos, entre ellos:
Antes de poder utilizar cualquiera de estos espacios de nombres debemos incluirlos en nuestro proyecto de la siguiente forma:
En C#
using System.Data.SqlCliente;
En VB.NET
imports System.Data.SqlClient
Los objetos Connection, Command, DataReader y DataAdapter son los elementos fundamentales de ADO.NET:
El objeto Connection.
La conexión a SQl Server la realizaremos con el objeto SqlConnection del espacio de nombre System.Data.SqlClient. .NET framework proporciona varios objetos Connection, uno para cada tipo de espacio de nombres. De este modo para OleDb existe un objeto OleDbConnection del espacio de nombre System.Data.OleDb y para ODBC existe un OdbcConnection del espacio de nombres System.Data.Odbc si utilizamos .NET Framework 1.1 o del espacio de nombres Microsoft.Data.Odbc si utilizamos la versión 1.0.
Ejemplo de conexión (todos los ejemplos estan realizados en c#):
SqlConnection SqlConn =
new SqlConnection("server=localhost;uid=sa;pwd=;database=PUBS");
SqlConn.Open();
Using System.Data.OleDb;
OleDbConnection OledbConn =
new OleDbConnection("Provider=SQLOLEDB;Data Source=localhost;UID=sa;PWD=;Initial Catalog=pubs");
OledbConn.Open();
Using System.Data.Odbc;
OdbcConnection OdbcConn = new OdbcConnection("DSN=Pubs;UID=sa;PWD=;");
OdbcConn.Open();
Una vez terminada la conexión es recomendable cerrar las conexiones con el metodo Close:
SqlConn.Close();
//
OledbConn.Close();
//
OdbcConn.Close();
El objeto Command.
El siguiente objeto que utilizaremos una vez realizada la conexión es el objeto SqlCommand que igual que pasaba con el objeto connection .NET framework proporciona varios objetos Command dependiendo del proveedor.
El objeto Command tiene varios métodos Execute para ejecutar comandos a un origen de datos:
Además de estos comandos comunes a todos los proeedores, SqlClient incorpora ExecuteXmlReader para ser utilizado con un XmlReader y una consulta SQL que devuelva XML (Select …… FOR XML).
Ejemplos de Command.
Using System.Data.SqlClient;
SqlConnection SqlConn =
new SqlConnection("server=localhost;uid=sa;pwd=;database=PUBS");
SqlCommand SqlCom =
new SqlCommand("insert into jobs(job_desc, min_lvl, max_lvl) values('Webmaster', '25', '100')", SqlConn);
SqlConn.Open();
SqlCom.ExecuteNonQuery ();
SqlConn.Close();
Using System.Data.OleDb;
OleDbConnection OledbConn =
new OleDbConnection ("server=localhost;uid=sa;pwd=;database=PUBS");
OleDbCommand OledbCom =
new OleDbCommand ("insert into jobs(job_desc, min_lvl, max_lvl) values('Webmaster', '25', '100')", OledbConn);
OledbConn.Open();
OledbCom.ExecuteNonQuery ();
OledbConn.Close();
El ejemplo para ODBC sería igual cambiando los objetos OleDb por ODBC.
El objeto DataReader
Este objeto va a permitirnos extraer un conjunto de resultados y listarlos (forward-only y read-only). Los resultados son devueltos al ejecutar una consulta y accesibles mediante el método read del objeto DataReader. Para utilizar este objeto debemos llamarlo desde el metodo ExecuteReader del objeto Command de la siguiente forma:
SqlDataReader mReader = myCommand.ExecuteReader();
Mediante el método read obtenemos una fila de la consulta y para obtener las columnas de cada fila podemos hacerlo mediante métodos de tipos nativos que incorpora el DataReader (GetString, GetInt32, etc…), o utilizando el método GetValue(i). También podemos obtener el nombre de los campos y no solo su valor, con el método GetName(i) obtenemos dicho nombre, siendo i el número de columna que quermos mostrar.
Una vez hemos acabado de trabajar con el DataReader tenemos que cerrarlo con el método Close().
Ejemplo DataReader:
SqlConnection SqlConn = new SqlConnection("server=localhost;uid=sa;pwd=;database=PUBS");
SqlCommand SqlCom = new SqlCommand("Select * from authors", SqlConn);
SqlConn.Open();
SqlDataReader myReader = SqlCom.ExecuteReader();
while (myReader.Read()){
Console.WriteLine (myReader.GetValue(0));
}
Console.WriteLine("Pulsar una tecla para cerrar la conexión ...");
Console.ReadLine();
myReader.Close();
SqlConn.Close();
El mismo ejemplo utilizando ODBC.
OdbcConnection OdbcConn = new OdbcConnection("DSN=Pubs;UID=sa;PWD=;");
OdbcCommand OdbcCom = new OdbcCommand("Select * from authors", OdbcConn);
OdbcConn.Open();
OdbcDataReader myReader = OdbcCom.ExecuteReader();
while (myReader.Read()){
Console.WriteLine (myReader.GetValue(0));
}
Console.WriteLine("Pulsar una tecla para cerrar la conexión ...");
Console.ReadLine();
myReader.Close();
OdbcConn.Close();
Un DataReader también lo podemos asignar a un método DataSource de un control web form de la siguiente forma:
DataGrid1.DataSource = oCommand.ExecuteReader();
En este caso lo enlazaríamos a un DataGrid.
Referencia
http://www.netveloper.com/contenido2.aspx?IDC=83_0
Tuesday, September 29, 2009
Investigación
http://sinai.ujaen.es/wiki/index.php/Recursos
http://www.cis.hut.fi/research/som_pak/
Saturday, September 26, 2009
Video de Matemática
http://mediateca.educa.madrid.org/categoria.php?id_categoria=76
Friday, September 25, 2009
Web Audio to Mp3
http://www.frontierdg.com/PCWIN%20Speaker%20Record.aspx
Thursday, September 24, 2009
Puertos
http://www.icsharpcode.net/OpenSource/SharpUSBLib/default.aspx
Open and read COM port data using System.IO.Ports in C# and VB .NET 2.0
http://www.devasp.net/net/articles/display/727.html
Threading
http://bytes.com/topic/c-sharp/answers/248913-threading-system-io-ports
Serial communications
http://www.codeproject.com/KB/cs/serialcommunication.aspx
http://social.msdn.microsoft.com/forums/es-ES/vcses/thread/b95676f5-e07f-478b-b3b1-f0abb0d9e94b/
Puerto Paralelo
http://es.wikipedia.org/wiki/IEEE_1284
http://msmvps.com/blogs/peplluis/archive/2009/01/22/acceso-al-puerto-paralelo-lpt-algo-m-225-s-que-encender-un-led-o-imprimir-un-doc.aspx
http://msmvps.com/blogs/peplluis/archive/2008/09/19/leer-los-ceros-y-unos-de-un-micro-controlador.aspx
http://msmvps.com/blogs/peplluis/archive/2009/01/22/acceso-al-puerto-paralelo-lpt-algo-m-225-s-que-encender-un-led-o-imprimir-un-doc.aspx
Puerto Mapa
http://www.doc.ic.ac.uk/~ih/doc/par/
dll
http://logix4u.net/Legacy_Ports/Parallel_Port/Inpout32.dll_for_Windows_98/2000/NT/XP.html
a Excel
http://www.leniel.net/2009/07/creating-excel-spreadsheets-xls-xlsx-c.html
http://npoi.codeplex.com/
http://www.codeplex.com/Wiki/View.aspx?ProjectName=ExcelPackage
http://www.aaron-powell.com/blog/september-2008/linq-to-xml-to-excel.aspx
http://www.leniel.net/2009/07/creating-excel-spreadsheets-xls-xlsx-c.html
http://www.carlosag.net/Tools/ExcelXmlWriter/
Wednesday, September 23, 2009
jQuery Animación
http://snook.ca/archives/javascript/jquery-bg-image-animations/
Animar secciones div con jQuery
http://www.randallwebdeveloper.com/2008/03/16/animar-secciones-de-navegacion-con-jquery-y-css
Animación de un Robot
http://css-tricks.com/jquery-robot/
http://www.incg.nl/blog/2008/hover-block-jquery/example/animate_hover.html
Tuesday, September 22, 2009
OpenCV Library en .NET
particularmente hize ejecutar los del code project, pero EmguCV para ser otra mucho mejor ya que cuenta con wrappers para Mono.
Referencias:
http://www.emgu.com/wiki/index.php/Download_And_Installation
Documentación
http://opencv.willowgarage.com/documentation/index.html
Ultima actualización Set-2009 (Sale caliente)
sourceforge.net/projects/opencvlibrary/
Perú: Denominaciones empresariales
Microempresa
1. El propietario o propietarios de la empresa laboran en la misma.
2. El número total de trabajadores no excede de 10 personas.
3. El valor total anual de ventas no excede de 12 UIT*.
* (1 UIT = S/. 2,800)
Régimen especial del impuesto a la renta
Es un régimen tributario dirigido a personas naturales y jurídicas, sucesiones indivisas y sociedades conyugales domiciliadas en el país que obtengan rentas de tercera categoría provenientes de:
1. Actividades de comercio y/o industria, entendiéndose por tales a la venta de los bienes que adquieran, produzcan o manufacturen, así como la de aquellos recursos naturales que extraigan, incluidos la cría y el cultivo.
2. Actividades de servicios, entendiéndose por tales a cualquier otra actividad no señalada expresamente en el inciso anterior.
Referencias:
Búsqueda de razon social en Registros publicos
http://www.sunarp.gob.pe/RelacionS.asp
Denomiaciones y leyes de constitución
http://www.congreso.gob.pe/comisiones/1999/microempresa/publica/bccup.htm#scrl
Régimen tributario
http://www.invesca.com/regimen-tributario-para-la-micro-y-pequena-empresa/
Leyes mencionadas(detalle)
http://www.informaccion.com/derechoregistral/
Plantilla declaración jurada
http://www.mypeperu.gob.pe/contenidos/prodame/EmpBien.htm
http://www.microjusticiaperu.org/site/constitucion-microempresas
http://www.deperu.com/abc/articulo.php?con=256
http://www.peruabogado.com/co_em.htm
http://www.abogadosperu.com/index.php?cont=6&cmbconsulta=19
http://www.perucontable.com/modules/newbb/viewtopic.php?topic_id=17972&forum=8&post_id=57250
Windows Herramientas
Process Explorer, Find out what files, registry keys and other objects processes have open, which DLLs they have loaded, and more. This uniquely powerful utility will even show you who owns each process.
Process Monitor, Monitor file system, Registry, process, thread and DLL activity in real-time.
PsExec, Execute processes remotely.
PsGetSid, Displays the SID of a computer or a user.
PsKill, Terminate local or remote processes.
PsList, Show information about processes and threads.
Crear discos arrancables de Windows
http://www.nu2.nu/pebuilder/
Análisis de codigo binario
OllyDbg is a 32-bit assembler level analysing debugger for Microsoft® Windows®. Emphasis on binary code analysis
http://www.ollydbg.de/
Manual Completo
http://www.ricardonarvaja.info/
Monday, September 21, 2009
Thursday, September 17, 2009
Bicarbonato de sodio
http://es.answers.yahoo.com/question/index?qid=20081016142905AAIW9bW
Usos cotidianos, casi inesperados:
http://mx.answers.yahoo.com/question/index?qid=20090226170858AAQKL2E
Tuesday, September 15, 2009
Herramientas
http://kompozer.net/
Ranking Distros Linux
http://distrowatch.com/stats.php?section=popularity
Monday, September 14, 2009
C# Download remote file
http://www.jaydouglas.com/Articles/DownloadToMemoryStream.aspx
Referencias:
Thursday, September 10, 2009
C# Expresiones Regulares
http://es.wikipedia.org/wiki/Expresi%C3%B3n_regular
http://www.subgurim.net/Articulos/asp-net-general/14/expresiones-regulares-introduccion.aspx
http://www.subgurim.net/Articulos/asp-net-general/20/expresiones-regulares-como-trabajarlas-con-asp-net.aspx
http://www.elguille.info/regexp/regExp01.aspx
Recursos:
http://sourceforge.net/projects/regulator/
Tuesday, September 08, 2009
dll en Visual Basic
http://www.elguruprogramador.com.ar/articulos/crear-una-dll-con-visual-basic.htm
http://www.elguille.info/vb/cursos_vb/BASICO/basico47.htm
Monday, September 07, 2009
Libros
Libros online
[1] Napoleón http://www.librosmaravillosos.com/unabiografiaintimadenapoleonbonaparte/index.html
[2] Libros en general en especial Java, C# http://www.ebookpdf.net/
Linq y Hql
Hql
http://docs.jboss.org/hibernate/stable/core/reference/en/html/queryhql.html
Linq
http://www.programmersheaven.com/2/CSharp3-4
MSDN Linq
http://msdn.microsoft.com/en-us/vcsharp/aa336746.aspx
Sunday, September 06, 2009
Matriz: Servidores de Aplicaciones
Encuaesta de servidores web mas usados, includo servidor de aplicaciones
http://www.javahispano.org/polls.results.action?option=98
Comparativa de servidores
http://www.javahispano.org/contenidos/es/comparativa_de_servidores_jee_5/
Friday, September 04, 2009
Linux Shell Commands
#source ./script.sh
Ocultar la evidencia
#alias cmdNuevo="source ./script.sh"
O realizar lo siuiente en el script tambien ayuda
#!/your/shell
cd /home/username
pwd
exit 0
Referencias:
Linux Shell y Ejemplos http://www.freeos.com/guides/lsst/
Thursday, September 03, 2009
Reloj Linux
#date
#date -s 'yyyy-mm-dd hh:mm:ss'
Fecha y Hora del hardware
#hwclock
#hwclock –-systohc
Sincronizar con un servidor horario (Solo fecha y hora de sistema)
#ntpdate hora.oxixares.com
Referencias:
1. Explicación completa para distribuciones Red Hat
http://roberto-angelus.blogspot.com/2009/04/actualizar-hora-con-ntpd.html
2. http://www.ntp.org/
3. cron
http://www.linux-os.com.ar/linuxos/sincronizar-reloj-automaticamente/
Wednesday, September 02, 2009
mySQL Comandos Fechas
mysql> SELECT DATE_ADD('2009-03-20', INTERVAL 31 DAY);
mysql> SELECT DATE_ADD('2009-03-20', INTERVAL 1 MONTH);
mysql> SELECT ADDDATE(CURDATE(), INTERVAL 31 DAY);
mysql> SELECT SUBDATE(CURDATE(), INTERVAL 2 MONTH);
La palabra clave INTERVAL
y el especificador type
no son sensibles a mayúsculas.
La siguiente tabla muestra cómo se relacionan los argumentos type
y expr
:
type Value | Expected expr Format |
MICROSECOND | MICROSECONDS |
SECOND | SECONDS |
MINUTE | MINUTES |
HOUR | HOURS |
DAY | DAYS |
WEEK | WEEKS |
MONTH | MONTHS |
QUARTER | QUARTERS |
YEAR | YEARS |
SECOND_MICROSECOND | 'SECONDS.MICROSECONDS' |
MINUTE_MICROSECOND | 'MINUTES.MICROSECONDS' |
MINUTE_SECOND | 'MINUTES:SECONDS' |
HOUR_MICROSECOND | 'HOURS.MICROSECONDS' |
HOUR_SECOND | 'HOURS:MINUTES:SECONDS' |
HOUR_MINUTE | 'HOURS:MINUTES' |
DAY_MICROSECOND | 'DAYS.MICROSECONDS' |
DAY_SECOND | 'DAYS HOURS:MINUTES:SECONDS' |
DAY_MINUTE | 'DAYS HOURS:MINUTES' |
DAY_HOUR | 'DAYS HOURS' |
YEAR_MONTH | 'YEARS-MONTHS' |
Referencias:
http://dev.mysql.com/doc/refman/5.0/es/date-and-time-functions.html
Struts v2 HelloWorld en NetBeans v6
Links:
Sitio oficial: http://struts.apache.org/2.x/index.html
Tutoriales oficiales: http://www.vaannila.com/struts-2/struts-2-tutorial/struts-2-tutorial.html
Tuesday, September 01, 2009
Linux: Montar imágenes ISO/NRG/IMG/BIN/CUE/MDF/MDS
Montar una imagen ISO:
#mount -t iso9660 -o loop archivo.iso /punto_anclaje
Montar imágenes BIN y CUE:
convertir a imagen ISO con bchunk.
#apt-get install bchunk (Si no tienes instalado bchunk)
una vez disponible, ejecutar:
#bchunk archivo.bin archivo.cue nuevoarchivo.iso
convierte la imagen .bin con su archivo .cue correspondiente a un solo archivo .iso:
Montar imágenes NRG (imágenes de Nero Burning Rom):
Para poder montar estas imágenes tendremos que convertirlas a ISO. Para ello usaremos el programa nrg2iso, para instalarlo haremos:
#apt-get install nrg2iso
#nrg2iso archivo.nrg nuevoarchivo.iso
Montar imágenes MDF y MDS
El programa tiene el original nombre de mdf2iso. Para instalarlo:
#apt-get install mdf2iso
#mdf2iso archivo.mdf nuevaimagen.isoMontar imágenes IMG
Usaremos el programa CCD2ISO. Este programa no lo he podido descargar desde los repositorios oficiales de Ubuntu pero de todos modos no estaría de más que intentes instalarlo por apt-get así:
#apt-get install ccd2iso
descargar el archivo que sera algo así como “ccd2iso-0.2.tar.gz”
descomprimir
#tar -xzvf ccd2iso-0.2.tar.gz
#cd ccd2iso , ingresmos a la carpeta#./configure
#make
#make install
#ccd2iso imagen.img imagen.iso , para convertir
Y para desmontar lo que ya monte?
sudo umount /media/imagen
Paquetes necesarios:
bchunk desde: http://he.fi/bchunk/
nrg2iso desde: http://gregory.kokanosky.free.fr/v4/linux/nrg2iso.en.html
mdf2iso desde: http://developer.berlios.de/projects/mdf2iso
ccd2iso desde: http://sourceforge.net/projects/ccd2iso
CImg
Características:
1. Multiplataforma, Windows/Linux/Otros
2. Solo necesita incluir CImg.h
3. Integrable con otras librerias
4. Contiene filtros/algortmos standard de procesamiento de imágenes
Compilación bajo Linux(Fedora)
Paso 1: Descargar
#wget http://sourceforge.net/projects/cimg/files/CImg/1.3.1/CImg-1.3.1.zip/download
Paso 2: Descomprimir
Paso 3: Compilar
#g++ CImg_Demo.cpp -o demo -lm -lpthread -lX11
Paso 4:Ejecutar
#./demo
Para compilar en otras plataformas y compiladores ver:
http://cimg.sourceforge.net/reference/group__cimg__overview.html
Manual completo
http://cimg.sourceforge.net/CImg_reference.pdf
Monday, August 31, 2009
Uroterapia/Orinoterapia para convatir Gastritis
Registrar URL en buscadores
Paso1 :Registrar en Google
http://www.google.com/addurl/
Paso2: Agregar un sitemap : http://www.google.com/webmasters/sitemaps/?hl=es
herramienta para crear sitemaps en: http://www.xml-sitemaps.com/
Paso 3: Listo
Usar www.google.com/webmasters para registrar la Url y el sitemap.xml, generado por
http://www.xml-sitemaps.com
Tips para Eliminar
http://www.google.com/intl/es/remove.html
Thursday, August 27, 2009
g++ Compilar
Lineas de compilación importantes
#g++ test.cpp -L../lib -I../include , especificando rutas include y lib
#g++ test.cpp -o test -L../lib -I../include , especificando objeto de salida
#g++ test.cpp -o test -lpthread -L../lib -I../include , si trabajara con hilos
http://webusers.npl.illinois.edu/~yangrz/Make.html
generando librarias
http://www.forosuse.org/forosuse/showthread.php?t=12989
http://www.linuxquestions.org/questions/programming-9/how-to-compile-a-tiny-simple-library-by-g-105795/
http://mrbook.org/tutorials/make/
Kde en Fedora
yum -y groupinstall "KDE (K Desktop Environment)"
Bueno ahora pasemos su instalación.
Para ello simplemente abrimos una terminal y lo instalamos con el siguiente comando:
su -c "yum groupinstall 'KDE (K Desktop Environment)'"
O actualizar si ya lo teníamos instalado:
su -c "yum groupupdate 'KDE (K Desktop Environment)'"
Aunque aconsejo mejor actualizar con:
su -c "yum update"
Para que se actualice el sistema completo.
jQuery Plugins
http://devsnippets.com/reviews/using-jquery-to-style-design-elements-20-impressive-plugins.html
http://www.extjs.com/deploy/dev/examples/grid/grouping.html
JQTreeTable
http://www.hanpau.com/index.php?page=jqtreetable
tablesorter
http://tablesorter.com/docs/example-empty-table.html
flexigrid
http://www.flexigrid.info/
Ingrid, the jQuery Datagrid.
http://www.reconstrukt.com/ingrid/src/example1.html#
Grouping rows by column
http://dhtmlx.com/docs/products/dhtmlxGrid/samples/07_extended_modes/01_pro_group.html
http://www.treegrid.com/treegrid/www/#%27BooksExample
single group
http://p.sohei.org/stuff/jquery/tablegroup/demo/demo.html
Sorter
http://www.pengoworks.com/workshop/jquery/tablesorter/tablesorter.htm
Autocomplete
http://www.esasp.net/2010/05/jquery-autocomplete-facebook-con-aspnet.html
Gastritis?
1. FitoTerpaia / Acupuntura
http://www.interhiper.com/medicina/Enfermedades/gastritis.htm
2. 10 recetas y Jugoterapia
http://www.chispaisas.info/alternativa3.htm
3. Que hacer en caso de gastritis
http://gastrointestinalessagradafamilia.blogspot.com/
4. otros
http://mednatursagradafamilia.blogspot.com/
http://www.otramedicina.com/2007/09/27/tratar-la-gastritis-con-medicina-alternativa/
Wednesday, August 26, 2009
Saturday, August 22, 2009
Filtrado de tablas por columnas
Thursday, August 20, 2009
jqGrid Documentacion
http://www.secondpersonplural.ca/jqgriddocs/index.htm
Documentación mas extensa
http://www.trirand.com/jqgrid/jqgrid.html
Métodos
http://www.secondpersonplural.ca/jqgriddocs/_2eb0fi5wo.htm
Implementaciones en ASP.NET MVC
http://haacked.com/archive/2009/04/14/using-jquery-grid-with-asp.net-mvc.aspx
http://arahuman.blogspot.com/2009/06/jqgrid-using-mvc-json-and-datatable.html
Source Code:
http://arahuman.googlepages.com/JQGridMVCDemo.zip
http://haacked.com/code/JQueryGridDemo.zip
jgGrid Multiselection modes
http://stackoverflow.com/questions/3717969/jqgrid-multiselect-behavior-when-pressing-special-key
Thursday, August 13, 2009
mySql: Comandos de administración
OpenSuse:vsftpd
#apt-get install vsftpd
#yum install vsftpd
Archivo de confifuración /etc/vsftpd.conf
#
# The default compiled in settings are fairly paranoid. This sample file
# loosens things up a bit, to make the ftp daemon more usable.
# Please see vsftpd.conf.5 for all compiled in defaults.
#
# READ THIS: This example file is NOT an exhaustive list of vsftpd options.
# Please read the vsftpd.conf.5 manual page to get a full idea of vsftpd's
# capabilities.
#
#
# Run standalone? vsftpd can run either from an inetd or as a standalone
# daemon started from an initscript.
listen=YES
#
# Run standalone with IPv6?
# Like the listen parameter, except vsftpd will listen on an IPv6 socket
# instead of an IPv4 one. This parameter and the listen parameter are mutually
# exclusive.
#listen_ipv6=YES
#
# Allow anonymous FTP? (Beware - allowed by default if you comment this out).
anonymous_enable=NO
#
# Uncomment this to allow local users to log in.
local_enable=YES
#
# Uncomment this to enable any form of FTP write command.
write_enable=YES
#
# Default umask for local users is 077. You may wish to change this to 022,
# if your users expect that (022 is used by most other ftpd's)
#local_umask=022
#
# Uncomment this to allow the anonymous FTP user to upload files. This only
# has an effect if the above global write enable is activated. Also, you will
# obviously need to create a directory writable by the FTP user.
#anon_upload_enable=YES
#
# Uncomment this if you want the anonymous FTP user to be able to create
# new directories.
#anon_mkdir_write_enable=YES
#
# Activate directory messages - messages given to remote users when they
# go into a certain directory.
dirmessage_enable=YES
#
# Activate logging of uploads/downloads.
xferlog_enable=YES
#
# Make sure PORT transfer connections originate from port 20 (ftp-data).
connect_from_port_20=YES
#
# If you want, you can arrange for uploaded anonymous files to be owned by
# a different user. Note! Using "root" for uploaded files is not
# recommended!
#chown_uploads=YES
#chown_username=whoever
#
# You may override where the log file goes if you like. The default is shown
# below.
#xferlog_file=/var/log/vsftpd.log
#
# If you want, you can have your log file in standard ftpd xferlog format
#xferlog_std_format=YES
#
# You may change the default value for timing out an idle session.
#idle_session_timeout=600
#
# You may change the default value for timing out a data connection.
#data_connection_timeout=120
#
# It is recommended that you define on your system a unique user which the
# ftp server can use as a totally isolated and unprivileged user.
#nopriv_user=ftpsecure
#
# Enable this and the server will recognise asynchronous ABOR requests. Not
# recommended for security (the code is non-trivial). Not enabling it,
# however, may confuse older FTP clients.
#async_abor_enable=YES
#
# By default the server will pretend to allow ASCII mode but in fact ignore
# the request. Turn on the below options to have the server actually do ASCII
# mangling on files when in ASCII mode.
# Beware that turning on ascii_download_enable enables malicious remote parties
# to consume your I/O resources, by issuing the command "SIZE /big/file" in
# ASCII mode.
# These ASCII options are split into upload and download because you may wish
# to enable ASCII uploads (to prevent uploaded scripts etc. from breaking),
# without the DoS risk of SIZE and ASCII downloads. ASCII mangling should be
# on the client anyway..
#ascii_upload_enable=YES
#ascii_download_enable=YES
#
# You may fully customise the login banner string:
#ftpd_banner=Welcome to blah FTP service.
#
# You may specify a file of disallowed anonymous e-mail addresses. Apparently
# useful for combatting certain DoS attacks.
#deny_email_enable=YES
# (default follows)
#banned_email_file=/etc/vsftpd.banned_emails
#
# You may restrict local users to their home directories. See the FAQ for
# the possible risks in this before using chroot_local_user or
# chroot_list_enable below.
chroot_local_user=YES
#
# You may specify an explicit list of local users to chroot() to their home
# directory. If chroot_local_user is YES, then this list becomes a list of
# users to NOT chroot().
chroot_list_enable=YES
# (default follows)
chroot_list_file=/etc/vsftpd.chroot_list
#
# You may activate the "-R" option to the builtin ls. This is disabled by
# default to avoid remote users being able to cause excessive I/O on large
# sites. However, some broken FTP clients such as "ncftp" and "mirror" assume
# the presence of the "-R" option, so there is a strong case for enabling it.
#ls_recurse_enable=YES
#
#
# Debian customization
#
# Some of vsftpd's settings don't fit the Debian filesystem layout by
# default. These settings are more Debian-friendly.
#
# This option should be the name of a directory which is empty. Also, the
# directory should not be writable by the ftp user. This directory is used
# as a secure chroot() jail at times vsftpd does not require filesystem
# access.
secure_chroot_dir=/var/run/vsftpd
#
# This string is the name of the PAM service vsftpd will use.
pam_service_name=vsftpd
#
# This option specifies the location of the RSA certificate to use for SSL
# encrypted connections.
rsa_cert_file=/etc/ssl/certs/vsftpd.pem
Referencias
=======================================================================
http://www.linuxparatodos.net/portal/staticpages/index.php?page=09-como-vsftpd
Wednesday, August 12, 2009
Linux: Información del Sistema/Maquina/Pc
Paths, donde Linux guarda información sobre el sistema
- Para ver el tipo de Procesador de la máquina: cat /proc/cpuinfo
- Informacion de la memoria: cat /proc/meminfo
- Dispositivos IDE : ls /proc/ide
- Sistemas de archivos disponibles: cat /proc/filesystems
- Ver los dispositivos PCI: cat /proc/pci
- Ver particiones del Disco duro: cat /proc/partitions
Algunos comandos útiles
hostname: Muestra o establece el nombre del sistema.
uptime: Devuelve la cantidad de tiempo trascurrido desde la ultima vez que se arranco el sistema, la cantidad de usuarios trabajando en el sistema y el load average (carga del sistema).
uname -a: Información acerca de la máquina y el sistema operativo en el que está corriendo
dmesg | more: Imprime los mensajes de booteo.
free -tm: Muestra la cantidad de Memoria libre y usada en el sistema.
df -h: Informa del espacio usado y del disponible en todos los sistemas de ficheros montados actualmente (de todos los tipos)
du : Informa de la cantidad de espacio de disco usada por los ficheros especificados, y por cada directorio en las jerarquías cuyas raíces estén en los ficheros especificados.
ps: Informa del estado de los procesos.
ps axu: Información sobre todos los procesos que se estan ejecutando en la maquina.
top: Muestra un listado de las tareas que hacen un uso más intensivo de la CPU en el sistema.
lspci : Desplega información sobre los dispositivos PCI conectados al sistema.
Monday, August 10, 2009
Power Wattage Calculator For AMD & Intel Systems
http://www.journeysystems.com/psu.php
Saturday, August 08, 2009
Linux Fedora yum
Adding third-party repositories to apt and yum configuration files
The following instructions are for Fedora Core 1.1. Download and install the apt and yum packages from freshrpms.net. Alternatively, you may install the yum.conf and sources.list files from freshrpms.net if you already have apt and yum installed.
http://freshrpms.net/packages/builds/yum/yum-fd.conf (save this as /etc/yum.conf)
http://freshrpms.net/packages/builds/apt/sources.list.i386 (save this as /etc/apt/sources.list)
2. Add third-party repositories to yum and apt configuration files.
/etc/yum.conf additional entries:
[DAG]
name=Dag APT Repository
baseurl=http://apt.sw.be/redhat/fc$releasever/en/$basearch/dag
[NewRPMS]
name=Fedora Core 1 NewRPMS.sunsite.dk
baseurl=http://newrpms.sunsite.dk/apt/redhat/en/i386/fc1
[ATrpms]
name=Fedora Core 1 ATrpms testing
baseurl=http://apt.physik.fu-berlin.de/fedora/1/en/i386/at-testing
[Dries]
name=Extra Fedora rpms dries - $releasever - $basearch
baseurl=http://dries.studentenweb.org/yum/fedora/linux/$releasever/$basearch/dries
/etc/apt/sources.list additional entries:
# DAG
rpm http://apt.sw.be redhat/fc1/en/i386 dag
# NewRPMS
rpm http://newrpms.sunsite.dk/apt/ redhat/en/i386/fc1 newrpms
#rpm-src http://newrpms.sunsite.dk/apt/ redhat/en/i386/fc1 newrpms
# ATrpms
rpm http://apt.physik.fu-berlin.de fedora/1/en/i386 at-stable
#rpm-src http://apt.physik.fu-berlin.de fedora/1/en/i386 at-stable
# Dries
rpm http://dries.studentenweb.org apt/fedora/fc1/i386 dries
#rpm-src http://dries.studentenweb.org apt/fedora/fc1/i386 dries
3. Update the package lists.
apt-get update
yum update (this step will take a while as yum downloads a header file for each new package)
The 5 third-party repositories listed above are now available with yum and apt.
New users may wish to install the excellent GUI front-end to apt named synaptic with the following command:
yum -y install synaptic
-- or --
apt-get -y install synaptic
If you would like to automatically update your system nightly with the latest package updates, enable the yum service:
/sbin/chkconfig --add yum
/sbin/service yum start
Friday, August 07, 2009
jQuery Resources
http://pixelco.us/blog/240-plugins-para-jquery/
jqGrid
http://trirand.com/jqgrid/jqgrid.html
jQuery Quicksearch
http://rikrikrik.com/jquery/quicksearch/
jQuery Filter
http://www.mattryall.net/blog/2008/07/jquery-filter-demo
Modal Windows
http://www.sohtanaka.com/web-design/examples/modal-window/
Slideshow
http://s3.amazonaws.com/buildinternet/live-tutorials/panning-slideshow/panning-slideshow.htm
Web resources
http://www.mixpod.com/myspace-mp3players.php
Web header gallery
http://www.freewebpageheaders.com/gallery/
Blog de recursos web
http://conectablog.blogspot.com/search/label/Capturadores
Make banners
http://www.flashvortex.com/generators.php?exampleId=190
Get Color Hexadecimal from Pixel
http://www.pendriveapps.com/catchcolor-reveal-the-hex-value-of-any-pixel/
-
Resources: [1] Hela https://ome.grc.nia.nih.gov/iicbu2008/hela/index.html
-
en inglés se llama “A potentially dangerous Request.Form value was detected from the client”. varias páginas indican dos cosas: 1. agrega...
-
mas plugins http://devsnippets.com/reviews/using-jquery-to-style-design-elements-20-impressive-plugins.html http://www.extjs.com/deploy/dev/...
Odoo 17 - Custom adds
[1] Diario/Seq https://apps.odoo.com/apps/modules/17.0/sequence_for_journal