I hereby claim:
- I am nk9 on github.
- I am k9 (https://keybase.io/k9) on keybase.
- I have a public key ASDidn08tGKp2M4ugDD0cE1gl-8vD44qx5oRz9jJrjUPpgo
To claim this, I am signing this object:
| #!/bin/sh | |
| set -e | |
| cd "$(git rev-parse --show-cdup)" | |
| # Find all the objects that are in packs: | |
| if [ "$(ls -A .git/objects/pack)" ] | |
| then |
| #!/usr/bin/python | |
| # -*- coding: utf-8 -*- | |
| # Python script to find the largest files in a git repository. | |
| # The general method is based on the script in this blog post: | |
| # http://stubbisms.wordpress.com/2009/07/10/git-script-to-show-largest-pack-objects-and-trim-your-waist-line/ | |
| # | |
| # The above script worked for me, but was very slow on my 11GB repository. This version has a bunch | |
| # of changes to speed things up to a more reasonable time. It takes less than a minute on repos with 250K objects. | |
| # |
| { | |
| "CFNetwork/1.1": "10.2", | |
| "CFNetwork/1.2.1": "10.3.2", | |
| "CFNetwork/1.2.2": "10.3.9", | |
| "CFNetwork/1.2.6": "10.3.9", | |
| "CFNetwork/128": "10.4.0 (PPC)", | |
| "CFNetwork/128": "10.4.1 (PPC)", | |
| "CFNetwork/128.2": "10.4.2 (PPC)", | |
| "CFNetwork/129.10": "10.4.4", | |
| "CFNetwork/129.10": "10.4.5", |
| #!/usr/local/bin/python | |
| # -*- coding: utf-8 -*- | |
| import requests | |
| from bs4 import BeautifulSoup | |
| urlFormat = "http://www.ada.auckland.ac.nz/ada1%d.htm" | |
| urls = [urlFormat % x for x in range(1, 40)] # Only chapteres 1-39 are annotated | |
| for url in urls: | |
| response = requests.get(url) |
I hereby claim:
To claim this, I am signing this object:
| <html> | |
| <head> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.5.1/leaflet-src.js"></script> | |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.5.1/leaflet.css"/> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet.draw/1.0.4/leaflet.draw-src.js"></script> | |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet.draw/1.0.4/leaflet.draw.css"/> | |
| </head> | |
| <body> | |
| <div id="map" style="width: 500; height: 500"></div> |
| from flask_security.decorators import anonymous_user_required | |
| from flask_security.utils import encrypt_password | |
| from flask_security.confirmable import send_confirmation_instructions | |
| @bp.route('/register/', methods=['GET', 'POST']) | |
| @anonymous_user_required | |
| def register(): | |
| form = ExtendedRegistrationForm(request.form) | |
| if form.validate_on_submit(): |
| setopt prompt_subst | |
| PROMPT="%(?:%{$fg_bold[green]%}β :%{$fg_bold[red]%}β )%{$reset_color%}" | |
| PROMPT+=' %(!.%{$fg[red]%}.%{$fg[green]%})$(shrink_path -l -t)%{$fg_bold[blue]%}$(git_prompt_info)%{$reset_color%} ' | |
| RPROMPT='%*' | |
| ZSH_THEME_GIT_PROMPT_PREFIX=" (" | |
| ZSH_THEME_GIT_PROMPT_SUFFIX=")" | |
| ZSH_THEME_GIT_PROMPT_DIRTY=" β" | |
| ZSH_THEME_GIT_PROMPT_CLEAN=" β" |
| /* | |
| * Copyright (c) 2013 Micha Mazaheri | |
| * Released under the MIT License: http://opensource.org/licenses/MIT | |
| * | |
| * Updated to work on Xcode 11 in 2020 by Nick Kocharhook | |
| */ | |
| #define LMWindowDEBUGResponders | |
| #ifdef LMWindowDEBUGResponders |
| // | |
| // KVLWindow.swift | |
| // KVLTest | |
| // | |
| // Created by Nick Kocharhook on 04/05/2021. | |
| // Based in part on LMWindow by Micha Mazaheri | |
| // | |
| // Released under the MIT License: http://opensource.org/licenses/MIT | |
| // | |
| // Copyright 2021 Nick Kocharhook |