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ú

Mensajes - Geek7

#11
PHP / problemas con formato de imagen
16 Julio 2013, 19:44 PM
Tengo unas imagenes en formato jpg, e intento subirlas en mi localhost pero las imnagenes con formato *.jpg no las puedo subir mientras que las *.JPG si. Este es mi codigo:

Código (php) [Seleccionar]
if($_FILES)
{
$filename = $_FILES['filename']['name'];
$filetype = $_FILES['filename']['type'];
$filesize = $_FILES['filename']['size'];


switch ($filetype)
{
    case 'image/jpeg':
        $filetype = "jpg";
    break;
   
    case 'image/png':
        $filetype = "png";
    break;
   
    default:
        $filetype = "";
}
if($filetype == "")
{
    die('No es una imagen');
   
}
if ($filesize > 400000)
{
    die("Archivo muy grande");
}
move_uploaded_file($_FILES['filename']['tmp_name'], $filename);
echo "Imagen $filename: <img src='$filename' />";   
}
#12
Java / Re: [principiante] Loteria
27 Junio 2013, 22:18 PM
O sea, mi problema es que no comento porque no se que exactamente comentar. Si hay una funcion "jugar" y una variable "tickets" se entiende, el tema sera si en un futuro entendere.

Tabulacion seria hacer esto:
Código (java) [Seleccionar]

for (i = 0; i < 10; i++) {
    System.out......
        for() {
        }
    if {
    }       
}


en vez de:
Código (java) [Seleccionar]

for (i = 0; i < 10; i++) {
System.out......
for() {
}
if {
}       
}

Solo cuestion de "vista".
#13
Java / Re: [principiante] Loteria
27 Junio 2013, 21:53 PM
Un poco avanzado para mi, todavia no he entendiddo threads y clases, gracias. ;D

Con respecto a tabulacion, comentarios de codigo esta bien?
#14
Java / [principiante] Loteria
27 Junio 2013, 19:57 PM
A base d emis conecptos basicos he hecho un mini programa que funciona como una loteria. Permite al usuario elegir entre 1 y 5 tickets y chequear si gano.. Quiero saber criticas a nivel de codigo (ubicacion de declaracion de variables, nombres etc...).

Código (java) [Seleccionar]

package exercise;

import java.util.Random;
import java.util.Scanner;

public class Lotto {

/**
* @author geek7
*/
public static void main(String[] args) {
Scanner keyboard = new Scanner(System.in);
int choice;

while(true) {
System.out.println("$$$$$$$ LOTTO $$$$$$$");
System.out.println("Hi, how many tickets would you like to buy?");
System.out.println(" 1) 1 Ticket");
System.out.println(" 2) 2 Tickets");
System.out.println(" 3) 3 Tickets");
System.out.println(" 4) 4 Tickets");
System.out.println(" 5) 5 Tickets");
System.out.println(" 0) In bankrupt - Nothing\n");
choice = keyboard.nextInt();

if (choice == 0) {
System.out.println("EXITING...");
System.exit(0);
}


System.out.println("\nPrinting tickets...");
System.out.println("----------------------");

Random generateNumbers = new Random();
int[] tickets = new int[59];
int[] yourTickets = new int[choice];
int i, matched = 0;

// Generate list of numbers
for(i = 0; i < tickets.length; i++) {
tickets[i] = generateNumbers.nextInt(60);
}

// Give him his tickets
System.out.print("\nThese are your tickets: \t");
for (i = 0; i < yourTickets.length; i++) {
yourTickets[i] = generateNumbers.nextInt(60);
System.out.print(yourTickets[i] + " ");
}
System.out.println("\n\nLet's if you won something... \n");

// Check if something matched
for(i = 0; i < yourTickets.length; i++) {
for(int j = 0; j < tickets.length; j++) {
if (yourTickets[i] == tickets[j]) {
matched++;
}
}
}
// Make a pause
try {
Thread.sleep(3000);
} catch(InterruptedException e) {
}

switch (matched) {
case 1:
System.out.println("You won $100!");
break;

case 2:
System.out.println("You won $200!");
break;

case 3:
System.out.println("You won $500!");
break;

case 4:
System.out.println("You won $800!");
break;

case 5:
System.out.println("GREAT. You've got the pot: $1000!");
break;

case 0:
System.out.println("Have luck next time!");
break;

default:
System.out.println("Something went wrong");
System.exit(1);
}

// Ask if he wants to try again
System.out.print("Would you like to try again? (X to exit) \t");
String tryAgain = keyboard.next();

if(tryAgain.compareToIgnoreCase("x") == 0) {
System.out.println("Thank you. Bye");
System.exit(0);
}

// Just clear screen
for (int l = 0; l < 1000; l++) {
System.out.println();
}

}


}

}
#15
Windows / Automatizar programa
14 Junio 2013, 16:29 PM
Quisiera q a X hora se ejecutara mi reproductor de video (vlc) a pantalla completa y reprodujera una pelicula y al terminar, se reprodujera otra.... Como hago esto?

#16
Tengo una pc poco vieja con win 98 y xp y al iniciar sesion en XP instantaneamente se  cierra sesion y otra vez esta la pantalla de inicio de sesion.

que hago?
#17
Windows / restaurar exes
9 Enero 2013, 11:02 AM
tengo un problema.... presione por error al "abrir con " internet explorer y ahora todos los programas se abren con IE. No tengo acceso al registro para poder restaurarlo, que hago?
#18
Programación General / Crear apps para mobiles
25 Diciembre 2012, 13:09 PM
He buscado en el foro pero no he visto la respuesta...
alguien me podria decir de como empezar a crear apps para mobiles (iphone, android, blackberry)?

  • Que lenguaje? C++ o Java?
  • Algun SDK? (si es posible que funcione tambien en linux, aunque no es necesario)

Gracias.
#19
Tengo este codigo pero no me anda. Me dice en la consola "Cannot read property 'value' of null ".
Código (javascript) [Seleccionar]
<!DOCTYPE html>
<html>
<head>
<title>Convertidor</title>
<style type="text/css">
body {
width: 300px;
font-family: Helvetica;
text-align: center;
}
input {
border: 3px dashed #000080;
}
input:hover {
background-color: #FFFF00;
color: #000080;
}
#grados {
display: block;
padding: 0 0 8px 0;
color: #C00;
}
</style>

<script type="text/javascript" >
var grados = document.getElementById("grados");
var conv = document.getElementById("opcion");

function switchLetter() {
if (conv.options[conv.selectedIndex].value == 0) { // Aqui algo anda mal!!
grados.innerHTML = "C";
} else {
grados.innerHTML = "F";
}
}
</script>
</head>

<body>
<form action="ex2.php" method="post"><fieldset><legend>Convertidor</legend>
<input type="text" name="grados" size="4" /> <sup>o</sup><div id="grados"></div>
Convert from <select id="opcion" onchange="switchLetter()">
<option value="0">Celsius a Fahr</option>
<option value="1">Fahr a Celsius</option>
</select></fieldset>
</form>
</body></html>
#20
Programación C/C++ / VC++ reducir tamaño
13 Diciembre 2012, 10:41 AM
Acabo de instalar Visual Studio 2012 y compilé un simple "hola mundo" y toma como 16 MB ! porque hay un archivo de sql compact database, una carpeta de debug y ipch.

Como desactivo esos archivos sin tener que eliminarlos cada vez que creo un nuevo proyecto???