Si te fijas bien, eso fue lo que hice en el primer post
Aprovecho para preguntar, como hago que un Label tenga Arial de 30px?
Aprovecho para preguntar, como hago que un Label tenga Arial de 30px?
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úalex@shellroot:~/Escritorio$ python PoC.py
Nombre del archivo: jpeg
Archivo sin extension
$sCadena = '%22APPLE%20MACHINES%22';
echo urldecode($sCadena)."\n";
class createNewWindows extends Frame{
public createNewWindows(String pTitle, Integer pX, Integer pY, Integer pwidth, Integer pHeight){
super(pTitle);
this.setBounds(pX, pY, pwidth, pHeight);
this.setLocationRelativeTo(null);
this.setBackground(Color.black);
this.setForeground(Color.white);
this.addWindowListener(new WindowListener(){
public void windowActivated(WindowEvent e){}
public void windowClosed(WindowEvent e){}
public void windowDeactivated(WindowEvent e){}
public void windowDeiconified(WindowEvent e){}
public void windowIconified(WindowEvent e){}
public void windowOpened(WindowEvent e){}
public void windowClosing(WindowEvent e){e.getWindow().dispose();}
});
this.setVisible(true);
}
}
class createNewWindows extends Frame{
public createNewWindows(String pTitle, Integer pX, Integer pY, Integer pwidth, Integer pHeight){
super(pTitle);
this.setBounds(pX, pY, pwidth, pHeight);
this.setLocationRelativeTo(null);
this.setDefaultCloseOperation(this.EXIT_ON_CLOSE);
this.setVisible(true);
}
}
alex@shellroot:~/Escritorio$ javac PoC.java
PoC.java:23: cannot find symbol
symbol : variable EXIT_ON_CLOSE
location: class createNewWindows
this.setDefaultCloseOperation(this.EXIT_ON_CLOSE);
^
1 error
# @Display the file extension
# @Shell Root
# @Python - 2010
import os
sFileExtension = os.path.splitext('tema.1.tex')[1]
print "La extension es: ", sFileExtension
string htmlentities ( string $string [, int $flags = ENT_COMPAT [, string $charset [, bool $double_encode = true ]]] )
$sCadena = '!"#$%&/()=?¡';
echo htmlspecialchars($sCadena, ENT_QUOTES, "UTF-8");
!"#$%&/()=?¡
echo "<a href=\"$username\">$bm_URL</a>";
echo "<a href=$username>$bm_URL</a>";
echo "<a href='".$username."'>".$bm_URL."</a>";