Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View yamalight's full-sized avatar

Tim Ermilov yamalight

View GitHub Profile
@yamalight
yamalight / inoreader-colorful-list-view.user.js
Last active April 10, 2019 20:38
InoReader Colorful Listview
// ==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 = {};
@yamalight
yamalight / flowread-colorful-listview.user.js
Last active January 1, 2018 16:24
Flowreader Colorful Listview
// ==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 = {};
@yamalight
yamalight / test.js
Created October 3, 2016 19:29
Koa@2 and supertest
import test from 'tape';
import Koa from 'koa';
import supertest from 'supertest';
const app = new Koa();
app.use(ctx => {
ctx.body = 'Hello World';
});
@yamalight
yamalight / test.js
Created October 3, 2016 18:05
Koa and supertest example
const test = require('tape');
const koa = require('koa');
const supertest = require('supertest');
const app = koa();
app.use(function *(){
this.body = 'Hello World';
});
@yamalight
yamalight / README.md
Last active January 13, 2023 11:18
Feedly Colorful Listview
@yamalight
yamalight / Makefile
Last active June 18, 2021 17:35
Generate docker TLS certs for secure remote access
# 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
@yamalight
yamalight / keybase.md
Created October 28, 2014 16:15
keybase.md

Keybase proof

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:

@yamalight
yamalight / steamcurator_tooltip.user.js
Last active August 29, 2015 14:06
Tooltip for Steam Recommended By Curators miniatures
// ==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 <yamalight@gmail.com>
// ==/UserScript==
(function(){