Skip to content

Instantly share code, notes, and snippets.

View jintgeorge's full-sized avatar

Jint George jintgeorge

View GitHub Profile
@jintgeorge
jintgeorge / test.cpp
Created March 5, 2024 22:20 — forked from Justasic/test.cpp
Use C++11 features to implement a function queue which calls functions later but queues them up in a FIFO queue. Compile with: clang -std=c++11 -stdlib=libc++
#include <iostream>
#include <functional>
#include <queue>
// These includes are for later experimentation
#include <thread>
#include <atomic>
std::queue<std::function<void()>> funcs;
@jintgeorge
jintgeorge / AdbCommands
Created August 5, 2021 08:08 — forked from Pulimet/AdbCommands
Adb useful commands list
adb help // List all comands
== Adb Server
adb kill-server
adb start-server
== Adb Reboot
adb reboot
adb reboot recovery
adb reboot-bootloader
@jintgeorge
jintgeorge / cltools.sh
Created May 9, 2019 00:51 — forked from justinbellamy/cltools.sh
Install Autoconf and Automake on OS X El Capitan
#!/bin/sh
##
# Install autoconf, automake and libtool smoothly on Mac OS X.
# Newer versions of these libraries are available and may work better on OS X
#
# This script is originally from http://jsdelfino.blogspot.com.au/2012/08/autoconf-and-automake-on-mac-os-x.html
#
export build=~/devtools # or wherever you'd like to build