Skip to content

Instantly share code, notes, and snippets.

View jbeard4's full-sized avatar

Jacob Beard jbeard4

View GitHub Profile
<?xml version="1.0" encoding="UTF-8"?>
<scxml xmlns="http://www.w3.org/2005/07/scxml" name="device" datamodel="ecmascript" version="1.0">
<state id="OK">
<state id="on">
<transition target="off" event="device.turnOff"/>
</state>
<state id="off">
<transition target="on" event="device.turnOn"/>
</state>
<transition target="error" event="device.error"/>
@jbeard4
jbeard4 / csv-to-ghi.js
Last active August 14, 2018 02:23
Node script to read a CSV, and shell out to the ghi utility to create github issues
const fs = require('fs')
const { exec } = require('child_process');
const eachSeries = require('async/eachSeries');
const x = fs.readFileSync('issues.tsv','utf8')
const arrs = x.split('\r\n').map(row => {const arr = row.split('\t'); const o = {priority: arr[0], date_reported: arr[1], reporter: arr[2], status: arr[3], description: arr[4], steps_to_reproduce: arr[5], screenshot: arr[6], dev_assigned: arr[7], dev_notes: arr[8], status: arr[9]}; return o})
let i = 0;
eachSeries(arrs, (o, cb) => {
Description Resource Path Location Type
AbstractText cannot be resolved to a type GraphElementIndicator.java /org.eclipse.elk.conn.graphiti/src/org/eclipse/elk/alg/graphiti line 67 Java Problem
AbstractText cannot be resolved to a type GraphElementIndicator.java /org.eclipse.elk.conn.graphiti/src/org/eclipse/elk/alg/graphiti line 68 Java Problem
AbstractText cannot be resolved to a type GraphElementIndicator.java /org.eclipse.elk.conn.graphiti/src/org/eclipse/elk/alg/graphiti line 68 Java Problem
AbstractText cannot be resolved to a type GraphElementIndicator.java /org.eclipse.elk.conn.graphiti/src/org/eclipse/elk/alg/graphiti line 81 Java Problem
AbstractText cannot be resolved to a type GraphElementIndicator.java /org.eclipse.elk.conn.graphiti/src/org/eclipse/elk/alg/graphiti line 82 Java Problem
AbstractText cannot be resolved to a type GraphElementIndicator.java /org.eclipse.elk.conn.graphiti/src/org/eclipse/elk/alg/graphiti line 82 Java Problem
Anchor cannot be resolved to a type GraphElementIndicator.ja
a1cb3bd501b74977a4ae12c0db67fc63 http://dapps.bridge.academy #
@jbeard4
jbeard4 / .config
Last active April 23, 2024 15:50
Setup jslinux
#
# Automatically generated file; DO NOT EDIT.
# Buildroot 2017.02 Configuration
#
BR2_HAVE_DOT_CONFIG=y
BR2_HOST_GCC_AT_LEAST_4_5=y
BR2_HOST_GCC_AT_LEAST_4_6=y
BR2_HOST_GCC_AT_LEAST_4_7=y
BR2_HOST_GCC_AT_LEAST_4_8=y
BR2_HOST_GCC_AT_LEAST_4_9=y