Skip to content

Instantly share code, notes, and snippets.

View boyney123's full-sized avatar
💭
Making Stuff

David Boyne boyney123

💭
Making Stuff
View GitHub Profile
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="theme-color" content="#000000">
<link rel="manifest" href="/manifest.json">
<link rel="shortcut icon" href="/favicon.ico">
<title>React App</title>
@boyney123
boyney123 / Example.js
Last active January 31, 2017 14:27
Media Querys in React using CSS and Wrapper Components
import React, { Component, PropTypes } from 'react';
import MediaQuery from './media-query';
class Example extends Component {
render() {
return (
<div>
@boyney123
boyney123 / run_ionic_app_on_all_connected_android_devices.sh
Last active September 29, 2015 06:56
Simple bash script to remove, build, install and launch your ionic app on all connected android devices (android simulators or actual devices).
#!/bin/sh
#Your app id which can be found in your config.xml file (widget id)
app=com.ionicframework.myNewApp
pathToAPK=platforms/android/build/outputs/apk/android-debug.apk
echo "Running Ionic Build"
ionic build
@boyney123
boyney123 / AngularOdometer.js
Last active July 1, 2021 22:12
odometer.js - Angular Directive Example
//Directive
angularApp.directive('angularOdometer', function () {
return {
restrict: 'A',
link: function(scope, element, attrs) {
//Creates new instance of odometer for the element
new Odometer({el: element[0], value: scope[attrs.odometer]});
//Watch for changes and update the element value (causing odometer to redraw)