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
@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)
# Lines starting with '#' are comments.
# Each line is a file pattern followed by one or more owners.
# These owners will be the default owners for everything in the repo.
* @defunkt
# Order is important. The last matching pattern has the most precedence.
# So if a pull request only touches javascript files, only these owners
# will be requested to review.
*.js @octocat @github/js
# Add annotations in grafana
curl -X POST \
https://{YOUR_URL}/api/annotations \
-H "authorization: Bearer $GRAFANA_API_TOKEN" \
-H 'content-type: application/json' \
-d "{
\"text\": \"Hello world!\",
\"tags\": [ \"deployment\", \"env:dev}\", \"application:my-application\", \"commit: commit-sha-example}\"]
}"
{
"extends": "lighthouse:full",
"settings": {
"budgets": [
{
"resourceSizes": [
{
"resourceType": "script",
"budget": 50
},
@boyney123
boyney123 / .jsx
Created March 4, 2019 21:10
Sentry setup example
import React, { Component } from "react";
import logo from "./logo.svg";
import Sentry from "./Sentry";
import ErrorExample from "./ErrorExample";
import "./App.css";
class App extends Component {
render() {
return (
<Sentry url="http://9ad974bebc5545e3aa3dd259f449ac7f@localhost:9000/2">
@boyney123
boyney123 / README-Template.md
Created March 23, 2018 08:42 — forked from PurpleBooth/README-Template.md
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

Before submitting a pull request, please make sure the following is done:

  1. You have merged in the latest changes from master.
  2. Resolved any conflicts that may have happened from that merge.
  3. Ensure that you have run all tests and linting locally with npm run test and npm run lint.
  • I have searched the issues of this repository and believe that this is not a duplicate.
<!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>
const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const DynamicCdnWebpackPlugin = require('dynamic-cdn-webpack-plugin');
module.exports = {
entry: {
'app.js': './src/app.js'
},