Skip to content

Instantly share code, notes, and snippets.

View gvJaime's full-sized avatar
🤔
Focusing

Jaime García gvJaime

🤔
Focusing
View GitHub Profile
@piroor
piroor / toc.js
Last active November 3, 2022 17:59
Generate Table of Contents for GitHub Wiki Pages
// How to use:
// 1. Go to a page of GitHub Wiki with Firefox.
// 2. Copy this script to the clipboard.
// 3. Hit Ctrl-Shift-K to open Web Console.
// 4. Hit Ctrl-Shift-V to paste this script.
// 5. Hit Enter to run script.
// 6. If you are not in edit mode, click the "Copy ToC" button shown in the page.
// Then ToC is copied to the clipboard, so paste the TOC from the clipboard.
var container = document.querySelector('.markdown-body');
@natevogt
natevogt / Camera2Activity.java
Created January 13, 2016 22:25
Quick-n-Dirty Camera2 Activity
package com.natevogtphoto.camera2test;
import android.app.Activity;
import android.content.Context;
import android.content.pm.ActivityInfo;
import android.graphics.ImageFormat;
import android.graphics.SurfaceTexture;
import android.hardware.camera2.CameraAccessException;
import android.hardware.camera2.CameraCaptureSession;
import android.hardware.camera2.CameraCaptureSession.CaptureCallback;