Skip to content

Instantly share code, notes, and snippets.

View devotox's full-sized avatar
💻
Innovating

Devonte devotox

💻
Innovating
View GitHub Profile
{
"label": "Subform Top",
"sections": [
{
"label": "Subform Top",
"fields": [
{
"id": "121",
"type": "text",
"required": true,
@devotox
devotox / form2.json
Last active November 29, 2017 10:03
{
"id": "11223344",
"label": "D Form",
"description": "Forms so good ... Makes you wanna slap yo mama",
"hooks": [{
"type": "http",
"run": "click",
"pollTime": 5000,
"encrypted": true,
"element": "form",
@devotox
devotox / fa-icons.json
Created March 30, 2019 08:49
Font Awesome Icons
[
{
"value": "500px"
},
{
"value": "address-book"
},
{
"value": "address-book-o"
},
const def = {
'id': '11223344',
'label': 'D Form',
'description': 'Forms so good ... Makes you wanna slap yo mama',
'hooks': [{
'type': 'http',
'run': 'click',
'pollTime': 5000,
'encrypted': true,
'element': 'form',
@devotox
devotox / ember-orbit-data-store.js
Last active December 25, 2019 01:38
Ember Orbit Data Store (But Better)
import { Store } from 'ember-orbit';
export default class DataStore extends Store {
findRecords(type, { filter, sort, page, include, ...options } = {}) {
include && put(options, 'sources.remote.include', include);
return this.query((q) => {
let result = q.findRecords(type);
page && (result = result.page(page));
@devotox
devotox / mirage-serializer-application.js
Last active December 27, 2019 18:05
Mirage JSON API Serializer (With Filtering, Sorting, Paging)
import sort from 'fast-sort';
import { JSONAPISerializer } from 'ember-cli-mirage';
const stringToBoolean = (str) =>
({ 'true': true, 'false': false }[str?.trim().toLowerCase()] || str);
export default class Application extends JSONAPISerializer {
// Can filter by any value on attributes
// Or an ID on a relationship that MUST be in the `includes`
filterResourceHash(resourceHash) {
@devotox
devotox / config | environment.js
Last active January 21, 2020 13:37
Zero cost web apps
'use strict';
module.exports = function(environment) {
let ENV = {
modulePrefix: 'zero-cost-web-app',
environment,
rootURL: '/',
locationType: 'auto',
EmberENV: {
FEATURES: {
@devotox
devotox / controllers.application.js
Last active February 11, 2020 08:42
Select Option Issue
import Ember from 'ember';
export default Ember.Controller.extend({
options: ['oranges', 'apples', 'pears']
});
@devotox
devotox / osx_bootstrap.sh
Last active June 2, 2020 19:58 — forked from codeinthehole/osx_bootstrap.sh
Script to install stuff I want on a new OSX machine
#!/usr/bin/env bash
#
# Bootstrap script for setting up a new OSX machine
#
# This should be idempotent so it can be run multiple times.
#
# Some apps don't have a cask and so still need to be installed by hand. These
# include:
#
# Notes:
@devotox
devotox / s3-optimize-images.js
Last active January 21, 2021 00:09
Run Through S3 Images (JPEG) and optimize them using imagemin and reupload to same path - Automatically sets the cache control to a day and public
#!/usr/bin/node
const fs = require('fs');
const path = require('path');
const AWS = require('aws-sdk');
const Promise = require('bluebird');
const imagemin = require('imagemin');
const imageminJpegRecompress = require('imagemin-jpeg-recompress');
const config = {