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
<?xml version="1.0" encoding="utf-8"?>
<data>
<messages>
<ccp_dialog_title translation="اختار دولة"/>
<ccp_dialog_search_hint_message translation="بحث"/>
<ccp_dialog_no_result_ack_message translation=" لا يوجد نتائج"/>
</messages>
<countries>
<country
@yashbmewada
yashbmewada / Post.java
Created December 19, 2017 21:45
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;
@tadfisher
tadfisher / ExpandableItemAnimator.java
Last active October 4, 2021 14:55
DefaultItemAnimator workarounds
import android.support.annotation.NonNull;
import android.support.annotation.Nullable;
import android.support.v4.view.ViewCompat;
import android.support.v7.widget.DefaultItemAnimator;
import android.support.v7.widget.RecyclerView;
import android.view.View;
import java.util.List;
/**
@thebucknerlife
thebucknerlife / deploying_rails_to_heroku.md
Created October 20, 2014 23:41
A Beginners Guide to Deploying a Rails App on Heroku

Deploying to Heroku

This guide is for a first-time Rails developer to deploy their app to Heroku, a popular web-hosting service with strong Rails support. This guide assumes you already have a Heroku account and have installed the Heroku Toolbelt.

Create Your App and Setup Heroku with Git

  1. Make sure you've setup an SSH key for Heroku. Follow this simple guide to create an SSH key and send it to Heroku if needed: Heroku: Managing Your SSH Keys
  2. Navigate into the folder for your Rails app.