Distraction free huge chat.
Forked from Luuk Lamers's Pen Big Chat.
A Pen by Bright Spark on CodePen.
| 'use strict'; | |
| module.exports = function(grunt) { | |
| var pkg = grunt.file.readJSON('package.json'); | |
| grunt.initConfig({ | |
| 'pkg': pkg, | |
| 'connect': { |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>minimal flux</title> | |
| <meta http-equiv="Content-type" content="text/html; charset=utf-8"> | |
| <meta name="viewport" content="width=device-width, minimum-scale=1, initial-scale=1, user-scalable=no”> | |
| <link rel="stylesheet" type="text/css" href="style.css"> | |
| </head> | |
| <body> |
| <!doctype html> | |
| <!-- http://taylor.fausak.me/2015/01/27/ios-8-web-apps/ --> | |
| <html> | |
| <head> | |
| <title>iOS 8 web app</title> | |
| <!-- CONFIGURATION --> |
Distraction free huge chat.
Forked from Luuk Lamers's Pen Big Chat.
A Pen by Bright Spark on CodePen.
| # You don't need Fog in Ruby or some other library to upload to S3 -- shell works perfectly fine | |
| # This is how I upload my new Sol Trader builds (http://soltrader.net) | |
| # Based on a modified script from here: http://tmont.com/blargh/2014/1/uploading-to-s3-in-bash | |
| S3KEY="my aws key" | |
| S3SECRET="my aws secret" # pass these in | |
| function putS3 | |
| { | |
| path=$1 |
Forked from [TFD] (http://codepen.io/2fdevs/)'s Pen Videogular - Creating an Audio Player - Streaming Sources
| { | |
| "version":2.0, | |
| "display_hints":[ | |
| { | |
| "key":"GPCAMERA_GROUP_VIDEO", | |
| "display_name":"Video Settings", | |
| "settings":[ | |
| { | |
| "setting_id":5, | |
| "widget_type":"select", |
| - (BOOL)webView:(UIWebView *)theWebView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType | |
| { | |
| NSURL *url = [request URL]; | |
| // Intercept the external http requests and forward to Safari.app | |
| // Otherwise forward to the PhoneGap WebView | |
| if ([[url scheme] isEqualToString:@"http"] || [[url scheme] isEqualToString:@"https"]) { | |
| [[UIApplication sharedApplication] openURL:url]; return NO; | |
| } | |
| else { | |
| return [ super webView:theWebView shouldStartLoadWithRequest:request navigationType:navigationType ]; |
| /*! | |
| * Copyright 2013 Drifty Co. | |
| * http://drifty.com/ | |
| * | |
| * Ionic, v0.9.17 | |
| * A powerful HTML5 mobile app framework. | |
| * http://ionicframework.com/ | |
| * | |
| * By @maxlynch, @helloimben, @adamdbradley <3 | |
| * |