elhacker.net cabecera Bienvenido(a), Visitante. Por favor Ingresar o Registrarse
¿Perdiste tu email de activación?.

 

 


Tema destacado: Usando Git para manipular el directorio de trabajo, el índice y commits (segunda parte)


  Mostrar Mensajes
Páginas: 1 ... 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 [36] 37 38 39 40 41
351  Foros Generales / Dudas Generales / Re: Duda megaupload.com de cuanto era la velocidad de descarga kb/s ? en: 24 Agosto 2012, 17:42 pm
en serio pero y cuanto era la maxima de subida en peso 2 GB

si lo ,mas importante es ver que sea reaunudables  y multiples descargas ilimitadas que no restrinja el ip de la banda ancha  hice mi mini ranking :laugh:

Server Principales recomendables: Mediafire = 200 MB , Putlocker =1 GB  paga a uploader y Gamefront =500 MB

Server Secundarios (Mirrors): 4shared, Zippyshare, Jumbofiles, GlumboUploads, Karelia, Freeuploads

Server  Terciario hay que seddear  ;D(Mirror) http://www.utorrent.com/

detesto servidores  de 50 kb/s de descarga muy lentas  aunqee tengas esta velocidad



limitan mucho por eso abri este hilo  ;).
352  Foros Generales / Dudas Generales / Re: DEEP WEB ( Sí, se que estaís hartos ) en: 24 Agosto 2012, 05:40 am
bueno como son terabits de informacion mayor a la de google existe alguna forma de evadir imagenes y videos flash , un plugin especial para no asustarce en Mozilla Firefox solo leer las letras :rolleyes:
353  Foros Generales / Dudas Generales / Duda megaupload.com de cuanto era la velocidad de descarga kb/s ? en: 24 Agosto 2012, 05:19 am
Duda  megaupload.com de cuanto era la velocidad de descarga kb/s ? le ganaba a mediafire 700 kb/s  de bajada yo solo hey usado estos

www.gamefront.com/

www.putlocker.com/

www.mediafire.com

http://jumbofiles.com/

http://twitter.com/KimDotcom

el dijo que volvera mejor este año 2012 alguien sabe alguna informacion  mas ;-)

me vuelve loco la descarga de 50 kb/s por segundo  :-[
354  Programación / Desarrollo Web / Re: Qué CMS utilizas con mayor frecuencia en: 24 Agosto 2012, 04:40 am
Wordpress y joomla  ;-)
355  Programación / .NET (C#, VB.NET, ASP) / Re: Embarcadero RAD Studio XE2 -With Update 3 - Activator by pulsar [Full] en: 24 Agosto 2012, 04:33 am
disculpen en cual era la zona :huh:
si es real hace tiempaso lo buscaba tambien yo para practicar basico  :P


356  Programación / PHP / Hosting Developers Xat Free (DB) en [PHP] Español errores ?¿VPS gratis existe? en: 24 Agosto 2012, 04:09 am


Estoy pensando crear en hosting

http://www.hostinger.es/

http://www.identi.li/index.php?topic=111477

o en http://www.000webhost.com/ para practicar a ¿VPS gratis existe aprovechando mi duda? :D




Código
  1. -- phpMyAdmin SQL Dump
  2. -- version 3.4.7
  3. -- http://www.phpmyadmin.net
  4. --
  5. -- Servidor: localhost
  6. -- Tiempo de generación: 16-01-2012 a las 21:13:16
  7. -- Versión del servidor: 5.5.8
  8. -- Versión de PHP: 5.3.8
  9.  
  10. SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
  11. SET time_zone = "+00:00";
  12.  
  13.  
  14. /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
  15. /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
  16. /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
  17. /*!40101 SET NAMES utf8 */;
  18.  
  19. --
  20. -- Base de datos: `tuto`
  21. --
  22.  
  23. -- --------------------------------------------------------
  24.  
  25. --
  26. -- Estructura de tabla para la tabla `bans`
  27. --
  28.  
  29. CREATE TABLE IF NOT EXISTS `bans` (
  30.  `chatid` int(11) NOT NULL,
  31.  `userid` int(11) NOT NULL,
  32.  `unbandate` bigint(20) NOT NULL
  33. ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
  34.  
  35. -- --------------------------------------------------------
  36.  
  37. --
  38. -- Estructura de tabla para la tabla `chats`
  39. --
  40.  
  41. CREATE TABLE IF NOT EXISTS `chats` (
  42.  `id` int(255) NOT NULL AUTO_INCREMENT,
  43.  `name` varchar(255) NOT NULL,
  44.  `bg` varchar(255) NOT NULL,
  45.  `email` varchar(255) NOT NULL,
  46.  PRIMARY KEY (`id`)
  47. ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
  48.  
  49. -- --------------------------------------------------------
  50.  
  51. --
  52. -- Estructura de tabla para la tabla `log`
  53. --
  54.  
  55. CREATE TABLE IF NOT EXISTS `log` (
  56.  `id` int(11) NOT NULL AUTO_INCREMENT,
  57.  `userid` int(11) NOT NULL,
  58.  `action` varchar(999) NOT NULL,
  59.  PRIMARY KEY (`id`)
  60. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
  61.  
  62. -- --------------------------------------------------------
  63.  
  64. --
  65. -- Estructura de tabla para la tabla `powers`
  66. --
  67.  
  68. CREATE TABLE IF NOT EXISTS `powers` (
  69.  `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Power ID',
  70.  `section` varchar(255) NOT NULL DEFAULT 'p0' COMMENT 'P string index',
  71.  `name` varchar(255) NOT NULL COMMENT 'Power name',
  72.  `subid` bigint(20) NOT NULL COMMENT 'ID in the p string',
  73.  `cost` int(11) NOT NULL,
  74.  PRIMARY KEY (`id`)
  75. ) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=892 ;
  76.  
  77. --
  78. -- Volcado de datos para la tabla `powers`
  79. --
  80.  
  81. INSERT INTO `powers` (`id`, `section`, `name`, `subid`, `cost`) VALUES
  82. (1, 'p0', 'all', 1, 5000),
  83. (2, 'p1', 'status', 4194304, 400),
  84. (3, 'p1', 'anime', 2097152, 500),
  85. (4, 'p0', 'zoom', 16, 300),
  86. (5, 'p1', 'valentine', 1073741824, 1500),
  87. (6, 'p0', 'invert', 64, 200),
  88. (7, 'p0', 'mirror', 128, 100),
  89. (8, 'p0', 'clear', 16777216, 3000),
  90. (9, 'p0', 'reghide', 512, 100),
  91. (10, 'p1', 'christmas', 33554432, 1000),
  92. (11, 'p1', 'angel', 8192, 4000),
  93. (12, 'p0', 'hat', 4096, 100),
  94. (13, 'p0', 'red', 8192, 150),
  95. (14, 'p0', 'green', 16384, 150),
  96. (15, 'p0', 'blue', 32768, 150),
  97. (16, 'p0', 'light', 65536, 150),
  98. (17, 'p0', 'heart', 131072, 1000),
  99. (18, 'p0', 'shuffle', 262144, 25),
  100. (19, 'p0', 'animate', 524288, 400),
  101. (20, 'p0', 'square', 1048576, 100),
  102. (21, 'p0', 'nameglow', 2097152, 400),
  103. (35, 'p1', 'purple', 8, 25000),
  104. (-1, 'p0', 'pink', 1073741824, 500),
  105. (23, 'p1', 'six', 2048, 2000),
  106. (22, 'p1', 'num', 262144, 400),
  107. (24, 'p1', 'gag', 512, 1500),
  108. (25, 'p1', 'costumes', 1024, 500),
  109. (26, 'p1', 'dood', 1, 250),
  110. (27, 'p1', 'mute', 16384, 400),
  111. (28, 'p1', 'fruit', 65536, 500),
  112. (29, 'p1', 'sport', 131072, 350),
  113. (30, 'p1', 'halloween', 1048576, 1000),
  114. (31, 'p1', 'thanksgiving', 8388608, 800),
  115. (159, 'p0', 'topman', 2, 200),
  116. (160, 'p0', 'cycle', 4194304, 200),
  117. (161, 'p0', 'show', 134217728, 50),
  118. (162, 'p0', 'superkick', 268435456, 100),
  119. (163, 'p0', 'invisible', 536870912, 400),
  120. (164, 'p1', 'sinbin', 2, 300),
  121. (165, 'p2', 'diamond', 1, 500),
  122. (166, 'p1', 'fade', 2147483648, 1000),
  123. (169, 'p1', 'radio', 32768, 500),
  124. (888, 'p1', 'yellow', 16, 50000),
  125. (171, 'p0', 'boot', 33554432, 5000),
  126. (172, 'p0', 'subhide', 4, 100),
  127. (173, 'p0', '42', 8, 50000),
  128. (174, 'p0', 'nofollow', 32, 100),
  129. (175, 'p0', 'noaudies', 256, 5),
  130. (176, 'p0', 'nopc', 1024, 200),
  131. (177, 'p0', 'tempmod', 2048, 220),
  132. (178, 'p0', 'hexagon', 8388608, 100),
  133. (179, 'p1', 'hands', 32, 300),
  134. (180, 'p1', 'hairm', 64, 150),
  135. (181, 'p1', 'hairf', 128, 200),
  136. (182, 'p1', 'hush', 524288, 250),
  137. (183, 'p1', 'snowy', 16777216, 300),
  138. (184, 'p1', 'count', 67108864, 200),
  139. (185, 'p1', 'stick', 134217728, 300),
  140. (186, 'p1', 'tempmen', 536870912, 100),
  141. (889, 'p1', 'sicon', 4096, 30000);
  142.  
  143. -- --------------------------------------------------------
  144.  
  145. --
  146. -- Estructura de tabla para la tabla `ranks`
  147. --
  148.  
  149. CREATE TABLE IF NOT EXISTS `ranks` (
  150.  `chatid` int(11) NOT NULL,
  151.  `userid` int(11) NOT NULL,
  152.  `f` int(11) NOT NULL
  153. ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
  154.  
  155. -- --------------------------------------------------------
  156.  
  157. --
  158. -- Estructura de tabla para la tabla `trade`
  159. --
  160.  
  161. CREATE TABLE IF NOT EXISTS `trade` (
  162.  `ID` int(11) NOT NULL,
  163.  `Power` varchar(1000) NOT NULL,
  164.  `Preco` int(11) NOT NULL,
  165.  `User` varchar(1000) NOT NULL,
  166.  `Descricao` varchar(1000) NOT NULL,
  167.  `Status` int(11) NOT NULL,
  168.  `powerid` int(11) NOT NULL
  169. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  170.  
  171. -- --------------------------------------------------------
  172.  
  173. --
  174. -- Estructura de tabla para la tabla `userpowers`
  175. --
  176.  
  177. CREATE TABLE IF NOT EXISTS `userpowers` (
  178.  `userid` int(11) NOT NULL,
  179.  `powerid` int(11) NOT NULL,
  180.  `count` int(11) NOT NULL
  181. ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
  182.  
  183. -- --------------------------------------------------------
  184.  
  185. --
  186. -- Estructura de tabla para la tabla `users`
  187. --
  188.  
  189. CREATE TABLE IF NOT EXISTS `users` (
  190.  `id` int(255) NOT NULL AUTO_INCREMENT,
  191.  `username` varchar(255) NOT NULL,
  192.  `nickname` varchar(255) NOT NULL,
  193.  `password` varchar(255) NOT NULL,
  194.  `avatar` varchar(255) NOT NULL,
  195.  `url` varchar(255) NOT NULL,
  196.  `k` int(255) NOT NULL,
  197.  `k2` int(255) NOT NULL,
  198.  `k3` int(255) NOT NULL,
  199.  `xats` int(11) NOT NULL DEFAULT '50000',
  200.  `days` int(11) NOT NULL DEFAULT '3600',
  201.  `email` varchar(999) NOT NULL,
  202.  `powers` varchar(255) NOT NULL,
  203.  `enabled` varchar(255) NOT NULL,
  204.  PRIMARY KEY (`id`)
  205. ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
  206.  
  207. /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
  208. /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
  209. /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
  210.  

AqppServ : AppServ - Browse /AppServ Open Project/2.5.9 at SourceForge.net

Pack (CMS,DB Y SWF) : ¡Crea tu ixat en español by Link55513!.rar

ADOBE FLASH CS6 : Software de animación, programas multimedia | Adobe Flash Professional CS6

SWIX : Descargar SWiX_1_1_1_Setup.exe gratis - SWiX


http://ixatfcol.compu.co

http://ixatheros.zapto.org

fuente

http://kekomundo.com/foro/index.php?PHPSESSID=f4g6khiv8mf45tbjfq72tvdcf3&topic=172597.0

http://kekomundo.com/foro/index.php?PHPSESSID=f4g6khiv8mf45tbjfq72tvdcf3&topic=232244.0

bueno lo que me gusta de xat es su traducotr google vs 2 en flash hay si fuese gratis   :xD jejeje    ;-)
357  Programación / Ingeniería Inversa / Re: Alguien puede ayudarme con esto en: 24 Agosto 2012, 03:26 am
corrigime si me equivoco pero ese software es de borland  puse en google imagenes como me salio el antigou delphi asocie con mi post  derrepente se encuentre ese aplicacion free ahi ;D

http://foro.elhacker.net/programacion_general/embarcadero_rad_studio_xe2_with_update_3_activator_by_pulsar_full-t369679.0.html;msg1777249#new


si no tienes que escarbar como yo lo hago en torrents  ahi se mueve archivos  de todo el mundo ya sea software especialmente con licencia  :3 siempre quedan archivos viejos crack keygens seriales  ;D.

http://foro.elhacker.net/foro_libre/las_mejores_paginas_download_microtorrent_mediafire_gamefront_putlocker-t369547.0.html;msg1777195;topicseen
358  Programación / Ingeniería Inversa / Re: Duda numero de registro de disco duro = Codigo maquina que es como lo cambio ? en: 24 Agosto 2012, 03:01 am
Para que no salga el cartel:

- Clic derecho en Mi PC.
- Clic en Propiedades.
- Clic en la pestaña Hardware.
- Clic en el botón de Firma de controladores.
- Marca la opción Ninguna: instalar el software sin pedir mi aprobación.
- Clic en Aceptar.

Y con eso ya no deberia salir.

muchas gracias de verdad ahora a provar este grandioso software  que me limitaba a 30 dias ya me habian bloqueado  prohibido  poner la hora en que sincronisaba el tiempo , el titulo y su marca de agua de lo que uno transmite por que no queria agarrar la licencia uff me salvastes el dia .
359  Programación / .NET (C#, VB.NET, ASP) / Embarcadero RAD Studio XE2 -With Update 3 - Activator by pulsar [Full] en: 24 Agosto 2012, 02:25 am
jejeje para los desarrolladores en delphi  ;) seedear es mantener el archivo para compartir pesa iso 2,51 Gb

crear una disco virtual

DAEMON Tools Lite

http://www.daemon-tools.cc/eng/downloads






Delphi XE2
Embarcadero ® Delphi ® XE2, ahora con FireMonkey ™, es la manera más rápida para ofrecer aplicaciones nativas de ultra-ricos y visualmente impresionante para Windows, Mac y iOS - incluyendo aplicaciones de 64 bits de Windows. Reducir drásticamente el tiempo de codificación y creación de aplicaciones 5 veces más rápido. Delphi XE2 ofrece desarrollo basado en componentes visuales y totalmente visual de dos vías RAD IDE con acceso de alto rendimiento a bases de datos populares.

http://www.utorrent.com/

Link :

http://thepiratebay.se/torrent/7069872/Embarcadero_RAD_Studio_XE2_-_With_Update_3_-_Activator_by_pulsar
360  Sistemas Operativos / GNU/Linux / [RETO]Software Free Driver Cam y Tarjeta de sonido Virtual en Linux Existe ? en: 24 Agosto 2012, 01:55 am
[RETO]Software Streamming  Driver Cam y Tarjeta de sonido Virtual en Linux Existe ?

similares a  estos software en Windows 7 aver si existe  :huh:




wirescat en mac y windows pero solo funciona con justin.tv y livestream y otros pero ami me gusta en otros propio :3



jejeje ese satelite me inspira en un software  internet free con wifi un sueño  :xD

http://www.telestream.net/wirecast/overview.htm



http://www.identi.li/?topic=113333

Adobe Flash Media Live Encoder 3.2  algo similar en linux ?
Páginas: 1 ... 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 [36] 37 38 39 40 41
WAP2 - Aviso Legal - Powered by SMF 1.1.21 | SMF © 2006-2008, Simple Machines