Skip to content

Instantly share code, notes, and snippets.

View ChristianSchwarz's full-sized avatar

Christian Schwarz ChristianSchwarz

View GitHub Profile
@aallan
aallan / mac-vendor.txt
Last active December 12, 2025 08:14
List of MAC addresses with vendors identities
000000 Officially Xerox
000001 SuperLAN-2U
000002 BBN (was internal usage only, no longer used)
000003 XEROX CORPORATION
000004 XEROX CORPORATION
000005 XEROX CORPORATION
000006 XEROX CORPORATION
000007 XEROX CORPORATION
000008 XEROX CORPORATION
000009 powerpipes?
@thirteen37
thirteen37 / chip-java8.md
Last active June 4, 2018 14:44
Install Java 8 on C.H.I.P.

Install Java 8 on C.H.I.P.

C.H.I.P. or PocketC.H.I.P. is a Debian Jessie-based system. We can use the Ubuntu Trusty repos:

sudo sh -c "echo \"deb http://ppa.launchpad.net/webupd8team/java/ubuntu trusty main\" > /etc/apt/sources.list.d/java8.list"
sudo sh -c "echo \"deb-src http://ppa.launchpad.net/webupd8team/java/ubuntu trusty main\" >> /etc/apt/sources.list.d/java8.list"
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys EEA14886
sudo apt-get update
sudo apt-get install -y oracle-java8-installer oracle-java8-set-default
@dpryden
dpryden / ClassLoaderLeakExample.java
Created October 20, 2014 00:01
Example of a ClassLoader leak in Java
import java.io.IOException;
import java.net.URLClassLoader;
import java.nio.file.Files;
import java.nio.file.Paths;
import java.nio.file.Path;
/**
* Example demonstrating a ClassLoader leak.
*
* <p>To see it in action, copy this file to a temp directory somewhere,