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
wordlist-*.txt |
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 python3 | |
# -*- coding: utf-8 -*- | |
"""A vanilla py-script to download all Pocket.com data via API. | |
Read before: | |
- https://blog.getpocket.com/2012/11/introducing-the-new-pocket-api-for-developers-and-publishers/ | |
- https://getpocket.com/developer/docs/authentication | |
""" | |
import json |
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
# -*- coding: utf-8 -*- | |
"""Update script for AutoDNS / InternetX. | |
Requires: | |
- https://pypi.org/project/requests/ | |
- https://pypi.org/project/click/ | |
""" | |
import logging | |
from re import match |
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
/* | |
A COMPACT KIOSK-LIKE THEME FOR JIRA KANBAN BOARD | |
@BastiTee | |
URL-FILTERING | |
------------- | |
- Use this regex in stylus/browser: .*rapidView=42[^v]* | |
- Make sure to change the '42' to your board's number | |
*/ |
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
package com.acme.jvm | |
import java.util.stream.Stream | |
typealias Board = List<List<Boolean>> | |
fun step(board: Board) = board.mapIndexed { rowIdx, row -> | |
row.mapIndexed { colIdx, cellAlive -> | |
neighboursAlive(board, rowIdx, colIdx) in if (cellAlive) 2..3 else 3..3 | |
} |