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
var character = "adam"; // change to "adam", "bob" , "eve" , or "rocky" depending on who you want to start with. | |
$('#char_creator_client').flash({ | |
id: "char_creator", | |
swf: "https://d3v4eglovri8yt.cloudfront.net/animation/414827163ad4eb60/cc.swf", | |
height: 600, | |
width: 960, | |
align: "middle", | |
allowScriptAccess: "always", |
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
public class Genero | |
{ | |
public int Id { get; set; } | |
public string Nombre { get; set; } | |
public string Descripcion { get; set; } | |
public virtual IEnumerable<Videojuego> Videojuegos { get; set; } | |
} |
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
//Uploading Using SCP | |
## origin > destination | |
scp /home/jasper/path/file [email protected]:/home/username/domain.com/public_html/images/ | |
Uploading to Ubuntu Server | |
scp /home/jasper/path/file [email protected]:/var/www/html/ | |
##downloading | |
scp [email protected]:/root/pcfilename.rar ./ | |
##directory download | |
scp -r [email protected]:/path/to/foo /home/user/Desktop/ |
NewerOlder