Skip to content

Instantly share code, notes, and snippets.

View gitu's full-sized avatar
💭
I may be slow to respond.

Florian Schrag gitu

💭
I may be slow to respond.
View GitHub Profile
@gitu
gitu / autoblogger.ipynb
Created April 10, 2020 22:08
autoblogger - train gpt-2
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
"""
Exports Issues from a specified repository to a pivotal
"""
import requests
import json
def xstr(s):
return '' if s is None else s.encode('UTF-8')
GITHUB_TOKEN = ''
@gitu
gitu / get_java.sh
Created April 21, 2014 06:03
Heroku Manual Slug Upload
#!/usr/bin/env bash
# bin/compile <build-dir>
# fail fast
set -e
BIN_DIR=$(cd $(dirname $0); pwd) # absolute path
BUILD_DIR=$1