Skip to content

Instantly share code, notes, and snippets.

View josiahbryan's full-sized avatar

Josiah Bryan josiahbryan

View GitHub Profile
@josiahbryan
josiahbryan / FpsAutoTuner.js
Created March 19, 2019 20:52
FpsAutoTuner.js - Auto-optimize the FPS of your application
/**
* FpsAutoTuner works by measuring the FPS (which you tell it by calling
* `countFrame()`) and then every so often (at `tuningInteval`ms), it compares
* that measured FPS to the `fpsTarget`. When the measured FPS goes below `fpsTarget` less
* `tuningMargin`, the `fpsTarget` will be decreased by
* `tuningRate` and the `callback` will be execute with the new `fpsTarget`. Likewise,
* when the measured FPS exceeds `fpsTarget` less `tuningMargin`, then `fpsTarget`
* will be increased by `tuningRate` and `callback` will be called with the new target.
*
* Example usage:
@josiahbryan
josiahbryan / debundle-sfc.js
Last active September 10, 2018 01:53
Really Simple Single-File-Component Support for Ember 3.x+
"use strict";
const fs = require('fs');
/**
Really Simple Single-File-Component Support for Ember 3.x+
By Josiah Bryan <josiahbryan@gmail.com> 2018-09-07
(Posted for discussion at https://discuss.emberjs.com/t/really-simple-single-file-component-support-for-ember-3-x/15438)
Hey everyone! I'm designing a new hobby project, and I really wanted to work with single file
import Ember from 'ember';
/**
@function LiveDependantListMixinFactory
@param listPropertyName {String} or {Object} - if a string, will be the name
of the destination property that you can use in your template as the list.
If this param is an object with at least `{selectAs,from}` defined,
it will be used as the values for the following args (they will be overwritten
with values from the object)
@param fromStoreModel - ember-data model name to select from
@josiahbryan
josiahbryan / ember-sample-index.html
Last active February 22, 2019 13:29
This is a sample "index.html" to for use with Ember. It moves the loading of the compiled "vendor.js" into an animation frame and instead renders a simple splash screen first with a simple CSS loading indicator. Then, once the splash screen is on screen, it starts loading the <scripts> generated by Ember to boot the app. This should be generic e…
<!DOCTYPE html>
<html style='height:100%;overflow:none'>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>My App</title>
<meta name="description" content="My App by My Company, Inc.">
<!-- http://www.favicon-generator.org/ generates a good starting manifest that I tweak by hand -->
<link rel="manifest" href="/manifest.json">
@josiahbryan
josiahbryan / es-search-example.json
Last active December 5, 2016 08:00
Problem with OR Search in ElasticSearch 5
PUT /my_index/
{
"mappings": {
"data": {
"properties": {
"_stringified": {
"type": "text",
"fields": {
"autocomplete": {