Skip to content

Instantly share code, notes, and snippets.

View bonomali's full-sized avatar

brikkho net bonomali

View GitHub Profile
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",
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; }
}
@bonomali
bonomali / scp
Created May 11, 2019 19:52 — forked from jasperf/scp
Use secure copy or scp to upload and download files to the server #scp #ssh
//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/