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
#!/bin/bash | |
# Determine OS version | |
osvers=$(sw_vers -productVersion | awk -F. '{print $2}') | |
sw_vers=$(sw_vers -productVersion) | |
# Determine OS build number | |
sw_build=$(sw_vers -buildVersion) |
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
Apple Service Diagnostic Disks 25 GB [Original] | |
Applications : Mac : English | |
ASD Dual Boot 2.1.5 (2003) | |
PowerBook G4 (12-inch), PowerBook G4 (17-inch), iMac (17-inch 1GHz), Power Mac G4 (FW 800), Xserve (slot load), eMac (ATI Graphics), and Power Mac G4 (Mirrored Drive Doors 2003), iMac (USB 2.0), PowerBook G4 (15-inch FW800), PowerBook G4 (17-inch 1.33GHz) and PowerBook G4 (12-inch DVD) | |
ASD 2.5.7 |
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
1090872|A | |
4281|AA | |
1332552|AAACU | |
1287145|AABB | |
1024015|AABC | |
1099290|AAC | |
1264707|AACC | |
849116|AACE | |
1409430|AAGC | |
948846|AAI |
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 |
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://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
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", |