Skip to content

Instantly share code, notes, and snippets.

View jessestuart's full-sized avatar

Jesse Stuart jessestuart

View GitHub Profile

Keybase proof

I hereby claim:

  • I am jessestuart on github.
  • I am jaystu (https://keybase.io/jaystu) on keybase.
  • I have a public key ASDDsPFj-8lKxQgc2ZH5N2ao39gWNCmJWr8j-ZRoa5sQKwo

To claim this, I am signing this object:

@-webkit-keyframes fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
#sVim-command {
" Settings
let fullpagescrollpercent = 100
let scrollduration = 25
let scrollstep = 150
let zoomstep = 20
let mapleader = " "
" Shortcuts
" map "q" nextTab
" map "shift+q" previousTab
# Hello, and welcome to makefile basics.
#
# You will learn why `make` is so great, and why, despite its "weird" syntax,
# it is actually a highly expressive, efficient, and powerful way to build
# programs.
#
# Once you're done here, go to
# http://www.gnu.org/software/make/manual/make.html
# to learn SOOOO much more.
@jessestuart
jessestuart / readme.md
Created April 3, 2019 23:29 — forked from iest/readme.md
Moving from lodash/fp to ramda

Moving from lodash/fp to ramda

How

Good news is we're only using lodash/fp, which makes it easier to match function signatures.

  1. Find most-used lodash methods, we'll convert these first maybe?
  2. Go through each lodash method, find the ramda equivalent where possible
  3. Write a codemod to rewrite those usages
  4. Who the fuck thought function aliases were a good idea
@jessestuart
jessestuart / 📊 Weekly development breakdown
Last active August 15, 2019 11:06
JDS Wakatime overview.
Other 66 hrs 48 mins ██████████████████░░░ 86.8%
TypeScript 3 hrs 47 mins █░░░░░░░░░░░░░░░░░░░░ 4.9%
Kubernetes 2 hrs 50 mins █░░░░░░░░░░░░░░░░░░░░ 3.7%
YAML 1 hr ░░░░░░░░░░░░░░░░░░░░░ 1.3%
serverless lib 31 mins ░░░░░░░░░░░░░░░░░░░░░ 0.7%
@jessestuart
jessestuart / 60622844.groovy
Created March 10, 2020 18:14
stackoverflow-60622844
import java.time.LocalDate
public class AmountModel {
private Integer id;
private Double amount;
// Not defined in OP
// private CategoryModel categoryModel;
private LocalDate localDate;
}