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
# README | |
# How to use: | |
# This script creates a file called 'element-import.html' which is filled with | |
# the polymer import statements automatically from the folders in the directory | |
# from which this script is run. | |
# Import OS to allow reading of directories | |
import os | |
# Gets list of folders within the current directory |
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 | |
import os | |
from os import listdir | |
from os.path import isfile, join | |
# Preferences | |
supported_formats = ["mkv", "mp4", "wmv", "flv", "m4v"] | |
output_format = "mp4" |
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
{ | |
"description": "[{str(time),int(casualties)}]", | |
"data": [ | |
{ | |
"time": 01, | |
"fatality_count": 25 | |
}, | |
{ | |
"time": 02, | |
"fatality_count": 25 |
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
// The University of Queensland | |
// Engineering - ENGG1100 | |
// White Team | |
// Year: 2015 | |
// Author: Dragan Marjanovic | |
// Libraries and Headers | |
#include <Servo.h> | |
#include <Wire.h> //I2C Arduino Library |
NewerOlder