This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Cómo evadir el Ban IP de Voxed.net en 3 simples pasos sin usar proxy en chrome | |
1- Instalar esto: https://chrome.google.com/webstore/detail/modify-headers-for-google/innpjfdalfhpcoinfnehdnbkglpmogdi | |
2- Abrir el archivo C:\Windows\System32\drivers\etc\hosts en bloc de notas, notepad++ o Sublime text y agregar estas lineas | |
178.62.236.92 voxed.net | |
178.62.236.92 www.voxed.net | |
3- En el navegador, ir hacia el icono de la extensión que instalamos y dejamos todo como en esta imagen: http://i.imgur.com/yuP3RWR.png |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Declaramos el array | |
var areasArray = [] //ARRAY | |
//result.length ->cantidad de registros | |
//--- Lleno los Arrays ---// |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Diagnostics; | |
using System.IO; | |
using System.Linq; | |
using System.Net.Sockets; | |
using System.Text; | |
using System.Threading.Tasks; | |
namespace VoxSpam |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Net; | |
using System.Net.Sockets; | |
using System.Text; | |
/* | |
* zahmed | |
* Date 23 Jan 2004 | |
* Socks 5 RFC is available at http://www.faqs.org/rfcs/rfc1928.html. | |
*/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body { | |
color: #222; | |
font-family: "Helvetica Neue",Arial,Helvetica,sans-serif; | |
} | |
body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, a, abbr, acronym, address, del, dfn, em, img, q, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, dialog, figure, footer, header, hgroup, nav, section{ | |
font-family: "Helvetica Neue",Arial,Helvetica,sans-serif; | |
} | |
nav.header{ | |
background: url(http://o1.t26.net/img/header/new-logo-color.png); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[[ ]] => English translate | |
************** Texto de la excepción ************** | |
System.InvalidOperationException: El objeto ya está en uso. // [[ Object already in use ]] | |
at System.Drawing.Image.get_Width() => // In this method has error | |
at System.Windows.Forms.PictureBox.ImageRectangleFromSizeMode(PictureBoxSizeMode mode) | |
at System.Windows.Forms.PictureBox.OnPaint(PaintEventArgs pe) | |
at System.Windows.Forms.Control.PaintWithErrorHandling(PaintEventArgs e, Int16 layer) | |
at System.Windows.Forms.Control.WmPaint(Message& m) | |
at System.Windows.Forms.Control.WndProc(Message& m) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Test = function(){ // para orden, los objetos tienen que comenzar con mayúsculas | |
this.prop1 = "Hola"; | |
this.metodo1 = function (){ | |
console.log('esta funcionando el metodo'); | |
} | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace AcaEstaTuTarea{ | |
static class Program{ | |
static void Main(string[] args){ | |
string[] arr1 = {"1","2"}; | |
string[] arr2 = {"a","b","c","d","e"}; | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$input = "<!--:es--> | |
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. | |
<!--:--> | |
<!--:en--> | |
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. I |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private void addEvents(){ | |
foreach(Control ctr in this.Controls){ | |
if(ctr is TextBox){ | |
((TextBox)ctr).KeyUp += textBox_KeyUp; | |
} | |
} | |
} | |
private void textBox_KeyUp(object sender, KeyEventArgs e) | |
{ |