Skip to content

Instantly share code, notes, and snippets.

version: "3"
services:
adminer:
image: adminer
restart: always
ports:
- 8080:8080
grafana:
@skyblue3350
skyblue3350 / userstylesheet.css
Created February 3, 2018 05:51
Tweetdeckを前のデザインっぽく戻すやつ
/* ツイートの背景色 */
body, .js-stream-item-content, .scroll-conversation, .js-column-scroller{
background-color: #232426 !important;
}
/* コラムの隙間の背景色 */
.app-columns-container {
background-color: #181818 !important;
}
@skyblue3350
skyblue3350 / voiceroid.py
Last active August 12, 2018 20:10
PythonからVoiceroidを動かすテスト
# -*- encoding: utf-8 -*-
import win32gui
import win32con
import time
class VoiceRoidError(Exception):
def __init__(self, reason):
self.reason = reason