Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
import aiohttp | |
import asyncio | |
import glob | |
import itertools | |
import logging | |
import os | |
import re | |
import sodapy | |
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
from fastText import load_model | |
import tempfile | |
class PickleableFastText(object): | |
def __init__(self, model): | |
self._wrapped_model = model | |
def __getattr__(self, key): | |
return getattr(self._wrapped_model, 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
// ==UserScript== | |
// @name Google Slides embedder | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description Shows an iframe in Google Slides presentation to fake embedding | |
// @author Remi Rampin | |
// @match https://docs.google.com/presentation/d/* | |
// @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw== | |
// @grant none | |
// ==/UserScript== |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
#!/bin/sh | |
set -eu | |
read_yaml(){ | |
python3 -c 'import json,yaml; print(json.dumps(yaml.safe_load(open("'"$1"'"))))' | |
} | |
# Delete mappings | |
curl -X DELETE http://127.0.0.1:9200/testsynonym || true |
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
#!/bin/sh | |
set -eu | |
if [ $# != 1 ] || [ ! -e "$1" ]; then | |
echo "Usage: $(basename "$0") <video.mkv>" >&2 | |
exit 2 | |
fi | |
logrun(){ |
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
asn1crypto==0.24.0 | |
autonbox==0.2.0 | |
- d3m [required: Any, installed: 2020.5.18] | |
- custom-inherit [required: >=2.2.0,<=2.2.2, installed: 2.2.2] | |
- dateparser [required: >=0.7.0,<=0.7.2, installed: 0.7.2] | |
- python-dateutil [required: Any, installed: 2.8.1] | |
- six [required: >=1.5, installed: 1.15.0] | |
- pytz [required: Any, installed: 2020.1] | |
- regex [required: Any, installed: 2020.6.8] | |
- tzlocal [required: Any, installed: 2.1] |