Skip to content

Instantly share code, notes, and snippets.

View joeyjiron06's full-sized avatar

Joey Jiron joeyjiron06

View GitHub Profile
@joeyjiron06
joeyjiron06 / processingSimpleButtons.pde
Last active December 22, 2015 10:39
Here is an implementation of two simple buttons (rounded and rectangular). Implement ButtonListener to determine when a button is pressed.
//Copyright 2013 Joey Jiron
import java.awt.event.MouseListener;
import java.awt.event.MouseEvent;
ArrayList<Button> mButtons = new ArrayList<Button>();
ButtonHandler buttonHandler = new ButtonHandler();
void setup()
{
@joeyjiron06
joeyjiron06 / Android List View
Last active December 23, 2015 07:19
Here is a custom listview for android. Customizable cells, displays custom objects. Feel free to download, fork, customize and make use of it. Add these files to your Android project.
...
@joeyjiron06
joeyjiron06 / SlideoutMenu
Last active April 13, 2016 02:56
Here is a very simple slideout menu that uses animations to show and hide a slide out menu. Slides from the left. Feel free to customize it, add to it, fork it, or whatever.
SlideoutMenu
@joeyjiron06
joeyjiron06 / OtherActivity
Last active December 9, 2018 18:13
Here is an example of how to pass custom objects between activities in android. You may use a static class to hold objects, which is fine, but you can also do it the "Android" way by making your classes Parcelable. Feel free to use this code as you please.
OtherActivity

Keybase proof

I hereby claim:

  • I am joeyjiron06 on github.
  • I am joeyjiron06 (https://keybase.io/joeyjiron06) on keybase.
  • I have a public key whose fingerprint is DE7C FF95 3936 F9D2 3188 9B70 AB45 CBB6 3FE5 7E95

To claim this, I am signing this object:

@joeyjiron06
joeyjiron06 / setup.md
Last active October 30, 2021 08:23
mac-setup
@joeyjiron06
joeyjiron06 / Java Utils
Last active April 13, 2016 02:50
A utility class for java
JAVA UTILS
@joeyjiron06
joeyjiron06 / Graph View
Last active April 13, 2016 02:52
A simple graph view for [D3.js](http://d3js.org/)
Graph View
@joeyjiron06
joeyjiron06 / Node Web Server
Created November 14, 2015 20:39
A simple web server written in node.js
NODE JS WEB SERVER
Android Utils