This file is based on: https://raw.githubusercontent.com/alexellis/inlets/master/hack/inlets.service
I've had to remove the quotes around {AUTHTOKEN}
to avoid them showing up in the token.
/* | |
|-------------------------------------------------------------------------- | |
| Mailer Configurations | |
|-------------------------------------------------------------------------- | |
| | |
| Here you may configure all of the mailers used by your application plus | |
| their respective settings. Several examples have been configured for | |
| you and you are free to add your own as your application requires. | |
| |
# SQLite. Versions 3.8.0 and up are supported. | |
# gem install sqlite3 | |
# | |
# Ensure the SQLite 3 gem is defined in your Gemfile | |
# gem 'sqlite3' | |
# | |
default: &default | |
adapter: sqlite3 | |
pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %> | |
timeout: 5000 |
package responsewriter | |
import ( | |
"bytes" | |
"net/http" | |
"github.com/felixge/httpsnoop" | |
) | |
// Wrap the response writer |
package route | |
//go:generate peg -switch -inline grammar.peg | |
import ( | |
"regexp" | |
"github.com/kr/pretty" | |
) |
package plugin | |
import ( | |
"fmt" | |
"io" | |
"os" | |
"os/exec" | |
"strconv" | |
) |
// Usage: | |
// $ node index.js | |
// | |
// Code to generate this. Should be modified to auto-generate tables, columns, etc. | |
const types = [ | |
'bigint', | |
'int8', | |
'bigserial', |
{ | |
"title": "Change caps_lock to command+control+option+shift or F19 if tapped", | |
"rules": [ | |
{ | |
"description": "Change caps_lock to command+control+option+shift or F19 if tapped", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "caps_lock", | |
"modifiers": { |
{ | |
"title": "Change caps_lock to Esc and Control", | |
"rules": [ | |
{ | |
"description": "Change caps_lock to command+control+option+shift or F19 if tapped", | |
"manipulators": [ | |
{ | |
"from": { | |
"key_code": "caps_lock", | |
"modifiers": { |
This file is based on: https://raw.githubusercontent.com/alexellis/inlets/master/hack/inlets.service
I've had to remove the quotes around {AUTHTOKEN}
to avoid them showing up in the token.
class Car { | |
constructor() { | |
return Promise.resolve(this.new()) | |
} | |
async new() { | |
await this.sleep(1000) | |
this._wheels = 4 | |
return this | |
} |