I hereby claim:
- I am yamalight on github.
- I am yamalight (https://keybase.io/yamalight) on keybase.
- I have a public key whose fingerprint is 5A30 3CDA 4413 5E85 191E 5460 3080 08BD 11E0 008F
To claim this, I am signing this object:
// ==UserScript== | |
// @name Steam Recommended By Curators Tooltip | |
// @namespace http://steam.recommended.tooltips.enhancement/ | |
// @version 1.0 | |
// @description Adds quotes from non-main curators into the tooltip for them. | |
// @include http://store.steampowered.com/* | |
// @copyright 2013+, Tim Ermilov <[email protected]> | |
// ==/UserScript== | |
(function(){ |
I hereby claim:
To claim this, I am signing this object:
# host name of your docker server | |
HOST=host.net | |
# ip of your docker server | |
IP=0.0.0.0 | |
# days of validity for cert | |
DAYS=365 | |
default: | |
openssl genrsa -aes256 -out ca-key.pem 4096 | |
openssl req -new -x509 -days ${DAYS} -key ca-key.pem -sha256 -out ca.pem |
const test = require('tape'); | |
const koa = require('koa'); | |
const supertest = require('supertest'); | |
const app = koa(); | |
app.use(function *(){ | |
this.body = 'Hello World'; | |
}); |
import test from 'tape'; | |
import Koa from 'koa'; | |
import supertest from 'supertest'; | |
const app = new Koa(); | |
app.use(ctx => { | |
ctx.body = 'Hello World'; | |
}); |
// ==UserScript== | |
// @name Flowreader Colorful Listview | |
// @namespace http://flowreader.colorful.list.view | |
// @description Colorizes items headers based on their source | |
// @include http*://flowreader.com/* | |
// @version 0.2.0 | |
// @grant GM_addStyle | |
// ==/UserScript== | |
const colors = {}; |
// ==UserScript== | |
// @name InoReader Colorful Listview | |
// @namespace http://inoreader.colorful.list.view | |
// @description Colorizes items headers based on their source | |
// @include http*://*.inoreader.com/* | |
// @version 0.4.0 | |
// @grant GM_addStyle | |
// ==/UserScript== | |
const colors = {}; |
<artifacts_info> | |
The assistant can create and reference artifacts during conversations. Artifacts are for substantial, self-contained content that users might modify or reuse, displayed in a separate UI window for clarity. | |
# Good artifacts are... | |
- Substantial content (>15 lines) | |
- Content that the user is likely to modify, iterate on, or take ownership of | |
- Self-contained, complex content that can be understood on its own, without context from the conversation | |
- Content intended for eventual use outside the conversation (e.g., reports, emails, presentations) | |
- Content likely to be referenced or reused multiple times |