Run k6 for all branches prefixed with k6/
, i.e. k6/my-test
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
<html> | |
<head> | |
<title>Test</title> | |
</head> | |
<script async> | |
/* | |
relay | |
usbProductId: 24577 | |
usbVendorId: 1027 |
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
const { SerialPort } = require('serialport') | |
async function listSerialPorts() { | |
await SerialPort.list().then((ports, err) => { | |
if (err) { | |
// document.getElementById('error').textContent = err.message | |
console.error(err.message) | |
return | |
} else { | |
// document.getElementById('error').textContent = '' |
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
// See https://docs.retool.com/docs/dynamodb-integration | |
import { Stack, StackProps } from "aws-cdk-lib"; | |
import * as dynamodb from "aws-cdk-lib/aws-dynamodb"; | |
import * as iam from "aws-cdk-lib/aws-iam"; | |
import { Construct } from "constructs"; | |
export class DataStack extends Stack { | |
public readonly table: dynamodb.Table; | |
constructor(scope: Construct, id: string, props?: StackProps) { |
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
tell application "Google Chrome" to set the bounds of the front window to {1376, 0, 3440, 1440} | |
tell application "iTerm" to set the bounds of the front window to {1376, 0, 3440, 1440} | |
tell application "Slack" to set the bounds of the front window to {0, 0, 1376, 1440} | |
tell application "System Events" to tell application process "WhatsApp" | |
tell window 1 | |
set {size, position} to {{1376, 1440}, {0, 0}} | |
end tell |
- download gpr into
~/bin
- change org and repo in the script
chmod +x ~/bin/gpr
- edit
~/.zshrc
addingexport PATH="$HOME/bin:$PATH"
cd your-cloned-dir
thengpr
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
/* | |
For deploying it: | |
Install aws-cdk: https://github.com/awslabs/aws-cdk then | |
npm run build | |
cdk deploy | |
*/ | |
import cdk = require('@aws-cdk/cdk') |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> | |
<head profile="http://selenium-ide.openqa.org/profiles/test-case"> | |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> | |
<link rel="selenium.base" href="http://putsbox.com" /> | |
<title>Test</title> | |
</head> | |
<body> | |
<table cellpadding="1" cellspacing="1" border="1"> |
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
<script> | |
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ | |
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), | |
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) | |
})(window,document,'script','//www.google-analytics.com/analytics.js','ga'); | |
ga('create', 'UA-3914566-6', 'auto'); | |
ga('send', 'pageview'); | |
</script> |
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
source 'https://rubygems.org' | |
gem 'sinatra' | |
gem 'active_support' |
NewerOlder