Activity spinner adapted from mrrocks codepen, which is taken from Google's Material Design specifications.
This activity spinner is an adaptation from this Codepen, and is commonly seen in Windows 8.
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
<div class="loader"> | |
<div class="circle"></div> | |
<div class="circle"></div> | |
<div class="circle"></div> | |
<div class="circle"></div> | |
<div class="circle"></div> | |
</div> | |
<style> | |
.loader { |
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
#!/usr/bin/python | |
for i in range(0,100): | |
three = i % 3 | |
five = i % 5 | |
if three == 0 and five == 0: | |
print 'fizzbuzz' | |
elif three == 0: | |
print 'fizz' | |
elif five == 0: |
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
// Open the file | |
$file = fopen($uri,'r'); | |
// If the first line is a header, uncomment the following.. | |
// $header = fgetcsv($file); | |
// Iterate through each row of the file | |
while(!feof($file)) { | |
// Read in the row | |
// $row will be an array of values that correspond to | |
// the columns in the row, example: | |
// array ( |
git reset --hard HEAD^
git push -f
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
<div id="vue"> | |
<input type="text" | |
name="home_phone" | |
class="form-control" | |
v-model="homePhone" | |
v-on:keyup="formatPhone()" | |
lazy> | |
</div> |
OlderNewer