This defintion is from work by @eioo on this pull request Kequc/knex-stringcase#14 which the maintainer decided to decline only after making the contributor go through several revisions. I have no desire to maintain a @types package, but please feel free to copy and use as needed.
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
.closed.octicon.octicon-issue-closed { | |
color: var(--color-danger-fg) !important; | |
} | |
.gh-header-meta .State--merged, .State--merged[title="Status: Closed"] { | |
background-color: var(--color-danger-fg) !important; | |
} | |
.TimelineItem-badge.color-bg-done-emphasis { | |
background-color: var(--color-danger-fg) !important; |
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
#!/usr/bin/env ruby | |
require 'rubygems' | |
require 'twitter' | |
require 'json' | |
require 'faraday' | |
# things you must configure | |
PATH_TO_DROPBOX = "/PATH_TO_YOUR_DROPBOX/tweets/" # you must create this folder | |
TWITTER_USER = "YOUR_USERNAME" |
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
/* CSS intended to be used with the Chrome Stylus extension that reverts Github to a pre-dark-header appearance */ | |
.watch_started .body a, | |
.fork .body a { color: #0366d6 !important; font-weight: normal !important; } | |
.Header { | |
border-bottom: 1px solid #E5E5E5 !important; | |
background-color: #F5F5F5 !important; | |
} |
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 defer = require('p-defer'); | |
const getPort = require('get-port'); | |
const Koa = require('koa'); | |
const router = require('koa-route'); | |
const WebSocket = require('ws'); | |
const socketServer = new WebSocket.Server({ noServer: true }); | |
/* eslint-disable no-param-reassign */ | |
const middleware = async (ctx, next) => { |
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
require "rubygems" | |
require "twitter" | |
require "json" | |
# things you must configure | |
TWITTER_USER = "your_username" | |
MAX_AGE_IN_DAYS = 1 # anything older than this is deleted | |
# get these from dev.twitter.com | |
CONSUMER_KEY = "your_consumer_key" |
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
#!/usr/bin/env ruby | |
require "rubygems" | |
require "twitter" | |
require "json" | |
require "faraday" | |
# things you must configure | |
TWITTER_USER = "your_username" | |
# get these from dev.twitter.com |
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 webpack = require('webpack'); | |
const config = require('../fixtures/multi/webpack.config.js'); | |
delete config.serve; | |
const compiler = webpack(config); | |
compiler.compilers = [ | |
compiler.compilers.find((comp) => comp.name === 'server'), |
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 Gmail Count Red | |
// @namespace Violentmonkey Scripts | |
// @match *://mail.google.com/* | |
// @grant none | |
// ==/UserScript== | |
function fix (link) { | |
const href = link.getAttribute('href'); | |
link.setAttribute('href', href.replace('-b', '_2x')); |
NewerOlder