Skip to content

Instantly share code, notes, and snippets.

View gohilbhagirath90's full-sized avatar

Bhagirathsinh Gohil gohilbhagirath90

  • eInfochips
  • Ahmedabad, Gujarat, India
View GitHub Profile
@gohilbhagirath90
gohilbhagirath90 / gist:cbf865df3316040a3c64
Last active August 29, 2015 14:05
Broadcast Receiver for start android app after booting
Well you can have a BroadcastReceiver declared in your manifest to receive the BOOT_COMPLETED broadcast and then respond to that in your BroadcastReceiver and do what you like.
<receiver android:name="MyBootReceiver"
android:enabled="true"
android:exported="true"
android:label="BootReceiver">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED"></action>
</intent-filter>
@gohilbhagirath90
gohilbhagirath90 / gist:0fe33ad78e848d4c295c
Created September 22, 2014 13:14
jni shared library
gcc -I/opt/jdk6/jdk1.6.0_45/include -I/opt/jdk6/jdk1.6.0_45/include/linux -o libhello.so -shared hello.c
@gohilbhagirath90
gohilbhagirath90 / gist:d51e2268d6ab97527c27
Created March 10, 2015 05:03
support for all android screen
<supports-screens
android:resizeable="true"
android:smallScreens="true"
android:normalScreens="true"
android:largeScreens="true"
android:anyDensity="true"
/>
# Built application files
/*/build/
# Crashlytics configuations
com_crashlytics_export_strings.xml
# Local configuration file (sdk path, etc)
local.properties
# Gradle generated files
@gohilbhagirath90
gohilbhagirath90 / scrollbar.xml
Last active September 17, 2019 10:43
change color of scrollbar in scrollview android
Create a scroll bar in drawable(scrollbar.xml) using this
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<gradient
android:angle="45"
android:centerColor="#669C79E7"
android:endColor="#66C0C0C0"
android:startColor="#669C70E2" />
@gohilbhagirath90
gohilbhagirath90 / ffmpeg
Last active May 27, 2017 09:49
ffmpeg decode command
==> ffmpeg decode video
ffmpeg -i Untitled_Project-Apple_ProRes_422.mov -f rawvideo -pix_fmt yuv420p Untitled_Project-Apple_ProRes_422.yuv
==> ffmpeg slicing video
ffmpeg -i Untitled_Project-Apple_ProRes_422.mov -pix_fmt yuv420p -ss 00:00:00 -t 00:00:15 part1_420p.mov
==> adding into container format
@gohilbhagirath90
gohilbhagirath90 / add_git.sh
Created May 7, 2015 08:56
adding project to git
#!/bin/bash
git init
echo "git init successfully"
git status
echo "git status"
git add -f *
echo "adding files successfully"
echo "set-up email & name"
@gohilbhagirath90
gohilbhagirath90 / wifiTest
Created May 19, 2015 09:25
How to test WLAN function via command line
When a PCB back from product line without LCD, how to test WIFI basic function?
We can usually use below commands in adb shell with root permission
//Check if wlan.ko was loaded
lsmod
//If not, please install it
insmod /system/lib/modules/wlan.ko
//Check if it correctly installed
@gohilbhagirath90
gohilbhagirath90 / getRoundedBitmap.java
Last active August 29, 2015 14:25 — forked from eveliotc/getRoundedBitmap.java
A better yet dirty way of get rounded avatars
public static Bitmap getRoundedBitmap(Bitmap bitmap) {
final Bitmap output = Bitmap.createBitmap(bitmap.getWidth(), bitmap.getHeight(), Bitmap.Config.ARGB_8888);
final Canvas canvas = new Canvas(output);
final int color = Color.RED;
final Paint paint = new Paint();
final Rect rect = new Rect(0, 0, bitmap.getWidth(), bitmap.getHeight());
final RectF rectF = new RectF(rect);
paint.setAntiAlias(true);
@gohilbhagirath90
gohilbhagirath90 / MonkeyRunnerTest.py
Created August 1, 2015 12:03
monkey runner script
import signal
from com.android.monkeyrunner import MonkeyRunner, MonkeyDevice
import commands
import sys
def execute():
running = True
while running:
# starting script