Skip to content

Instantly share code, notes, and snippets.

View JLLeitschuh's full-sized avatar

Jonathan Leitschuh JLLeitschuh

View GitHub Profile
private enum SupportedType {
NumberArray(Number[].class){
void putValue(NetworkTable table, String identifier, Object value){
}
};
private final Class clazz;
SupportedType(Class clazz){
@JLLeitschuh
JLLeitschuh / WebwareTeachingW3Accessibility.md
Last active November 2, 2015 18:59
Webware Teaching W3 Accessibility

Why Teach Accessibility?

The Web is an increasingly important resource in many aspects of life: education, employment, government, commerce, health care, recreation, and more. It is essential that the Web be accessible in order to provide equal access and equal opportunity to people with disabilities. An accessible Web can also help people with disabilities more actively participate in society.

-w3.org

  • Legally required for Goverment Websites
  • Apple was recently sued for not having iOS devices. Apple now has some of the best tablet accessibilty on the market.
  • eglecting a major portion of the population by not catering to the needs of these users.
import org.bytedeco.javacpp.opencv_videoio;
/**
* Statically defined list of devices that opencv
* supports as WebCam devices.
*/
public enum SourceType {
ANY(opencv_videoio.CV_CAP_ANY, "AutoDetect"),
MIL(opencv_videoio.CV_CAP_MIL, "MIL proprietary drivers"),