βοΈ Opened issue #198 in getstackhead/stackhead βοΈ Opened issue #197 in getstackhead/stackhead βοΈ Opened issue #196 in getstackhead/stackhead π£ Commented on #195 in getstackhead/stackhead π£ Commented on #192 in getstackhead/stackhead
This file contains hidden or 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
// https://archiveofourown.org/media/Anime%20*a*%20Manga/fandoms | |
const series = []; | |
for(const a of document.querySelectorAll('.fandom .tag')) { | |
let m = /(.*) \((\d+)\)/.exec(a.parentNode.innerText); | |
if (m !== null) { | |
series.push({title: m[1], count: m[2]}) | |
} | |
} | |
series.sort(function(a, b) { | |
return a.count - b.count; |
This file contains hidden or 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
name: Triggered by PR approval | |
on: | |
pull_request_review: | |
types: [submitted] | |
# execute integration test when maintainer approves pull request ("success" signal of manual workflow) | |
integrationtest: | |
name: Run integration test | |
runs-on: ubuntu-latest | |
if: github.event.pull_request.draft == false | |
steps: |
This file contains hidden or 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
π Morning 84 commits βββββββββββββββββββββ 6.2% | |
π Daytime 551 commits βββββββββββββββββββββ 40.6% | |
π Evening 516 commits βββββββββββββββββββββ 38.0% | |
π Night 207 commits βββββββββββββββββββββ 15.2% |
This file contains hidden or 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 Twitch Reloader | |
// @namespace https://github.com/saitho | |
// @version 0.1 | |
// @description Reload twitch on 2000 error | |
// @author You | |
// @match https://www.twitch.tv/* | |
// @grant none | |
// ==/UserScript== |
This file contains hidden or 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 SteamUser = require('steam-user'); | |
const SteamTotp = require('steam-totp'); | |
const SteamStore = require('steamstore'); | |
const client = new SteamUser(); | |
const steamstore = new SteamStore(); | |
client.logOn({ | |
"accountName": "###username###", | |
"password": "###password###", |
This file contains hidden or 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
<?php | |
/** | |
* A helper class for Codeception (http://codeception.com/) that allows automated accessility checks | |
* (WCAG 2.0, Section508) using the pa11y (http://pa11y.org/) command line tool | |
* during acceptance testing. | |
* It uses local binaries and can therefore be run offline. | |
* | |
* | |
* Requirements: |