This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"""PySide2 & OpenGL sample""" | |
import sys | |
from PySide2 import QtCore, QtWidgets, QtOpenGL | |
try: | |
from OpenGL.GL import * | |
except ImportError: | |
app = QtWidgets.QApplication(sys.argv) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Conway's Game Of Life 32 x 64 | |
// based on https://github.com/markfink/GoL_Javascript | |
#include <avr/pgmspace.h> | |
#include "pins_arduino.h" | |
// Connections to board | |
const byte pinSTB=7; | |
const byte pinClock=12; | |
const byte pinURed=10; | |
const byte pinUGreen=11; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <avr/pgmspace.h> | |
#include "pins_arduino.h" | |
// based on myMatrix Arduino Library | |
// by Silviu - www.openhardware.ro | |
// MIT License (MIT) | |
// Connections to board | |
const byte pinSTB=8; | |
const byte pinClock=12; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <avr/pgmspace.h> | |
#include "pins_arduino.h" | |
// based on myMatrix Arduino Library | |
// by Silviu - www.openhardware.ro | |
// MIT License (MIT) | |
// Connections to board | |
const byte pinSTB=8; | |
const byte pinClock=12; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
ardumeter, monitoring temperature and power consumption. | |
features: | |
* collect measurements and forward to emoncms http://emoncms.org/ | |
* reconnect after ethernet connection loss | |
* S0 pulse count for up to 20 electricity meters | |
* use DS128B20 sensor address to bind temperature sensors | |
status LEDs: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var NYTG = NYTG || {}; | |
NYTG.csstransitions = Modernizr.csstransitions; | |
//requires jQuery | |
//requires jQuery mouseWheel plugin. | |
// NYTG.ZoomWindow = function (nodeId, treeMap) { | |
NYTG.ZoomWindow = function (nodeId) { | |
this.HOUSEHOLDS = 113616229; | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<meta charset="utf-8"> | |
</head><body><header> | |
<aside>August 15, 2013</aside> | |
</header> | |
<h1>Treemap (d3 / DIV)</h1> | |
<p id="chart"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><meta charset="utf-8"> | |
<title>Zoomable Treemaps</title> | |
<style> | |
@import url(./style.css); | |
#chart { | |
width: 960px; | |
height: 500px; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"mainFile": "", | |
"venv": "/home/mark/devel/boodo/env", | |
"name": "boodo", | |
"license": "MIT License", | |
"url": "", | |
"pythonPath": "", | |
"programParams": "", | |
"supported-extensions": [ | |
".py", |