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
<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 |
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
// ==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 = {}; |
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
// ==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 = {}; |
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
import test from 'tape'; | |
import Koa from 'koa'; | |
import supertest from 'supertest'; | |
const app = new Koa(); | |
app.use(ctx => { | |
ctx.body = 'Hello World'; | |
}); |
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 test = require('tape'); | |
const koa = require('koa'); | |
const supertest = require('supertest'); | |
const app = koa(); | |
app.use(function *(){ | |
this.body = 'Hello World'; | |
}); |
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
# 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 |
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:
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
// ==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(){ |