I hereby claim:
- I am chrisclark on github.
- I am cc (https://keybase.io/cc) on keybase.
- I have a public key whose fingerprint is B900 8F5C 1A2E 8F40 CA40 A73B 6F0E FF6B 2E05 93AD
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
// ==UserScript== | |
// @name GitHub Suppress Diffs | |
// @version 2013.10.29 | |
// @namespace FET | |
// @description Suppress style.css | |
// @include http*://github.com/* | |
// ==/UserScript== | |
// Files to suppress: | |
suppressFiles([ |
my_project/__init__.py
setup.py
python setup.py develop
python setup.py test
my_project/__init__.py
setup.py
python setup.py develop
python setup.py test
t | regular | high end | |
---|---|---|---|
1 | 0.631 | 0.869 | |
2 | 0.468 | 0.743 | |
3 | 0.382 | 0.653 | |
4 | 0.326 | 0.593 | |
5 | 0.289 | 0.551 | |
6 | 0.262 | 0.517 | |
7 | 0.241 | 0.491 | |
8 | 0.223 | 0.468 | |
9 | 0.207 | 0.445 |
run = 0; | |
actionFunction = function() { | |
if (run === 0) { | |
$('.comment_input_wrapper .body .options').after($('<button id="unsubscribe" class="origin btn">Unsubscribe</button>')); | |
$('#unsubscribe').click(function(){ | |
alert($('.sender').find('a').html()); | |
}); | |
(require 'org) | |
(require 'url) | |
(require 'htmlize) | |
(defvar s3paste-http-destination | |
"http://p.hagelb.org" | |
"Publicly-accessible (via HTTP) location for pasted files.") | |
(defvar s3paste-user-address | |
nil |
explorer/__init__.py
setup.py
git add .
git commit -m "Release 1.0.0"
import json, os, requests, openai | |
openai_api_key = os.getenv('OPENAI_API_KEY') | |
openai.api_key = openai_api_key | |
chunks_dir = "novel/chunks/" | |
edits_dir = "novel/edits/" | |
#helper function to process files in a directory | |
def process_directory(d, func): |
<script> | |
document.addEventListener('DOMContentLoaded', function () { | |
var path = window.location.pathname; | |
var pathParts = path.split('/'); | |
pathParts = pathParts.filter(function(part) { | |
return part !== ''; | |
}); | |
var modelId = pathParts[pathParts.length - 2]; | |
const generateTextButtons = document.querySelectorAll('.{{widget.btn_class}}'); | |
generateTextButtons.forEach(function (button) { |