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
from pybricks.pupdevices import Remote | |
from pybricks.parameters import Button, Color | |
from pybricks.hubs import TechnicHub | |
from pybricks.pupdevices import Motor | |
from pybricks.parameters import Port | |
from pybricks.tools import wait | |
hub = TechnicHub() |
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
trigger: none | |
# trigger: | |
# branches: | |
# include: | |
# - feature/3809-faster-tests | |
#schedules: | |
# - cron: "*/15 * * * *" | |
# displayName: every 15 min build | |
# always: true |
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
'use strict'; | |
const fs = require('fs'); | |
const path = require('path'); | |
const webpack = require('webpack'); | |
const resolve = require('resolve'); | |
const PnpWebpackPlugin = require('pnp-webpack-plugin'); | |
const HtmlWebpackPlugin = require('html-webpack-plugin'); | |
const CaseSensitivePathsPlugin = require('case-sensitive-paths-webpack-plugin'); | |
const InlineChunkHtmlPlugin = require('react-dev-utils/InlineChunkHtmlPlugin'); |
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 x = {} | |
csv.split("\n").slice(1).map(r => { | |
const [date, amount] = [r.split(";")[0], r.split(";")[5]].map(c => c.replace(/"/g, '')); | |
const [day] = date.split('-'); | |
x[day] = (x[day] || 0) + Number(amount); | |
}); | |
Object.keys(x).map(day => document.querySelector(`#d${day}-0`).value = x[day]); | |
console.log(x); |
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
copy(Reflect.ownKeys(Reflect.getPrototypeOf(element)).filter(p=>element [p] instanceof Function).map(funcName => ` | |
suite('${funcName}()', () => { | |
test('yyyyy', () => { | |
assert.equal(element.${funcName}(''), 'xxxx'); | |
}); | |
}); | |
`).join('')) | |
/* sample output */ | |
suite('_getWeek', () => { |
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 express = require('express') | |
var app = express() | |
var port = 8081; | |
app.use(function(req, res, next) { | |
res.header("Access-Control-Allow-Origin", "*"); | |
res.header("Access-Control-Allow-Headers", "Origin, X-Requested-With, Content-Type, Accept"); | |
res.header("Access-Control-Allow-Methods", "POST, PUT, GET, OPTIONS"); | |
next(); | |
}); |
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
ssh -NT -R 12345:localhost:22 [email protected] -o ServerAliveInterval=60 | |
ssh -p12345 chris@localhost | |
https://blog.kylemanna.com/osx/ssh-reverse-tunnel-on-mac-os-x/ |
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
{ | |
"actions": [{ | |
"name": "actions.devices", | |
"deviceControl": { | |
}, | |
"fulfillment": { | |
"conversationName": "automation" | |
} | |
}], | |
"conversations": { |
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
{ | |
"requestId": "ff36a3cc-ec34-11e6-b1a0-64510650abcf", | |
"payload": { | |
"devices": [{ | |
"id": "456", | |
"type": "action.devices.types.LIGHT", | |
"traits": [ | |
"action.devices.traits.OnOff", | |
"action.devices.traits.Brightness", | |
"action.devices.traits.ColorSpectrum" |
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
!# | |
/Users/`whoami`/Library/Android/sdk/tools/emulator -avd `android list avd | grep Name -m 1 | cut -c 10-99` -http-proxy `ipconfig getifaddr en0`:8888 |
NewerOlder