Another quick pen of button animation based on a Dribbble post I liked by Daniel Jecha - https://dribbble.com/shots/2741994-Button-Experiment
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/ |
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
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
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
https://code.jquery.com/jquery-2.2.4.min.js |
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
<div class="md-tab-header" role="tablist" | |
(keydown.arrowRight)="focusNextTab()" | |
(keydown.arrowLeft)="focusPreviousTab()" | |
(keydown.enter)="selectedIndex = focusIndex"> | |
<div class="md-tab-label" role="tab" md-tab-label-wrapper | |
*ngFor="let tab of _tabs; let i = index" | |
[id]="_getTabLabelId(i)" | |
[tabIndex]="selectedIndex == i ? 0 : -1" | |
[attr.aria-controls]="_getTabContentId(i)" | |
[attr.aria-selected]="selectedIndex == i" |
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
https://dl.google.com/translate/offline/v3/r1/c.zip | |
https://dl.google.com/translate/offline/v3/r1/profiles.txt |
OlderNewer