A Dashing widget for displaying the number of items of lists on a Trello board.
See a live demo here.
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8" /> | |
<title>Offline todo app</title> | |
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"> | |
<link rel='stylesheet' href="style.css" type='text/css' media='all' /> | |
</head> |
func imagePickerController(picker: UIImagePickerController, didFinishPickingMediaWithInfo info: [NSObject : AnyObject]){ | |
imagePicker.dismissViewControllerAnimated(true, completion: nil) | |
var selectedImage = info[UIImagePickerControllerOriginalImage] as! UIImage | |
var metadata: NSDictionary | |
var library:ALAssetsLibrary? = ALAssetsLibrary() | |
// Get the images meta data | |
if(picker.sourceType == .Camera) { | |
metadata = info[UIImagePickerControllerMediaMetadata] as! NSDictionary |
[ | |
{ | |
"_id": "1", | |
"name": "10 Downing Street", | |
"latitude": 51.5033630, | |
"longitude": -0.1276250 | |
}, | |
{ | |
"_id": "2", | |
"name": "Houses of Paliment", |
var date = NSDate() | |
var yesterday = date.dateByAddingTimeInterval(-24 * 60 * 60) | |
var dateComparisonResult: NSComparisonResult = date.compare(yesterday) | |
if dateComparisonResult == NSComparisonResult.OrderedAscending { | |
println("date is smaller than yesterday") | |
} else if dateComparisonResult == NSComparisonResult.OrderedDescending { | |
println("date is larger than yesterday") | |
} else { |
#Description#
Simple Dashing Job to display Trello info about your boards. Uses Trello API.
#Dependencies# ruby-trello
<!DOCTYPE html> | |
<html> | |
<body> | |
<p id="demo"></p> | |
<p id="format"></p> | |
<script> | |
var date = new Date("2015-03-25T12:00:00"); |
<link rel="import" href="../polymer/polymer.html"> | |
<!-- | |
An element for displaying the Deilbert Cartoon of the day. | |
Example: | |
<daily-dilbert></daily-dilbert> | |
@group Seed Elements |
<!-- | |
@license | |
Copyright (c) 2015 The Polymer Project Authors. All rights reserved. | |
This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt | |
The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt | |
The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt | |
Code distributed by Google as part of the polymer project is also | |
subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt | |
--> |
<?php | |
$single = (is_single() ? TRUE : FALSE); | |
if ($single){ | |
$prevPost = get_previous_post(); | |
if (!empty( $prevPost )){ ?> | |
<link rel="prev" href="<?php echo get_permalink($prevPost->ID); ?>"/> | |
<?php } | |
$nextPost = get_next_post(); | |
if (!empty( $nextPost )) { ?> | |
<link rel="next" href="<?php echo get_permalink($nextPost->ID); ?>"/> |