Skip to content

Instantly share code, notes, and snippets.

View hbb20's full-sized avatar
:octocat:
Almost nothing 😉

Harsh Baldevbhai Bhakt hbb20

:octocat:
Almost nothing 😉
  • Neighbor
  • Utah, USA
View GitHub Profile
@hbb20
hbb20 / Post.java
Created February 28, 2018 23:53 — forked from yashbmewada/Post.java
Post model for Android Workshop
public class Post {
String title;
String author;
String body;
public Post(String title, String author, String body) {
this.title = title;
this.author = author;
this.body = body;
@hbb20
hbb20 / 0_reuse_code.js
Created August 8, 2014 09:48
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console