Skip to content

Instantly share code, notes, and snippets.

// GET catList from server. Mode is either easy or hard
private void getCatList(String username, String password, Boolean isEasyMode){
queue = Volley.newRequestQueue(this);
String url = "http://cs65.cs.dartmouth.edu/catlist.pl?name=" + username + "&password=" +
password + "&mode=" + isEasyMode;
JsonArrayRequest jsonArrayRequest = new JsonArrayRequest(

Keybase proof

I hereby claim:

  • I am wesk on github.
  • I am weskendrick (https://keybase.io/weskendrick) on keybase.
  • I have a public key ASC-B7iB4sfv_z9oQyYRgt-5LvvBEaph34e43dzIn9zj4Qo

To claim this, I am signing this object:

@wesk
wesk / integrated linear actuator and flipper control
Created May 28, 2016 21:34
integrated linear actuator and flipper control
/*
*
* LINEAR ACTUATOR & FLIPPER PROGRAM CONTROL!
further modified 19 May 2016, Thayer ENGS21 proj, Wes Kendrick.
Using grove shield,
modified even more for the linear actuator 5/25/2016
/*
*
* LINEAR ACTUATOR & FLIPPER PROGRAM CONTROL!
further modified 19 May 2016, Thayer ENGS21 proj, Wes Kendrick.
Using grove shield,
modified even more for the linear actuator 5/25/2016
@wesk
wesk / linear actuator control
Last active May 28, 2016 18:30
arduino code for our engs 21 16S project
/*
*
* LINEAR ACTUATOR & FLIPPER PROGRAM CONTROL!
further modified 19 May 2016, Thayer ENGS21 proj, Wes Kendrick.
Using grove shield,
modified even more for the linear actuator 5/25/2016
@wesk
wesk / servo control
Last active May 28, 2016 18:47
basic servo control
/* Sweep
by BARRAGAN <http://barraganstudio.com>
This example code is in the public domain.
modified 8 Nov 2013
by Scott Fitzgerald
http://www.arduino.cc/en/Tutorial/Sweep
further modified 19 May 2016, Thayer ENGS21 proj, Wes Kendrick.