Menú

Mostrar Mensajes

Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.

Mostrar Mensajes Menú

Temas - Diaf96

#1
Hola, no he encontrado ningun sub foro dedicado a android a si que lo pongo aqui. Tengo una idea para una aplicación de android, un centro de estudio donde vas a tener una calculadora, una enciclopedia, un diccionario, un traductor y mas cosas, se que hay programas que te pmiten hacer aplicaciones faciles y cutres con lo que podria linkear cada sección a una pagina web, a la wikipedia, calculadora online, rae.es etc...
Pero a mi me gustaria que la aplicacion se puediera usar sin conexion a internet, osea que la enciclopedian, traductor, diccionario y demas secciones vayan incluidas en la app. ¿Alguien me podria decir algun programa con lo que poder hacerlo? ya que no tengo mucha idea de programacion como para poder hacerlo desde cero.
Gracias, saludos.
#2
Juegos y Consolas / MMO o MMORPG gratis?
8 Agosto 2013, 17:25 PM
Alguien sabe de juegos de este estilo gratis y en español y con servidores españoles?
#3
Electrónica / ¿Utilidad cámara movil?
7 Agosto 2013, 17:47 PM
Hola, me gustaría saber si la camara de un movil me puede servir para algo. Tenía en la cabeza poener la camara en unas gafas y conectarla a una micro sd y un interruptor o si no conectarla de alguna forma inhalambrica a mi movil con android y crear una aplicación para controlar la cámara o algo así.
¿Sabeis si estas locuras que digo se puede llevar a cabo de una forma sencilla?
#4
Hardware / ¿Utilidad cámara movil?
6 Agosto 2013, 18:37 PM
Hola, me gustaría saber si la camara de un movil me puede servir para algo. Tenía en la cabeza poener la camara en unas gafas y conectarla a una micro sd y un interruptor o si no conectarla de alguna forma inhalambrica a mi movil con android y crear una aplicación para controlar la cámara o algo así.
¿Sabeis si estas locuras que digo se puede llevar a cabo de una forma sencilla?
#5
Hola, en un foro tenemos un scroll horizontal que no sabemos como quitar, aparece en todos los navegadores menos en google chrome, alguna solucion?
gracias.
#6
Desarrollo Web / Ayuda con bot twitter.
29 Julio 2012, 14:56 PM
Hace unos días pregunte como hacer un bot en twitter que mande mensajes automatizados. Me dijeron que con la api de twitter podria hacerlo, he buscado tutoriales pero no se, alguien tiene un tutorial?
gracias de ante mano.
#7
Desarrollo Web / Bot twitter.
17 Julio 2012, 17:55 PM
Hola, alguien tiene algun bot para twitter o me dice como hacer uno, que twitte palabras aleatorias?
#8
Hola, tengo un problema, tego 3 ordenadores conectados a mi red por wi-fi, dos de ellos van perfectamente pero en uno donde las 4 barras de conexion salen además un simbolo de peligro y me dice que no hay conexcion a internet. ¿Alguna solución?




necesito ayuda, ahora ya no me funcionan 2 pc.
#9
Hola, creo que me estan controlando el pc.
Desde hace un tiempo estoy en una residencia de estudiantes y creo que nos controlan lo que hacemos en internet.
Estamos conectados a su red wi-fi, podria entender que nos vigilen internet, pero al parecer tienen tecnicos que nos pueden controlar el pc desde su ordenador y arreglar cosas.
Queria saber si hay forma de demostrarlo y si es denunciable.
#10
GNU/Linux / dudas generales linux.
29 Abril 2012, 14:23 PM
hola, me estaba planteando instalar linux en mi ordenador y tengo dudas.
¿Que distro elegir? teniapensado ubuntu.
¿Programas como jdownloader, ccleaner, tune up, mozilla firefox funcionan en linux?
¿Antivirus y anti malwares como antimalwarebytes, super ainti spyware funcionan?
¿Si no es asi que antivirus y demas me recomiendan?
¿Los archivos son compatibles, video, imagen, texto...?
#11
Desarrollo Web / ¿Me ayudan con un codigo?
3 Abril 2012, 18:48 PM
Hola, me gustaría que me ayudaran a añadir este header: http://i41.tinypic.com/i3c8c2.png un contador de visitas y decirme dodne esta el codigo del color del background para cambiarlo de este codigo, porfavor.
Gracias.

Código (html4strict) [Seleccionar]
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">

<html>
<head>
<title>Convert Binary to ASCII or ASCII to Binary</title>
<style type="text/css">
BODY {font:12px Arial;}
a {text-decoration: none}
TD.ts {font:24px Arial;font-weight:bold;text-align:center;}
TD.ts1 {font:12px Arial;text-align:center;background-color:silver;}
TD.ts2 {font:10px Arial;text-align:left;vertical-align:top;background-color:white;}
TD.ts3 {font:10px Arial;text-align:center;vertical-align:top;background-color:white;}
</style>
</head>

<body text="black" link="blue" vlink="blue" alink="red">
<script language="JavaScript1.2">
// Conversion from Binary to ASCII or ASCII to Binary
// Created by G. Marshall Brown
// Copyright 2002 G. Marshall Brown
// version 1.0 -- created 4/29/02
// version 1.1 -- modified 12/04/02 Added many characters that weren't in version 1.0.
// version XX -- modified --/--/--
// All rights reserved, no modification without prior consent from creator.
// Usage is free if Copyright statement remains intact.
function dobin(text,sepa) {
var letbin = ""
for (i=0; i<text.length;i++) {

let = text.substr(i,1);
if (i>0) {
var sep = sepa;
if (i % 10 == 0) {
letbin=letbin+'<BR>'
}
}
else {
var sep = "";
}

//Ascii -- Binary Code
if (let ==  "A") {letbin = letbin + sep + '01000001'}
if (let ==  "B") {letbin = letbin + sep + '01000010'}
if (let ==  "C") {letbin = letbin + sep + '01000011'}
if (let ==  "D") {letbin = letbin + sep + '01000100'}
if (let ==  "E") {letbin = letbin + sep + '01000101'}
if (let ==  "F") {letbin = letbin + sep + '01000110'}
if (let ==  "G") {letbin = letbin + sep + '01000111'}
if (let ==  "H") {letbin = letbin + sep + '01001000'}
if (let ==  "I") {letbin = letbin + sep + '01001001'}
if (let ==  "J") {letbin = letbin + sep + '01001010'}
if (let ==  "K") {letbin = letbin + sep + '01001011'}
if (let ==  "L") {letbin = letbin + sep + '01001100'}
if (let ==  "M") {letbin = letbin + sep + '01001101'}
if (let ==  "N") {letbin = letbin + sep + '01001110'}
if (let ==  "O") {letbin = letbin + sep + '01001111'}
if (let ==  "P") {letbin = letbin + sep + '01010000'}
if (let ==  "Q") {letbin = letbin + sep + '01010001'}
if (let ==  "R") {letbin = letbin + sep + '01010010'}
if (let ==  "S") {letbin = letbin + sep + '01010011'}
if (let ==  "T") {letbin = letbin + sep + '01010100'}
if (let ==  "U") {letbin = letbin + sep + '01010101'}
if (let ==  "V") {letbin = letbin + sep + '01010110'}
if (let ==  "W") {letbin = letbin + sep + '01010111'}
if (let ==  "X") {letbin = letbin + sep + '01011000'}
if (let ==  "Y") {letbin = letbin + sep + '01011001'}
if (let ==  "Z") {letbin = letbin + sep + '01011010'}
if (let ==  "a") {letbin = letbin + sep + '01100001'}
if (let ==  "b") {letbin = letbin + sep + '01100010'}
if (let ==  "c") {letbin = letbin + sep + '01100011'}
if (let ==  "d") {letbin = letbin + sep + '01100100'}
if (let ==  "e") {letbin = letbin + sep + '01100101'}
if (let ==  "f") {letbin = letbin + sep + '01100110'}
if (let ==  "g") {letbin = letbin + sep + '01100111'}
if (let ==  "h") {letbin = letbin + sep + '01101000'}
if (let ==  "i") {letbin = letbin + sep + '01101001'}
if (let ==  "j") {letbin = letbin + sep + '01101010'}
if (let ==  "k") {letbin = letbin + sep + '01101011'}
if (let ==  "l") {letbin = letbin + sep + '01101100'}
if (let ==  "m") {letbin = letbin + sep + '01101101'}
if (let ==  "n") {letbin = letbin + sep + '01101110'}
if (let ==  "o") {letbin = letbin + sep + '01101111'}
if (let ==  "p") {letbin = letbin + sep + '01110000'}
if (let ==  "q") {letbin = letbin + sep + '01110001'}
if (let ==  "r") {letbin = letbin + sep + '01110010'}
if (let ==  "s") {letbin = letbin + sep + '01110011'}
if (let ==  "t") {letbin = letbin + sep + '01110100'}
if (let ==  "u") {letbin = letbin + sep + '01110101'}
if (let ==  "v") {letbin = letbin + sep + '01110110'}
if (let ==  "w") {letbin = letbin + sep + '01110111'}
if (let ==  "x") {letbin = letbin + sep + '01111000'}
if (let ==  "y") {letbin = letbin + sep + '01111001'}
if (let ==  "z") {letbin = letbin + sep + '01111010'}
if (let ==  " ") {letbin = letbin + sep + '00100000'}

//Numbers:
if (let ==  "0") {letbin = letbin + sep + '00110000'}
if (let ==  "1") {letbin = letbin + sep + '00110001'}
if (let ==  "2") {letbin = letbin + sep + '00110010'}
if (let ==  "3") {letbin = letbin + sep + '00110011'}
if (let ==  "4") {letbin = letbin + sep + '00110100'}
if (let ==  "5") {letbin = letbin + sep + '00110101'}
if (let ==  "6") {letbin = letbin + sep + '00110110'}
if (let ==  "7") {letbin = letbin + sep + '00110111'}
if (let ==  "8") {letbin = letbin + sep + '00111000'}
if (let ==  "9") {letbin = letbin + sep + '00111001'}

//Special Characters:
if (let ==  "!") {letbin = letbin + sep + '00100001'}
if (let ==  "\"") {letbin = letbin + sep + '00100010'}
if (let ==  "#") {letbin = letbin + sep + '00100011'}
if (let ==  "$") {letbin = letbin + sep + '00100100'}
if (let ==  "%") {letbin = letbin + sep + '00100101'}
if (let ==  "&") {letbin = letbin + sep + '00100110'}
if (let ==  "'") {letbin = letbin + sep + '00100111'}
if (let ==  "(") {letbin = letbin + sep + '00101000'}
if (let ==  ")") {letbin = letbin + sep + '00101001'}
if (let ==  "*") {letbin = letbin + sep + '00101010'}
if (let ==  "+") {letbin = letbin + sep + '00101011'}
if (let ==  ",") {letbin = letbin + sep + '00101100'}
if (let ==  "-") {letbin = letbin + sep + '00101101'}
if (let ==  ".") {letbin = letbin + sep + '00101110'}
if (let ==  "/") {letbin = letbin + sep + '00101111'}
if (let ==  ":") {letbin = letbin + sep + '00111010'}
if (let ==  ";") {letbin = letbin + sep + '00111011'}
if (let ==  "<") {letbin = letbin + sep + '00111100'}
if (let ==  "=") {letbin = letbin + sep + '00111101'}
if (let ==  ">") {letbin = letbin + sep + '00111110'}
if (let ==  "?") {letbin = letbin + sep + '00111111'}
if (let ==  "@") {letbin = letbin + sep + '01000000'}
if (let ==  "[") {letbin = letbin + sep + '01011011'}
if (let ==  "\\") {letbin = letbin + sep + '01011100'}
if (let ==  "]") {letbin = letbin + sep + '01011101'}
if (let ==  "^") {letbin = letbin + sep + '01011110'}
if (let ==  "_") {letbin = letbin + sep + '01011111'}
if (let ==  "`") {letbin = letbin + sep + '01100000'}
if (let ==  "{") {letbin = letbin + sep + '01111011'}
if (let ==  "|") {letbin = letbin + sep + '01111100'}
if (let ==  "}") {letbin = letbin + sep + '01111101'}
if (let ==  "~") {letbin = letbin + sep + '01111110'}
if (let ==  "€") {letbin = letbin + sep + '10000000'}
if (let ==  "¡") {letbin = letbin + sep + '10100001'}
if (let ==  "¢") {letbin = letbin + sep + '10100010'}
if (let ==  "£") {letbin = letbin + sep + '10100011'}
if (let ==  "¤") {letbin = letbin + sep + '10100100'}
if (let ==  "¥") {letbin = letbin + sep + '10100101'}
if (let ==  "¦") {letbin = letbin + sep + '10100110'}
if (let ==  "§") {letbin = letbin + sep + '10100111'}
if (let ==  "¨") {letbin = letbin + sep + '10100111'}
if (let ==  "©") {letbin = letbin + sep + '10101001'}
if (let ==  "ª") {letbin = letbin + sep + '10101010'}
if (let ==  "«") {letbin = letbin + sep + '10101011'}
if (let ==  "¬") {letbin = letbin + sep + '10101100'}
if (let ==  "­") {letbin = letbin + sep + '10101101'}
if (let ==  "®") {letbin = letbin + sep + '10101110'}
if (let ==  "¯") {letbin = letbin + sep + '10101111'}
if (let ==  "°") {letbin = letbin + sep + '10110000'}
if (let ==  "±") {letbin = letbin + sep + '10110001'}
if (let ==  "²") {letbin = letbin + sep + '10110010'}
if (let ==  "³") {letbin = letbin + sep + '10110011'}
if (let ==  "´") {letbin = letbin + sep + '10110100'}
if (let ==  "µ") {letbin = letbin + sep + '10110101'}
if (let ==  "¶") {letbin = letbin + sep + '10110110'}
if (let ==  "·") {letbin = letbin + sep + '10110111'}
if (let ==  "¸") {letbin = letbin + sep + '10111000'}
if (let ==  "¹") {letbin = letbin + sep + '10111001'}
if (let ==  "º") {letbin = letbin + sep + '10111010'}
if (let ==  "»") {letbin = letbin + sep + '10111011'}
if (let ==  "¼") {letbin = letbin + sep + '10111100'}
if (let ==  "½") {letbin = letbin + sep + '10111101'}
if (let ==  "¾") {letbin = letbin + sep + '10111110'}
if (let ==  "¿") {letbin = letbin + sep + '10111111'}
if (let ==  "À") {letbin = letbin + sep + '11000000'}
if (let ==  "Á") {letbin = letbin + sep + '11000001'}
if (let ==  "") {letbin = letbin + sep + '11000010'}
if (let ==  "Ã") {letbin = letbin + sep + '11000011'}
if (let ==  "Ä") {letbin = letbin + sep + '11000100'}
if (let ==  "Å") {letbin = letbin + sep + '11000101'}
if (let ==  "Æ") {letbin = letbin + sep + '11000110'}
if (let ==  "Ç") {letbin = letbin + sep + '11000111'}
if (let ==  "È") {letbin = letbin + sep + '11001000'}
if (let ==  "É") {letbin = letbin + sep + '11001001'}
if (let ==  "Ê") {letbin = letbin + sep + '11001010'}
if (let ==  "Ë") {letbin = letbin + sep + '11001011'}
if (let ==  "Ì") {letbin = letbin + sep + '11001100'}
if (let ==  "Í") {letbin = letbin + sep + '11001101'}
if (let ==  "Î") {letbin = letbin + sep + '11001110'}
if (let ==  "Ï") {letbin = letbin + sep + '11001111'}
if (let ==  "Ð") {letbin = letbin + sep + '11010000'}
if (let ==  "Ñ") {letbin = letbin + sep + '11010001'}
if (let ==  "Ò") {letbin = letbin + sep + '11010010'}
if (let ==  "Ó") {letbin = letbin + sep + '11010011'}
if (let ==  "Ô") {letbin = letbin + sep + '11010100'}
if (let ==  "Õ") {letbin = letbin + sep + '11010101'}
if (let ==  "Ö") {letbin = letbin + sep + '11010110'}
if (let ==  "×") {letbin = letbin + sep + '11010111'}
if (let ==  "Ø") {letbin = letbin + sep + '11011000'}
if (let ==  "Ù") {letbin = letbin + sep + '11011001'}
if (let ==  "Ú") {letbin = letbin + sep + '11011010'}
if (let ==  "Û") {letbin = letbin + sep + '11011011'}
if (let ==  "Ü") {letbin = letbin + sep + '11011100'}
if (let ==  "Ý") {letbin = letbin + sep + '11011101'}
if (let ==  "Þ") {letbin = letbin + sep + '11011110'}
if (let ==  "ß") {letbin = letbin + sep + '11011111'}
if (let ==  "à") {letbin = letbin + sep + '11100000'}
if (let ==  "á") {letbin = letbin + sep + '11100001'}
if (let ==  "") {letbin = letbin + sep + '11100010'}
if (let ==  "ã") {letbin = letbin + sep + '11100011'}
if (let ==  "ä") {letbin = letbin + sep + '11100100'}
if (let ==  "å") {letbin = letbin + sep + '11100101'}
if (let ==  "æ") {letbin = letbin + sep + '11100110'}
if (let ==  "ç") {letbin = letbin + sep + '11100111'}
if (let ==  "è") {letbin = letbin + sep + '11101000'}
if (let ==  "é") {letbin = letbin + sep + '11101001'}
if (let ==  "ê") {letbin = letbin + sep + '11101010'}
if (let ==  "ë") {letbin = letbin + sep + '11101011'}
if (let ==  "ì") {letbin = letbin + sep + '11101100'}
if (let ==  "í") {letbin = letbin + sep + '11101101'}
if (let ==  "î") {letbin = letbin + sep + '11101110'}
if (let ==  "ï") {letbin = letbin + sep + '11101111'}
if (let ==  "ð") {letbin = letbin + sep + '11110000'}
if (let ==  "ñ") {letbin = letbin + sep + '11110001'}
if (let ==  "ò") {letbin = letbin + sep + '11110010'}
if (let ==  "ó") {letbin = letbin + sep + '11110011'}
if (let ==  "ô") {letbin = letbin + sep + '11110100'}
if (let ==  "õ") {letbin = letbin + sep + '11110101'}
if (let ==  "ö") {letbin = letbin + sep + '11110110'}
if (let ==  "÷") {letbin = letbin + sep + '11110111'}
if (let ==  "ø") {letbin = letbin + sep + '11111000'}
if (let ==  "ù") {letbin = letbin + sep + '11111001'}
if (let ==  "ú") {letbin = letbin + sep + '11111010'}
if (let ==  "û") {letbin = letbin + sep + '11111011'}
if (let ==  "û") {letbin = letbin + sep + '11111100'}
if (let ==  "ý") {letbin = letbin + sep + '11111101'}
if (let ==  "þ") {letbin = letbin + sep + '11111110'}
if (let ==  "ÿ") {letbin = letbin + sep + '11111111'}

}
binary.innerHTML = letbin
return false;
}

function doasc(text) {

if (text.length % 8 != 0) {
alert (text + " is not an even binary.\n\nYou may have missed a digit or maybe added an additional digit/character.\n\nSeparaters are NOT required here.")
return false;
last;
}
var letasc = ""
lettot = text.length / 8
j=0
for (i=0; i<lettot;i++) {

let = text.substr(j,8);



if (let ==  "01000001") {letasc = letasc + 'A'}
if (let ==  "01000010") {letasc = letasc + 'B'}
if (let ==  "01000011") {letasc = letasc + 'C'}
if (let ==  "01000100") {letasc = letasc + 'D'}
if (let ==  "01000101") {letasc = letasc + 'E'}
if (let ==  "01000110") {letasc = letasc + 'F'}
if (let ==  "01000111") {letasc = letasc + 'G'}
if (let ==  "01001000") {letasc = letasc + 'H'}
if (let ==  "01001001") {letasc = letasc + 'I'}
if (let ==  "01001010") {letasc = letasc + 'J'}
if (let ==  "01001011") {letasc = letasc + 'K'}
if (let ==  "01001100") {letasc = letasc + 'L'}
if (let ==  "01001101") {letasc = letasc + 'M'}
if (let ==  "01001110") {letasc = letasc + 'N'}
if (let ==  "01001111") {letasc = letasc + 'O'}
if (let ==  "01010000") {letasc = letasc + 'P'}
if (let ==  "01010001") {letasc = letasc + 'Q'}
if (let ==  "01010010") {letasc = letasc + 'R'}
if (let ==  "01010011") {letasc = letasc + 'S'}
if (let ==  "01010100") {letasc = letasc + 'T'}
if (let ==  "01010101") {letasc = letasc + 'U'}
if (let ==  "01010110") {letasc = letasc + 'V'}
if (let ==  "01010111") {letasc = letasc + 'W'}
if (let ==  "01011000") {letasc = letasc + 'X'}
if (let ==  "01011001") {letasc = letasc + 'Y'}
if (let ==  "01011010") {letasc = letasc + 'Z'}
if (let ==  "01100001") {letasc = letasc + 'a'}
if (let ==  "01100010") {letasc = letasc + 'b'}
if (let ==  "01100011") {letasc = letasc + 'c'}
if (let ==  "01100100") {letasc = letasc + 'd'}
if (let ==  "01100101") {letasc = letasc + 'e'}
if (let ==  "01100110") {letasc = letasc + 'f'}
if (let ==  "01100111") {letasc = letasc + 'g'}
if (let ==  "01101000") {letasc = letasc + 'h'}
if (let ==  "01101001") {letasc = letasc + 'i'}
if (let ==  "01101010") {letasc = letasc + 'j'}
if (let ==  "01101011") {letasc = letasc + 'k'}
if (let ==  "01101100") {letasc = letasc + 'l'}
if (let ==  "01101101") {letasc = letasc + 'm'}
if (let ==  "01101110") {letasc = letasc + 'n'}
if (let ==  "01101111") {letasc = letasc + 'o'}
if (let ==  "01110000") {letasc = letasc + 'p'}
if (let ==  "01110001") {letasc = letasc + 'q'}
if (let ==  "01110010") {letasc = letasc + 'r'}
if (let ==  "01110011") {letasc = letasc + 's'}
if (let ==  "01110100") {letasc = letasc + 't'}
if (let ==  "01110101") {letasc = letasc + 'u'}
if (let ==  "01110110") {letasc = letasc + 'v'}
if (let ==  "01110111") {letasc = letasc + 'w'}
if (let ==  "01111000") {letasc = letasc + 'x'}
if (let ==  "01111001") {letasc = letasc + 'y'}
if (let ==  "01111010") {letasc = letasc + 'z'}
if (let ==  "00100000") {letasc = letasc + ' '}

//Numbers:
if (let ==  "00110000") {letasc = letasc + '0'}
if (let ==  "00110001") {letasc = letasc + '1'}
if (let ==  "00110010") {letasc = letasc + '2'}
if (let ==  "00110011") {letasc = letasc + '3'}
if (let ==  "00110100") {letasc = letasc + '4'}
if (let ==  "00110101") {letasc = letasc + '5'}
if (let ==  "00110110") {letasc = letasc + '6'}
if (let ==  "00110111") {letasc = letasc + '7'}
if (let ==  "00111000") {letasc = letasc + '8'}
if (let ==  "00111001") {letasc = letasc + '9'}

//Special Characters:
if (let ==  "00100001") {letasc = letasc + '!'}
if (let ==  "00100010") {letasc = letasc + '\"'}
if (let ==  "00100011") {letasc = letasc + '#'}
if (let ==  "00100100") {letasc = letasc + '$'}
if (let ==  "00100101") {letasc = letasc + '%'}
if (let ==  "00100110") {letasc = letasc + '&'}
if (let ==  "00100111") {letasc = letasc + '\''}
if (let ==  "00101000") {letasc = letasc + '('}
if (let ==  "00101001") {letasc = letasc + ')'}
if (let ==  "00101010") {letasc = letasc + '*'}
if (let ==  "00101011") {letasc = letasc + '+'}
if (let ==  "00101100") {letasc = letasc + ','}
if (let ==  "00101101") {letasc = letasc + '-'}
if (let ==  "00101110") {letasc = letasc + '.'}
if (let ==  "00101111") {letasc = letasc + '/'}
if (let ==  "00111010") {letasc = letasc + ':'}
if (let ==  "00111011") {letasc = letasc + ';'}
if (let ==  "00111100") {letasc = letasc + '<'}
if (let ==  "00111101") {letasc = letasc + '='}
if (let ==  "00111110") {letasc = letasc + '>'}
if (let ==  "00111111") {letasc = letasc + '?'}
if (let ==  "01000000") {letasc = letasc + '@'}
if (let ==  "01011011") {letasc = letasc + '['}
if (let ==  "01011100") {letasc = letasc + '\\'}
if (let ==  "01011101") {letasc = letasc + ']'}
if (let ==  "01011110") {letasc = letasc + '^'}
if (let ==  "01011111") {letasc = letasc + '_'}
if (let ==  "01100000") {letasc = letasc + '`'}
if (let ==  "01111011") {letasc = letasc + '{'}
if (let ==  "01111100") {letasc = letasc + '|'}
if (let ==  "01111101") {letasc = letasc + '}'}
if (let ==  "01111110") {letasc = letasc + '~'}
if (let ==  "10000000") {letasc = letasc + '€'}
if (let ==  "10100001") {letasc = letasc + '¡'}
if (let ==  "10100010") {letasc = letasc + '¢'}
if (let ==  "10100011") {letasc = letasc + '£'}
if (let ==  "10100100") {letasc = letasc + '¤'}
if (let ==  "10100101") {letasc = letasc + '¥'}
if (let ==  "10100110") {letasc = letasc + '¦'}
if (let ==  "10100111") {letasc = letasc + '§'}
if (let ==  "10100111") {letasc = letasc + '¨'}
if (let ==  "10101001") {letasc = letasc + '©'}
if (let ==  "10101010") {letasc = letasc + 'ª'}
if (let ==  "10101011") {letasc = letasc + '«'}
if (let ==  "10101100") {letasc = letasc + '¬'}
if (let ==  "10101101") {letasc = letasc + '­'}
if (let ==  "10101110") {letasc = letasc + '®'}
if (let ==  "10101111") {letasc = letasc + '¯'}
if (let ==  "10110000") {letasc = letasc + '°'}
if (let ==  "10110001") {letasc = letasc + '±'}
if (let ==  "10110010") {letasc = letasc + '²'}
if (let ==  "10110011") {letasc = letasc + '³'}
if (let ==  "10110100") {letasc = letasc + '´'}
if (let ==  "10110101") {letasc = letasc + 'µ'}
if (let ==  "10110110") {letasc = letasc + '¶'}
if (let ==  "10110111") {letasc = letasc + '·'}
if (let ==  "10111000") {letasc = letasc + '¸'}
if (let ==  "10111001") {letasc = letasc + '¹'}
if (let ==  "10111010") {letasc = letasc + 'º'}
if (let ==  "10111011") {letasc = letasc + '»'}
if (let ==  "10111100") {letasc = letasc + '¼'}
if (let ==  "10111101") {letasc = letasc + '½'}
if (let ==  "10111110") {letasc = letasc + '¾'}
if (let ==  "10111111") {letasc = letasc + '¿'}
if (let ==  "11000000") {letasc = letasc + 'À'}
if (let ==  "11000001") {letasc = letasc + 'Á'}
if (let ==  "11000010") {letasc = letasc + ''}
if (let ==  "11000011") {letasc = letasc + 'Ã'}
if (let ==  "11000100") {letasc = letasc + 'Ä'}
if (let ==  "11000101") {letasc = letasc + 'Å'}
if (let ==  "11000110") {letasc = letasc + 'Æ'}
if (let ==  "11000111") {letasc = letasc + 'Ç'}
if (let ==  "11001000") {letasc = letasc + 'È'}
if (let ==  "11001001") {letasc = letasc + 'É'}
if (let ==  "11001010") {letasc = letasc + 'Ê'}
if (let ==  "11001011") {letasc = letasc + 'Ë'}
if (let ==  "11001100") {letasc = letasc + 'Ì'}
if (let ==  "11001101") {letasc = letasc + 'Í'}
if (let ==  "11001110") {letasc = letasc + 'Î'}
if (let ==  "11001111") {letasc = letasc + 'Ï'}
if (let ==  "11010000") {letasc = letasc + 'Ð'}
if (let ==  "11010001") {letasc = letasc + 'Ñ'}
if (let ==  "11010010") {letasc = letasc + 'Ò'}
if (let ==  "11010011") {letasc = letasc + 'Ó'}
if (let ==  "11010100") {letasc = letasc + 'Ô'}
if (let ==  "11010101") {letasc = letasc + 'Õ'}
if (let ==  "11010110") {letasc = letasc + 'Ö'}
if (let ==  "11010111") {letasc = letasc + '×'}
if (let ==  "11011000") {letasc = letasc + 'Ø'}
if (let ==  "11011001") {letasc = letasc + 'Ù'}
if (let ==  "11011010") {letasc = letasc + 'Ú'}
if (let ==  "11011011") {letasc = letasc + 'Û'}
if (let ==  "11011100") {letasc = letasc + 'Ü'}
if (let ==  "11011101") {letasc = letasc + 'Ý'}
if (let ==  "11011110") {letasc = letasc + 'Þ'}
if (let ==  "11011111") {letasc = letasc + 'ß'}
if (let ==  "11100000") {letasc = letasc + 'à'}
if (let ==  "11100001") {letasc = letasc + 'á'}
if (let ==  "11100010") {letasc = letasc + ''}
if (let ==  "11100011") {letasc = letasc + 'ã'}
if (let ==  "11100100") {letasc = letasc + 'ä'}
if (let ==  "11100101") {letasc = letasc + 'å'}
if (let ==  "11100110") {letasc = letasc + 'æ'}
if (let ==  "11100111") {letasc = letasc + 'ç'}
if (let ==  "11101000") {letasc = letasc + 'è'}
if (let ==  "11101001") {letasc = letasc + 'é'}
if (let ==  "11101010") {letasc = letasc + 'ê'}
if (let ==  "11101011") {letasc = letasc + 'ë'}
if (let ==  "11101100") {letasc = letasc + 'ì'}
if (let ==  "11101101") {letasc = letasc + 'í'}
if (let ==  "11101110") {letasc = letasc + 'î'}
if (let ==  "11101111") {letasc = letasc + 'ï'}
if (let ==  "11110000") {letasc = letasc + 'ð'}
if (let ==  "11110001") {letasc = letasc + 'ñ'}
if (let ==  "11110010") {letasc = letasc + 'ò'}
if (let ==  "11110011") {letasc = letasc + 'ó'}
if (let ==  "11110100") {letasc = letasc + 'ô'}
if (let ==  "11110101") {letasc = letasc + 'õ'}
if (let ==  "11110110") {letasc = letasc + 'ö'}
if (let ==  "11110111") {letasc = letasc + '÷'}
if (let ==  "11111000") {letasc = letasc + 'ø'}
if (let ==  "11111001") {letasc = letasc + 'ù'}
if (let ==  "11111010") {letasc = letasc + 'ú'}
if (let ==  "11111011") {letasc = letasc + 'û'}
if (let ==  "11111100") {letasc = letasc + 'û'}
if (let ==  "11111101") {letasc = letasc + 'ý'}
if (let ==  "11111110") {letasc = letasc + 'þ'}
if (let ==  "11111111") {letasc = letasc + 'ÿ'}
if (letasc == "") {
alert ("not found")
break;
}
j=j+8
}
ascii.innerHTML = letasc
return false;
}
</script>
E-mail any comments to <a href="mailto:theskull@theskull.com?SUBJECT=Ascii--Binary Converter"><strong>THe SKuLL!!™</strong></a><br><br>
<< <a href="/">http://www.theskull.com</a> >><br><br>
<strong><font color="#FF0000">NOTE:</font></strong><br>
Not all characters are supported.<br>
However, I have updated the list.<br>
<a href="ascii-binary-list.html" target="_blank">A list of characters is also availabe here.</a><br>
<strong><font color="#FF0000">Updated: Dec 4, 2002</font></strong><br>

<form name="asc2bin">
<strong>Convert to Binary</strong><br>
Enter Text: <input type="Text" name="text" size="92"><br>
Separate with: <input type="Text" name="separater" maxlength="1" size="1"> (optional)<br>
<input type="Submit" value="Convert" onclick="dobin(document.asc2bin.text.value,document.asc2bin.separater.value);return false"><br>
</form><div name="binary" id="binary">Binary Conversion will show here.</div><br><br>
<form name="bin2asc">
<strong>Convert to Ascii</strong><br>
Enter Binary: <input type="Text" name="text" size="90"><br>
<input type="Submit" value="Convert" onclick="doasc(document.bin2asc.text.value);return false"><br>
</form>
<div name="ascii" id="ascii">ASCII Conversion will show here.</div><br><br>
<table align="center"><tr><td align="center" class="ts3"><strong><font color="#FF0000">010000100111100101110100011001010010000001001101011001010010000100100001</font></strong><br><img src="/iremember.gif" alt="I Remember Sep 11, 2001" width="203" height="40" border="0"><br>© 2002 G. Marshall Brown<br>
Since Apr 29, 2002<br>
<img src="digits/1.gif" align="absmiddle">
</td></tr></table></body>
</html>


#12
 Hola, tengo que hacer un proyecto para tecnología y me gustaria hacer una pagina que sea un traductor de texto a binario y viceversa y subirlo a servidor gratuito, pero no se como hacerlo, que hago?
#13
Desarrollo Web / Codigo html para esto?
25 Febrero 2012, 14:33 PM
Hola, me gustaria saber si hay algun codigo html que haga esto:
-"eltextoquesea" (al clikarle que se abran varios textos mas, como subindices)
  -tal tal tal.
  -tal tal tal.
  -tal tal tal.
No se si me explico, gracias de todas formas.
#14
GNU/Linux / ¿Powerpoint para linux?
31 Enero 2012, 15:58 PM
Hola, me gustaría saber que software es parecido al power point para ubuntu y en que formato lo guarda, gracias.
#15
GNU/Linux / ¿Powerpoint para linux?
30 Enero 2012, 20:54 PM
Hola, me gustaría saber que software es parecido al power point para ubuntu y en que formato lo guarda, gracias.
#16
Hola, alguien me podria decir como hacer una aplicacion android que sea la chatboc de un foro de foroactivo?
alguien sabe?
gracias.
#17
Desarrollo Web / ¿Como hacer esto?
26 Enero 2012, 19:49 PM
hola, tengo un dominio, y me gustaria subir mediante un servidor gratis, probablemente 000webhost que supongo que ira bien una imagen, si, solo una imagen.
El problema es que no se como subirlo, supongo que con filezilla pero no se, podrian confirmarmelo y pasarme un tutorial si pueden?
#18
Desarrollo Web / Problema con chatbox
22 Enero 2012, 18:29 PM
Hola, tengo un problema con una chatbos de un foro foroactivo, espero que no pase nada pr poner este post.
El caso es que si te creas una cuenta en el foro que contenga el caracter "+" te conviertes en un user inbaneable y para banearlo el admin tiene que cambiarle el nombre y luego banearle.
¿Conoceis alguna forma de que esto no ocurra?
Grracias de antemano.
#19
Juegos y Consolas / Ayuda con runes of magic.
9 Julio 2011, 19:08 PM
Hola, tengo un problema con este jugo, y es que al iniciarlo me dice que mi cpu no cumple los requisitos.
os dejo aqui los requisitos que pide el juego:

Del sistema operativo: Windows XP, Vista, Windows 7
CPU: Intel Pentium 4 2,0 GHz o equivalente
RAM: 512MB RAM
Espacio requerido disco duro: 12 GB
Tarjeta gráfica: DirectX 9.0c compatible con 128MB RAM
Conexión internet banda ancha
Teclado y ratón

lo que tengo yo.
windows xp
procesador intel pentium 4 3,00 ghz
RAM: 512mb
espacio: tengo mas de 100 gb
mi tarjeta grafica es una ati radeon 9250 128 mb de ram y direct 9.
y obviamente tego internet y teclado y raton,
¿porque no me deja jugar?
#20
Hacking Wireless / Firesheep no me funciona.
6 Julio 2011, 20:46 PM
Hola.
Pues mire estaba mirando esto de firesheep y no se muy bien como hacerlo funciona.
tengo mozilla firefox 3 que es compatible con firesheep.
tambien tengo instalad wincap, estos son lso requisitos pero no se hacerlo funcionar.
#21
Dudas Generales / Me han baneado
2 Julio 2011, 17:04 PM
Hola.
Pues me han baneado en un foro, no en este, el problema esque me quiero registrar ya que me banearon sin ninguna razon.
E borrado las cookies y tambien e entrado al foro desde un buscador proxy pero no me deja registrarme aun asi que puedo hacer?.
el foro es vbulletin.
saludos!.
#22
Diseño Gráfico / que tamaño es...?
27 Junio 2011, 14:27 PM
hola saludos.
que tamaño es el de los iconos de las paginas, el que aparece a la izquierda de la barra de buscar.
gracias.
#23
Desarrollo Web / Como crear red social
25 Junio 2011, 19:13 PM
Saludos, llevo bastante tiempo aprendiendo programacion en este foro, yo y unos amigos, y desde el priemr momento tenemos un ambicion, crear una red social donde se puedea unir todo el mundo que quiera, aunque no tenga exito ni nada, una red social estil faceboock o tuenti, que en nuestra opinion son de las mas sencillas y practicas.
e visto pagians que ofrecen codigos como buddypress o el elgg pero no se muy bien por donde empezar, ya que no tenemos dinero para un dominio enteramente nuestro.
que nos recomiendas, por donde empezamos? porfavor orientenos.
#24
Hola, me gustaria saber que formatos de texto lee mac y no windows, gracias.
#25
que lenguaje necesitaria para hacer un simple programa que consistiera en:
varios titulos, clickaria en un titulo y me llevaria a otra pagina donde hay ams titulos para elegir y si clikamos de nuevo me daria al informacion del titulo que ponga, no se si me entienden.e
jemplo mas practico.
Manual de comida, al principio me salen carnes, pescados, pastas, verduras.
picho enn carnes por ejemplo, eso me llevaria a carne con verduras carne de polloa, carne con patatas, y si clikamos en una me daldria la receta.
Esto solo es un ejemplo xD, espero que me hayais entendido.
#26
Dudas Generales / Ayuda localizar un gps..
7 Mayo 2011, 22:54 PM
Hola, miren, a un familiar le han robado su bicileta electrica, por suerte la bicicleta lleva un gps, y ademas el gps esta vinculado a una pagina llamada veo sat que te dice que calles as recorrido y que recorridos has hecho con la bicicleta que lleva el gps.
Podria de alguna forma saber donde esta aora mismo, a tiempo real la bicicleta, ya que tiene mucho valor. no se muy bien de esto, si pueden ayudar.
#27
Hola buenas hace unos meses instale un programa me olvide de el y aora quise volver a instalarlo pero me pone que ya esta instalado en mi sistema que debo desinstalarlo antes.
Asta aqui todo bien uso la opcion busca l oencuentro y lo desisntalo pero no!e
buscado y el programa no se encuentra, que puedo hacer?
Y mi problema mayor, unos de mi clase han subido una foto mia a una red social y se rien de mi, como podria entrar en la cuenta de la persona que la subio y borrarla?
solo l oquiero para eso nada mas, mi intencion no es fastidiar a nadie.
#28
Programación C/C++ / Problema con Dev-c++
21 Abril 2011, 13:36 PM
Cuando estoy haciendo u nproyecto al compilar y luego ir a la consola me dice que debo compilarlo entonces no puedo ontinuar con mi proyecto, que hago?
#29
Buenas.
A-. Me gustaria saber si en un mismo pc si tengo dos usuarios puedo poner en uno windows y en otro linux.

B-. Si instalo linux en mi pc que tiene windos xp luego podria volver a poner windows?
Gracias a todos.
#30
Dudas Generales / Retos...
19 Abril 2011, 16:23 PM
Hola buenas.
Soy nuevo y me gustaria iniciarme en este mundo que me a gustado desde mas pequeño pero por problemas economicos no pude.el
caso es que no se que hacer donde iniciarme ni nada.
llevo desde las 10 de la mañana leyendo el foro y como iniciarse y eso y me acabo de registrar porque no se por donde empezar ni que hacer.
A si que me gustaria por ejemplo que me pusierasun sencillo reto para hacer y asi iniciarme mas facilmente.
gracias.