Skip to content

Instantly share code, notes, and snippets.

View JesseRWeigel's full-sized avatar

Jesse R Weigel JesseRWeigel

View GitHub Profile
@fullyninja
fullyninja / TMJiraDarkMode.js
Created February 24, 2021 01:43
A simple and hacky TamperMonkey script to convert Jira to dark mode. Sort of.
// ==UserScript==
// @name Jira Dark Mode
// @namespace http://tampermonkey.net/
// @version 1.0
// @description Convert Jira to dark mode.
// @author Peter Evans
// @match https://*.atlassian.net/*
// @grant none
// @require https://cdn.walkme.com/player/resources/wmjQuery3315.js
// ==/UserScript==
@RedHatter
RedHatter / DateMultiPicker.jsx
Last active August 4, 2021 02:14
Range and multi select for @dmtrKovalenko/material-ui-pickers
import React, { useState, useContext, useRef } from 'react'
import { DatePicker } from 'material-ui-pickers'
import { MuiPickersContext } from 'material-ui-pickers'
export default function DateMultiPicker({
value,
onChange,
labelFunc,
format,
emptyLabel,
@cristianexer
cristianexer / Titanic: Machine Learning from Disaster with brain.js
Created June 4, 2018 15:27
Titanic: Machine Learning from Disaster with brain.js
const brain = require('brain.js');
var ezcsv = require('ezcsv');
const trainPath = './train.csv';
const testPath = './test.csv';
const gp = './gpinr.csv';
var train = ezcsv.csv.read(trainPath);
var test = ezcsv.csv.read(testPath);
var gpinr = ezcsv.csv.read(gp);
@vinicius5581
vinicius5581 / reducer.js
Created November 6, 2017 23:30
redux basic reducer
import { combineReducers } from 'redux'
const reducerTest = (state = {}) => state;
export default combineReducers({
reducerTest
})
@willpatera
willpatera / Google-Sheet-Form-Post.md
Last active May 3, 2024 12:57
Post to google spreadsheet from html form

Overview

This collection of files serves as a simple static demonstration of how to post to a google spreadsheet from an external html <form> following the example by Martin Hawksey

Depreciation Warning: This code is not maintained, and should be seen as reference implementation only. If you're looking to add features or update, fork the code and update as needed.

Run example

You should be able to just open index.html in your browser and test locally.

@dwayne
dwayne / a-modern-frontend-dev.md
Last active March 21, 2021 11:38
Articles, tutorials and tools for modern front-end development.

Problem: What does a Modern Front-End Development Workflow Look Like?

I want to start writing libraries and large applications using the JavaScript language. However, I don't know how to setup the project and which build tools to use. What I do know is that the JavaScript community has moved way beyond using browser developer tool plugins and strategically-placed console.log() statements to debug, test, and build code.

I need help.

Below, I will keep track of articles, tutorials and tools I come across as I search for a way to bring my front-end development chops up-to-date.

The Ultimate Resource