Skip to content

Instantly share code, notes, and snippets.

View Kadajett's full-sized avatar

Jeremy Stover Kadajett

View GitHub Profile
@Kadajett
Kadajett / incrementingInt.js
Last active January 26, 2018 22:37
Increment an integer on GET
var i = 1;
Object.defineProperty(window, 'n' , {
get() {
return i ++;
}
})
// n == 1
// n == 2
/**
* This is basic memoization. I am going to play around with it and come up with a few solutions!
* Probably going to go back and rewrite this. Its kinda ugly.
*/
class Fib {
constructor() {
this.cache = {
"10": [0,1,1,2,3,4,8,13, 21, 34]
}
const errors = {
web_user_phone_error: {
error_data: "asdf"
}
}
return R.compose(
R.propOr(message, "createdMessage"),
errors[x]
)(errors)
@Kadajett
Kadajett / cart.component.js
Created January 11, 2019 21:07
Cart line item modification
let tempLineItems = lineItems.filter(item => item.label === "Medical Fee");
// debugger;
return products && products.length > 0 ? (
<Block>
<Block mb={combineRems(spacing.two, spacing.four)}>
{/* <CartProductList
products={products}
onDecreaseQuantity={decreaseQuantity}
onIncreaseQuantity={increaseQuantity}
onRemoveProduct={removeProduct}
Function permuteString(input, iter = 0) {
if(iter == input.length - 1) return;
Let currentArr = Array.from(input);
Let firstChar = currentArr[0];
currentArr = currentArr.splice(0,1); edbc
// loop through for all the characters
for(let i = 0; i < currentArr.length; i++) {
Let tempItem = currentArr[i];
#include <iostream>
#include <string>
// #include <bits/stdc++.h>
using namespace std;
struct Node {
int (*func)(string);
string param;
onmessage = function(evt) {
const canvas = evt.data.canvas;
const gl = canvas.getContext("webgl");
function render(time) {
// ... some drawing using the gl context ...
requestAnimationFrame(render);
}
requestAnimationFrame(render);
};
#include <iostream>
#include <array>
using namespace std;
struct QueueItem {
int func(string);
string params;
};
@Kadajett
Kadajett / CockKeys.json
Last active July 10, 2021 23:40
db for dickCoin
{
"keys": [{
"openseaUrl": "https://opensea.io/assets/0x495f947276749ce646f68ac8c248420045cb7b5e/4491726516030203812614450579463857042464239586635258517311568059421845094401",
"imageUrl": "https://i.imgur.com/dwJfUub.mp4",
"title": "the little spermaid"
}]
}
let img;
function preload() {
img = loadImage("src/assets/photo2.jpg");
}
function setup() {
createCanvas(400, 400);