Based on initial version by Tom Isaacson (@parsley72).
Learn more about tracking geo coordinates in your own projects here.
| ---Very simple evaluation for arithmetic expressions with only constants | |
| ---(and only "plus"...obviously extendable to other operations) | |
| data Expr = C Float | | |
| Expr :+ Expr | |
| deriving Show | |
| eval :: Expr -> Float | |
| eval (C x) = x | |
| eval (e1 :+ e2) = let v1 = eval e1 |
Based on initial version by Tom Isaacson (@parsley72).
Learn more about tracking geo coordinates in your own projects here.
| // | |
| // BSAlertViewDelegateBlock.h | |
| // SpeechTimer2 | |
| // | |
| // Created by Sasmito Adibowo on 25-12-13. | |
| // Copyright (c) 2013-2014 Basil Salad Software. All rights reserved. | |
| // | |
| // Licensed under the BSD License <http://www.opensource.org/licenses/bsd-license> | |
| // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY | |
| // EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| Basic Requirements: | |
| Computer with wired and wireless connection | |
| FFmpeg installation: http://www.ffmpeg.org/ | |
| GoPro Hero 3+: http://gopro.com/ | |
| RTMP server e.g. FMS (http://www.adobe.com/products/adobe-media-server-family.html) or CDN ingest point | |
| Overview: | |
| GoPro Hero3 cameras produce HLS streams which are consumed by control apps and their removeable monitor. |
| // ==UserScript== | |
| // @name TweetDeck Instagram | |
| // @description Adds instagram to Tweetdeck | |
| // @include https://tweetdeck.twitter.com/* | |
| // @include chrome-extension://hbdpomandigafcibbmofojjchbcdagbl/* | |
| // @version 0.1 | |
| // ==/UserScript== | |
| var func = function () { |
| void SyncService::sync() | |
| { | |
| QUrl url(SYNC_URL); | |
| QNetworkRequest request(url); | |
| request.setHeader(QNetworkRequest::ContentTypeHeader, "application/json"); | |
| QNetworkAccessManager *manager = new QNetworkAccessManager(this); | |
| connect(manager, SIGNAL(finished(QNetworkReply*)), |
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | |
| <title>SoundCloud OAuth 2 User Agent Authentication Flow Demo</title> | |
| <script type="text/javascript" charset="utf-8" src="javascript/jquery-1.4.2.js"></script> | |
| <script type="text/javascript" charset="utf-8"> | |
| $(function () { | |
| var extractToken = function(hash) { |