Skip to content

Instantly share code, notes, and snippets.

View jeff-french's full-sized avatar

Jeff French jeff-french

View GitHub Profile
@jeff-french
jeff-french / constants.js.md
Last active November 23, 2015 14:42
Environment Variables in AngularJS and Ionic - 1
angular.module('coolapp-constants',[])
  .constant('apiUrl', '@@apiUrl');
@jeff-french
jeff-french / css_resources.md
Last active August 29, 2015 14:17 — forked from jookyboi/css_resources.md
CSS libraries and guides to bring some order to the chaos.

Libraries

  • 960 Grid System - An effort to streamline web development workflow by providing commonly used dimensions, based on a width of 960 pixels. There are two variants: 12 and 16 columns, which can be used separately or in tandem.
  • Compass - Open source CSS Authoring Framework.
  • Bootstrap - Sleek, intuitive, and powerful mobile first front-end framework for faster and easier web development.
  • Font Awesome - The iconic font designed for Bootstrap.
  • Zurb Foundation - Framework for writing responsive web sites.
  • SASS - CSS extension language which allows variables, mixins and rules nesting.
  • Skeleton - Boilerplate for responsive, mobile-friendly development.

Guides

@jeff-french
jeff-french / javascript_resources.md
Last active August 29, 2015 14:17 — forked from jookyboi/javascript_resources.md
Here are a set of libraries, plugins and guides which may be useful to your Javascript coding.

Libraries

  • jQuery - The de-facto library for the modern age. It makes things like HTML document traversal and manipulation, event handling, animation, and Ajax much simpler with an easy-to-use API that works across a multitude of browsers.
  • Backbone - Backbone.js gives structure to web applications by providing models with key-value binding and custom events, collections with a rich API of enumerable functions, views with declarative event handling, and connects it all to your existing API over a RESTful JSON interface.
  • AngularJS - Conventions based MVC framework for HTML5 apps.
  • Underscore - Underscore is a utility-belt library for JavaScript that provides a lot of the functional programming support that you would expect in Prototype.js (or Ruby), but without extending any of the built-in JavaScript objects.
  • lawnchair - Key/value store adapter for indexdb, localStorage
@jeff-french
jeff-french / 0_reuse_code.js
Last active August 29, 2015 14:17
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@jeff-french
jeff-french / Info.plist
Created October 17, 2014 16:16
Cordova / PhoneGap iPhone 6 / 6+ Splashscreen Workaround
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<!-- all your other Info.plist crap here -->
<key>UILaunchImages</key>
<array>
<dict>
<key>UILaunchImageMinimumOSVersion</key>
<string>8.0</string>
input {
stdin {
type => "stdin-type"
}
file {
type => "syslog"
path => [ "/var/log/*.log", "/var/log/messages", "/var/log/syslog" ]
start_position => "beginning"
}
@jeff-french
jeff-french / .bowerrc
Created August 28, 2014 00:41
Phonegap / Cordova / Ionic gitignore and bowerrc files
{
"directory": "www/lib"
}
@jeff-french
jeff-french / Outline.md
Created June 18, 2014 16:50
Building Cross-Platform Mobile Apps in the Cloud with Azure Mobile Services, PhoneGap, AngularJS and Ionic

Today mobile applications are a must for almost any business or product. Developing the same application for the major mobile platforms takes a considerable investment in time and learning new technologies. Building out a secure and scalable API for your app can be daunting task. In this workshop we will learn how to leverage existing web-based technologies and skills to develop cross-platform mobile applications backed by scalable REST APIs in a fraction of the time that it takes for native apps. This will be a hands-on workshop where you will be writing a mobile app and RESTful API from scratch.

You will need a laptop for this workshop.

Learning Objectives:

  • Day 1
    • Introduction to the following technologies
      • Azure Mobile Services
      • Azure API Managment
  • Auth0
@jeff-french
jeff-french / Outline.md
Created June 6, 2014 08:29
Building Cross-Platform Mobile Apps at Light Speed with PhoneGap, AngularJS and Ionic

Today mobile applications are a must for almost any business or product. Developing the same application for the major mobile platforms takes a considerable investment in time and learning new technologies. In this workshop we will learn how to leverage existing web-based technologies and skills to develop cross-platform mobile applications in a fraction of the time that it takes for native apps. This will be a hands-on workshop where you will be writing a mobile app from scratch.

You will need a laptop for this workshop.

Learning Objectives:

  • Introduction to the following frameworks
    • Cordova / PhoneGap
    • AngularJS
    • Ionic
  • Installing and setting up frameworks and tooling
@jeff-french
jeff-french / Gruntfile.js
Created November 20, 2013 23:18
PhoneGap development with Grunt Ripple and a browser
grunt.registerTask('server', 'minify','and-all-that','cool-stuff', 'ripple');