This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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?", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class MyArrayList { | |
private static final int DEFAULT_CAPACITY = 10; | |
private int theSize; | |
private int[] theItems; | |
public MyArrayList() { | |
clear(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const puppeteer = require('puppeteer'); | |
var sizes = [ | |
{ | |
name: "1080p", | |
width: 1920, | |
height: 1080, | |
isMobile: false | |
}, | |
{ |
OlderNewer