Skip to content

Instantly share code, notes, and snippets.

View pvrego's full-sized avatar
💾
Producing

Rego pvrego

💾
Producing
View GitHub Profile
@pvrego
pvrego / README.md
Last active September 26, 2020 14:59 — forked from thanasi/jupyter_local_video.py
Embed a local video file in a Jupyter Notebook

Embed a local video file in a Jupyter Notebook

@pvrego
pvrego / java_callback.java
Created March 5, 2019 20:56
Callbacks in Java
// From https://www.quora.com/What-are-callback-methods-in-Java
// Java program to illustrate synchronous callback
interface OnGeekEventListener {
// this can be any type of method
void onGeekEvent();
}
class B {
private OnGeekEventListener mListener; // listener field
@pvrego
pvrego / pthreads_rpi.md
Last active April 17, 2021 02:57
Working with PThreads in Raspberry Pi

PThreads installation

In order to install, in Raspbian terminal you may execute

sudo apt-get install libpthread-stubs0-dev

So the system will return

Reading package lists... Done