Thursday, January 28, 2010

Generadores de Codigo y COmponentes ASP.NET

Dot Net Nuke

http://www.sg.com.mx/guia/node/618

Wiki en ASP.NET
http://www.screwturn.eu/MainPage.ashx?From=Wiki

ASP.NET COmponentes, Herramientas
http://www.sg.com.mx/guia/category/keywords/aspnet

FORM BUILDER:
http://www.solotuweb.com/fs~id~1304.html

MyGeneration
http://sourceforge.net/projects/mygeneration/files/

http://ajgenesisstudio.codeplex.com/
http://ajgenesis.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=7262

Code Generation
http://davidhayden.com/blog/dave/category/15.aspx

ASP.NET MVC 13 Preguntas

http://www.variablenotfound.com/2009/04/aspnet-mvc-trece-preguntas-basicas.html

Tuesday, January 26, 2010

VB6 Portable

http://www.plunder.com/Visual-Basics-6-Portable-download-69648.htm

Scripts Java & jQuery

Timers
====================



setInterval("reloj()",1000);

function reloj() {

var fObj = new Date() ;
var horas = fObj.getHours() ;
var minutos = fObj.getMinutes() ;
var segundos = fObj.getSeconds() ;

if (horas <= 9) horas = "0" + horas; if (minutos <= 9) minutos = "0" + minutos; if (segundos <= 9) segundos = "0" + segundos; window.status = horas+":"+minutos+":"+segundos; } setTimeout("document.location.href='http://www.google.es';",5000); //5seg. setInterval("reloj()",1000); setTimeout("clearInterval("+id+")",15000); setTimeout("clearInterval('reloj')",15000); Work with IFrame ============= < id="'iFrame'" onload="'onIFrameLoad();'">
$("iFrame").src = "sumGet.phtml?figure1=5&figure2=1";

function onIFrameLoad()
{
var serverResponse = extractIFrameBody($("iFrame")).innerHTML;
$("response").innerHTML = serverResponse;
}


var iFrameBody = extractIFrameBody($("iFrame"));
iFrameBody.innerHTML =
"<form action="'sumPostForm.phtml'" method="'POST'">" +
"<input name="'figure1'" value="'5'" type="'text'">" +
"<input name="'figure2'" value="'2'" type="'text'">" +
"</form>";



var form = iFrameBody.firstChild;
form.submit();

var iFrameBody = document.getElementById("iFrame").contentWindow.document.body;
iFrameBody.innerHTML = "whatever html code you want";
#iFrame {
display : none;
visibility : hidden;
height : 1px;
}

reset all styles margin & padding
* {
margin: 0;
padding: 0;
}



* { margin:0; padding:0; }
body {
line-height: 1;
color: black;
background: white;
}
p { margin:5px 0 10px 0; }
}
body {
line-height: 1;
color: #996633
background:#ccc url(your-tiled-image.gif) repeat-x top left;
}


referencias:
http://ideamill.synaptrixgroup.com/?p=6
http://www.dyn-web.com/tutorials/iframes/
http://stackoverflow.com/questions/997986/write-elements-into-a-child-iframe-using-javascript-or-jquery

Upload
http://www.ajaxprojects.com/ajax/tutorialdetails.php?itemid=280
http://www.codeweblog.com/upload-file-false-ajax/
http://css.dzone.com/news/upload-files-like-gmail-client

Monday, January 11, 2010

Recursos Web

Software
http://www.xthedaniex.com/
Cine gratis
http://www.cinegratis24h.com/2010/01/sherlock-holmes-2009.html

Thursday, January 07, 2010

Información de IP

http://www.cuwhois.com/
http://whois.domaintools.com/

domain to ip
http://www.localizarip.com/

DNS
http://www.adslayuda.com/modulo-FSDns.html
http://www.adslzone.net/dns.html

Proxies
http://www.samair.ru/proxy/time-01.htm

Información completa (Ip/Dns/Proveedor/...)
http://network-tools.com

Routers Herramientas

Herramientas para setear Router
http://www.elifulkerson.com/articles/net-snmp-windows-binary-unofficial.php

MD5 Crack
http://www.dragonjar.org/como-recuperar-una-clave-en-md5.xhtml

Default Password List
http://www.phenoelit-us.org/dpl/dpl.html

Tuesday, January 05, 2010

Comandos Frecuentes

¿Qué versión del kernel tengo?
$ uname -r
2.6.17.13-smp

¿Qué versión de X tengo instalada?
$ X -version 2>&1 | sed '/^$/d' | head -n1
X Window System Version 6.9.0

¿Tengo aceleración por hardware en mi placa de video?
$ glxinfo | grep "direct rendering"
direct rendering: Yes

¿Qué procesador(es) tiene mi compu?
$cat /proc/cpuinfo | grep "model name"
model name : Intel(R) Pentium(R) 4 CPU 3.00GHz
model name : Intel(R) Pentium(R) 4 CPU 3.00GHz

¿Cuál es la frecuencia del(los) procesador(es)?
$ cat /proc/cpuinfo | grep "cpu MHz"
cpu MHz : 3000.586
cpu MHz : 3000.586

¿Que porcentaje del disco(s) esta usado/libre?
$ df -h
Filesystem Size Used Avail Use% Mounted on
/dev/sda1 10G 6.5G 3.5G 65% /
/dev/sda2 10G 4.9G 5.2G 49% /home

¿Cual es la temperatura del CPU?
$ cat /proc/acpi/thermal_zone/THRM/temperature
temperature: 43 C

¿Cual es el nombre de la maquina?
$ hostname
amd64

¿Cual es la MAC de la placa de red?
$ /sbin/ifconfig | awk '/HWaddr/ {print $5}'
00:XX:XX:XX:XX:XX

¿Cual es el estado de mi memoria RAM?

Total: $ free -m | sed -n '2,2p' | awk '{print $2 " MB"}'
494 MB

Uso: $ free -m | sed -n '3,3p' | awk '{print $3 " MB"}'
297 MB

Libre: $ free -m | sed -n '3,3p' | awk '{print $4 " MB"}'
195 MB

¿Hace cuanto que está encendida la compu?
$ uptime | cut -d, -f1 | cut -d" " -f3-

¿Qué proceso está consumiendo más CPU?
$ ps -eo pcpu,pid,user,args | sort -k1 -r -n | head -2
%CPU PID USER COMMAND
2.1 10346 zarpele /usr/lib/opera/9.27-20080331.6/opera -style Plastik

¿Qué dispositivos tengo en los bus PCI?
$ /sbin/lspci
00:00.0 Host bridge: Intel Corporation 915G/P/GV/GL/PL/910GL Express Memory Controller Hub (rev 04)
00:01.0 PCI bridge: Intel Corporation 915G/P/GV/GL/PL/910GL Express PCI Express Root Port (rev 04)
00:02.0 VGA compatible controller: Intel Corporation 82915G/GV/910GL Express Chipset Family Graphics Controller (rev 04)
00:1b.0 Audio device: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) High Definition Audio Controller (rev 03)
00:1c.0 PCI bridge: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) PCI Express Port 1 (rev 03)
00:1d.0 USB Controller: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) USB UHCI #1 (rev 03)
00:1d.7 USB Controller: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) USB2 EHCI Controller (rev 03)
00:1e.0 PCI bridge: Intel Corporation 82801 PCI Bridge (rev d3)
00:1f.0 ISA bridge: Intel Corporation 82801FB/FR (ICH6/ICH6R) LPC Interface Bridge (rev 03)
00:1f.1 IDE interface: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) IDE Controller (rev 03)
00:1f.2 IDE interface: Intel Corporation 82801FB/FW (ICH6/ICH6W) SATA Controller (rev 03)
00:1f.3 SMBus: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) SMBus Controller (rev 03)
06:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL-8139/8139C/8139C+ (rev 10)

¿Qué dispositivos tengo en los bus USB?
$ /sbin/lsusb
Bus 5 Device 1: ID 0000:0000
Bus 3 Device 1: ID 0000:0000
Bus 2 Device 1: ID 0000:0000
Bus 1 Device 1: ID 0000:0000
Bus 4 Device 2: ID 03f0:1d17 Hewlett-Packard
Bus 4 Device 1: ID 0000:0000

¿Cuál es el nombre de usuario que tengo?
$ whoami
zarpele

¿A que grupos del sistema pertenezco?
$ groups
users floppy audio video cdrom

¿Cuánto espacio de disco usa mi cuenta?
du -sh $HOME
3.6G /home/eternauta

¿Que versión del compilador de C tengo instalado?
$ gcc –version | head -n1
gcc (GCC) 3.4.6

¿Qué librerías utiliza el programa xxx (por ejemplo mplayer)?
$ ldd /usr/bin/mplayer
linux-gate.so.1 => (0xffffe000)
libdvdnav.so.4 => /usr/lib/libdvdnav.so.4 (0xb7ecc000)
libpthread.so.0 => /lib/tls/libpthread.so.0 (0xb7e9c000)
libmad.so.0 => /usr/lib/libmad.so.0 (0xb7e87000)
libdv.so.4 => /usr/lib/libdv.so.4 (0xb7e5f000)
libtheora.so.0 => /usr/lib/libtheora.so.0 (0xb7e31000)
libogg.so.0 => /usr/lib/libogg.so.0 (0xb7e2c000)
libpng.so.3 => /usr/lib/libpng.so.3 (0xb7df1000)
libz.so.1 => /usr/lib/libz.so.1 (0xb7ddf000)
libjpeg.so.62 => /usr/lib/libjpeg.so.62 (0xb7dc2000)
libasound.so.2 => /usr/lib/libasound.so.2 (0xb7d02000)
libdl.so.2 => /lib/tls/libdl.so.2 (0xb7cfe000)
libxmms.so.1 => /usr/lib/libxmms.so.1 (0xb7cf1000)
libmpcdec.so.5 => /usr/lib/libmpcdec.so.5 (0xb7ce3000)

Monday, January 04, 2010

Router Zyxel

Password por defecto
http://taichi.obolog.com/howto-desbloqueo-zyxel-prestige-p-660hw-t1-v2-92292

http://www.adslayuda.com/Zyxel650.html

GMail en tu dominio

http://www.galder.net/2007/04/09/gmail-para-tu-dominio/
http://www.google.com/apps/intl/es/business/index.html

Tutorial
http://www.galder.net/2007/04/09/gmail-para-tu-dominio/

Acceso @Speedy

http://www.forospyware.com/t152259.html

INTERNET GRATIS ! Todas las dudas respuesta
http://foro.portalhacker.net/index.php?action=printpage;topic=67438.0



Material de lectura
http://www.elhacker.org/index.php?Ver=Seccion&Id=7
http://www.vilecha.com/Autodidactas/sniffers.html
http://foro.elhacker.net/redes/hackear_el_cablemodem-t78891.0.html

Llamda anonima?
o67xxxxx

Work Passwords

Perfect Passwords
https://www.grc.com/passwords.htm

The Diceware Passphrase Home Page
http://world.std.com/~reinhold/diceware.html

Wireless en Linux & Otros
http://blog.unlugarenelmundo.es/category/networking/wireless/

Sunday, January 03, 2010

Script

/etc/rc.d/rc.local
En GNU/Linux:
  1. Crear el archivo de comandos o de shell .sh con los comandos deseados
  2. Programar la tarea: Puedes usar y/o combinar los comandos cron, at, crontab

Saturday, January 02, 2010

Backtrack a Disco

Backtrack a disco
http://hwagm.elhacker.net/htm/backtrack.htm

Configurar Lilo

#vi /etc/lilo.conf
----------
boot = /dev/hda
prompt
default = BackTrack
timeout = 60
bitmap = /boot/splash.bmp
change-rules
reset
vga = normal
image = /boot/vmlinuz
root = /dev/hda2
label = BackTrack
read-write

other = /dev/hda1
label = WindowsXP
-------

#lilo -v
#lilo

Distros Linux

Fedora: Creacion de USB Live o Live CD
http://docs.fedoraproject.org/install-guide/f12/es-ES/html/ch-new-users.html#sn-making-media

Friday, January 01, 2010

Running apps

Runtastic (I uninstalled because force to update your device - Internet connection problems) Runkeeper  (Currently testing) Runna (Complex,...