This file contains 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
@keyframes snowfall { | |
0% { | |
top: -40px; | |
} | |
25% { | |
top: 250px; | |
left: 100px; | |
} | |
50% { | |
top: 500px; |
This file contains 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
float[] keycount = new float[26]; | |
float[] xCoords = new float[26]; | |
float[] yCoords = new float[26]; | |
float spaceCount = 0; | |
float spaceXCoords; float spaceYCoords; | |
int count = 0; | |
PImage img; | |
void setup() { | |
String url = "http://www.moshi.com/image/clearguard/layout-us.jpg"; |
This file contains 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
a = input('Enter Number 1: ') | |
b = input('Enter Number 2: ') | |
print 'Number 1: ', a | |
print 'Number 2: ', b | |
a -= b | |
b += a | |
a = b - a |
NewerOlder