-
every function accessible by mouse needs to be accessible by keyboard and vice-versa
-
there are 1-n screens
- each screen has 1-n workspaces, but the default is 12
- workspaces do not span screens
This file contains hidden or 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
/********************** | |
@file DShotTimer2.cpp | |
@brief DShot implementation for Arduino using bit-banging method | |
@author Andy Tsui | |
Original version using Timer 1 - https://github.com/gueei/DShot-Arduino | |
Modified to use Timer 2 and Port B on the Arduino UNO | |
Pins D8 - D13 |
This file contains hidden or 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
#!/usr/bin/env python | |
import time | |
import visa | |
IP_ADDR = '192.168.50.219' | |
INTERVAL = 1.0 | |
rm = visa.ResourceManager('@py') | |
scope = rm.open_resource('TCPIP::%s::INSTR' % (IP_ADDR,)) |
This file contains hidden or 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 <math.h> | |
unsigned const int led_count = 5; | |
int led_pin[led_count] = {10, 9, 6, 5, 3}; | |
const unsigned int min_val = 25; // never go dark completely | |
const unsigned int max_val = 255; // don't kill the LEDs (atm there are no resistors) | |
void setup() | |
{ | |
Serial.begin(9600); |
This is a proposal for lightning talk at Reactive Conf. Please 🌟 this gist to push the proposal!
Hi, I am Andy, creator of leakage - the node-powered memory leak testing library.
Instead of manual debugging it provides a structured approach to fix or even prevent memory leaks.
This file contains hidden or 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
# Throw this in config/initializers and add | |
# @import variables.sass to the top of application.sass | |
# to have all variables in app_config.yml | |
# available as variables in your sass stylesheets | |
# | |
# First draft by unixmonkey (http://gist.github.com/323198) | |
# flatten method added by J. R. Schmid <[email protected]> | |
app_config = YAML::load(File.open(File.join(RAILS_ROOT, 'config', 'app_config.yml'))) |