Category Archives: Uncategorized

Note 4 unlock screen

Type in this code in the dialpad #7465625*638*# Then it will ask for the code that you purchased from somebody else.

Posted in Uncategorized

Automate Git Bash

Connect to Linux machine How to connect to a linux machine from a git bash terminal on Windows 7 machine. Git bash is already a batch command executed from the dos command prompt. So if you want to execute a linux shell script such as “connect_to_jc.sh” , then you need to create a batch file […]

Posted in Uncategorized

LG E970 Tricks

Go to Factory Reset You can go to LG Factory reset, only if the bootloader is not unlocked. Then turn the phone completely off. Hold the volume down button and then press the power button. Go to download mode Once rooted and the bootloader unlocked it will be difficult to go to download mode. So […]

Posted in Uncategorized

Gimp – Passport Photo

Assumption: You already have a picture that is 2″ x 2″ and meets all the regulations of the passport office. Here is the original picture The goal is to create a tile of pictures i.e., 4″x6″ standard photo that will give you 6 of the pictures that you need like below   Steps Open the […]

Posted in Uncategorized

Git list remote

To list the remote url for your git repositories git remote -v or git config –get remote.config.url

Posted in Uncategorized

Android SearchView in ActionBar

The manifest file that will call jc_search_activity.java   <activity android:name=”com.jc.suadmin.first_page” android:label=”@string/app_name” android:theme=”@style/AppTheme” > <intent-filter> <action android:name=”android.intent.action.MAIN” /> <category android:name=”android.intent.category.LAUNCHER” /> </intent-filter> <meta-data android:name=”android.app.default_searchable” android:value=”.jc_search_activity” /> </activity> <activity android:name=”.jc_search_activity” android:label=”@string/app_name”> <intent-filter> <action android:name=”android.intent.action.SEARCH” /> </intent-filter> <meta-data android:name=”android.app.searchable” android:resource=”@xml/searchable”/> </activity>

Posted in Uncategorized

Git Remove deleted files en masse

When you work with a project sometimes you have to delete a lot of files that you don’t need anymore. If you issue a git status command $git status it will show the missing files in the red. that means the files are missing from the folder, but they are still in the index. The […]

Posted in Uncategorized

Android Google Authorization

How to Enable Oauth2 Authorization for your application in Android Things you need First create an api project https://console.developers.google.com/project Enable the API that you want to use in that project, such as AdSense Management API Create a client id in that api project. The client id will be for installed application, Android and then you […]

Posted in Uncategorized

suvideo

SuVideo. This is the sample help page for the SuVideo app See the Movies at this link Suvideo Movies

Posted in Uncategorized

Sumote

Help for Sumote This gives small help if need to use the Roku Remote an android app designed by Jayachandran Kamaraj This app controls a Roku streaming video player over WiFi using Roku’s External Control Protocol. It is one of  the best (possibly the only working) free one on the market (currently ranked third and the first one […]

Posted in Uncategorized