git init
or
| (version 1) | |
| #Kicad 7 | |
| # 2-layer, 1oz copper | |
| (rule "Minimum Trace Width (outer layer)" | |
| (constraint track_width (min 5mil)) | |
| (layer outer) | |
| (condition "A.Type == 'track'")) | |
| (rule "Minimum Trace Spacing (outer layer)" |
| # somewhat hackish solution to: | |
| # https://twitter.com/EamonCaddigan/status/646759751242620928 | |
| # based mostly on copy/pasting from ggplot2 geom_violin source: | |
| # https://github.com/hadley/ggplot2/blob/master/R/geom-violin.r | |
| library(ggplot2) | |
| library(dplyr) | |
| "%||%" <- function(a, b) { |
| # Released by rdb under the Unlicense (unlicense.org) | |
| # Based on information from: | |
| # https://www.kernel.org/doc/Documentation/input/joystick-api.txt | |
| import os, struct, array | |
| from fcntl import ioctl | |
| # Iterate over the joystick devices. | |
| print('Available devices:') |
| set.seed(42) | |
| dat <- rnorm(1) | |
| shinyServer(function(input, output) { | |
| fetchData <- reactive(function() { | |
| invalidateLater(1000) | |
| qt <- rnorm(1) | |
| dat <<- c(dat, qt) | |
| dat | |
| }) | |
| output$plot_dat <- reactivePlot(function() { plot(fetchData(), type='l') }) |
Please check out the new repository: pklaus / serialman. It's great!