Skip to content

Instantly share code, notes, and snippets.

View AmitThakur's full-sized avatar
🎯
Focusing

Amit Thakur AmitThakur

🎯
Focusing
View GitHub Profile
@AmitThakur
AmitThakur / karabiner-elements-remote-desktop.json
Last active November 21, 2018 12:55 — forked from toonetown/karabiner-elements-remote-desktop.json
Karabiner Elements JSON configuration for Microsoft Remote Desktop
{
"title": "Microsoft Remote Desktop",
"rules": [
{
"description": "Windows Mappings",
"manipulators": [
{
"type": "basic",
"from": { "key_code": "x", "modifiers": { "mandatory": [ "command" ] } },
"to": [ { "key_code": "x", "modifiers": [ "left_control" ] } ],
@AmitThakur
AmitThakur / Connectivity.java
Created December 18, 2016 05:41 — forked from emil2k/Connectivity.java
Android utility class for checking device's network connectivity and speed.
package com.emil.android.util;
import android.content.Context;
import android.net.ConnectivityManager;
import android.net.NetworkInfo;
import android.telephony.TelephonyManager;
/**
* Check device's network connectivity and speed
* @author emil http://stackoverflow.com/users/220710/emil
@AmitThakur
AmitThakur / sample.c
Last active August 29, 2015 14:04
Editsworld
#include<reg51.h>
void main()
{
char mybit;
TMOD=0x20;
TH1=0xFD;
TR1=1;
SCON=0x50;
while(1) {
@AmitThakur
AmitThakur / opencv_install.md
Last active March 13, 2024 05:08
How to install OpenCV on LInux (Ubuntu)