miércoles, 15 de junio de 2011

Biglever and Pure-Systems - SPL

Empresa especializada en SPL su producto GEAR
http://www.biglever.com/
http://www.biglever.com/extras/BigLever_Solution_Brochure.pdf
http://www.biglever.com/extras/Gears_Data_Sheet.pdf


http://www.pure-systems.com/
http://www.pure-systems.com/Downloads.31.0.html
http://www.exmotion.co.jp/service/spl_demo_movie_en.asx

Congreso SPL 2001 en Munich

Congreso SPL 2001
http://www.splc2011.net/tutorials/index.html

martes, 7 de junio de 2011

Firmar correos con thunderbird y el FNMT

Para firmar correos desde el thunderbird con nuestro certificado de la FNMT primero debemos descargar el certificado raiz de la FNMT.


http://ospatia.blogspot.com/2008/01/descargar-certificado-raiz-de-la-fnmt.html
http://www.cert.fnmt.es/content/pages_std/certificados/FNMTClase2CA.cer

lunes, 6 de junio de 2011

SPL

http://grandview.rymatech.com/2009/15-introduction-to-the-sei-framework-for-software-product-line-practice.html

http://grandview.rymatech.com/2009/16-software-product-lines-an-effective-business-and-development-strategy.html

http://grandview.rymatech.com/2010/30-exploring-product-line-opportunities.html

http://grandview.rymatech.com/2009/46-towards-compositional-software-product-lines.html

http://www.cs.helsinki.fi/u/vjkuusel/gradu/vanhat/Software%20Product%20Lines.pdf

viernes, 3 de junio de 2011

FTP con TLS.

Este script sube ficheros a un servidor ftp con tls activado (que no es igual a sftp!)


cat sube-fichero
echo | lftp SERVIDOR-FTP -u USUARIO,PASSWORD< set ftp:ssl-allow true
set ftp:ssl-force true
set ftp:ssl-protect-data true
set ftp:ssl-protect-list true
put $1
EOF