Skip to content

Instantly share code, notes, and snippets.

@jaxbot
jaxbot / form.html
Last active October 4, 2015 17:59 — forked from divneet/index.js
<!doctype html>
<html>
<head>
<script src='https://www.google.com/recaptcha/api.js'></script>
<script>
function registerAPI(form) {
var params = {
username: form.username.value,
password: form.password.value,
email: form.email.value,
@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();