Skip to content

Instantly share code, notes, and snippets.

View pchettiy's full-sized avatar

Prabakar pchettiy

  • United States
View GitHub Profile
@pchettiy
pchettiy / AndroidManifest.xml
Last active October 8, 2016 15:53
Retromania app
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="spider.app.retromania">
<uses-permission android:name="android.permission.INTERNET" />
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
@pchettiy
pchettiy / DevCheats.md
Last active April 25, 2016 19:55
Cheat Sheet for Developers

Activating Venv Ubuntu

  • cd FolderName
  • virtualenv venv
  • source venv/bin/activate
@pchettiy
pchettiy / BoilerPlateAndroidSnippets
Last active April 10, 2016 17:39
This gist contains boiler plate code which you can copy paste evertime you want to do the given operations
Getting server data :
public class AsyncgetTopics extends AsyncTask<String,Void,String> {
@Override
protected void onPreExecute() {
super.onPreExecute();
bar.setVisibility(View.VISIBLE);