Skip to content

Instantly share code, notes, and snippets.

var SURVEY = [
{
question: "Write a few sentences about yourself.",
type: "paragraph",
table: "user",
key: "biography",
example: "Computer Science Major at UCF, clean, quiet, and love spending time with my cat.",
},
{
question: "Where are you looking for roommates?",
@jaxbot
jaxbot / MyArrayList.java
Last active January 8, 2017 15:58 — forked from wwsun/MyArrayList.java
A basic ArrayList implementation(Java)
public class MyArrayList {
private static final int DEFAULT_CAPACITY = 10;
private int theSize;
private int[] theItems;
public MyArrayList() {
clear();
@jaxbot
jaxbot / test.js
Created September 29, 2018 03:39
const puppeteer = require('puppeteer');
var sizes = [
{
name: "1080p",
width: 1920,
height: 1080,
isMobile: false
},
{