Archivo por meses: mayo 2011

configuring remote messenger openedge wsa web services adapter

# Set PROMSGS (if not set) PROMSGS=${PROMSGS-$DLC/promsgs}; export PROMSGS # Set the user working directory – this is a tailored value WRKDIR=${WRKDIR-«/wrk»}; export WRKDIR # option 1 using host_name and port_num $DLC/bin/cgiip 192.168.32.20 3055 # option 2 using a service name defined in $DLC/ubroker.properties #$DLC/bin/cgiip -i wsbroker1 # option 3 the «defaultService» defined in $DLC/ubroker.properties… Leer más »

install tomcat centos 5

yum install tomcat5 tomcat5-webapps tomcat5-admin-webapps xml-commons-apis # service tomcat5 restart # chkconfig tomcat5 on edit #sudo vim /etc/tomcat5/tomcat-users.xml

telehack

http://telehack.com/ saccade.com writes «Telehack.com has meticulously re-created the Internet as it appeared to a command line user over a quarter century ago. Drawing on material from Jason Scott’s TextFiles.com, the text-only world of the 1980s appears right in your browser. If you want to show somebody what the Arpanet looked like (you didn’t call it… Leer más »

mandel

#include /* CC mandel.c/A link mandel.obj,c:suport.obj,c:clib.obj */ main() { float b,e,r,n,d; int h,c; for(e=1.1; e>-1.2; e-=.1) { for(b=-2; b

Categoría: Nix

The $25 dlls computer

http://www.raspberrypi.org/ π Raspberry Pi Foundation The Raspberry Pi Foundation is a UK registered charity (Registration Number 1129409) which exists to promote the study of computer science and related topics, especially at school level, and to put the fun back into learning computing. We plan to develop, manufacture and distribute an ultra-low-cost computer, for use in… Leer más »

search and reemplace mysql mover wordpress a otro sitio

Sintaxis de MySQL update [table_name] set [field_name] = replace([field_name],'[string_to_find]’,'[string_to_replace]’); Para mover wordpress a otro sitio web update wp_posts set post_content = replace(post_content,’sitioviejo.com’,’sitionuevo.com’) update wp_posts set guid = replace(guid,’sitioviejo.com’,’sitionuevo.com’) update wp_options set  option_name = replace(option_name,’sitioviejo.com’,’sitionuevo.com’) update wp_options set  option_value = replace(option_value,’sitioviejo.com’,’sitionuevo.com’)