Skip to content

Instantly share code, notes, and snippets.

View nk9's full-sized avatar
🏗️
Building a better world, one bit at a time

Nick Kocharhook nk9

🏗️
Building a better world, one bit at a time
  • London, UK
View GitHub Profile
@nk9
nk9 / get_dropbox_url.py
Last active April 19, 2023 12:32
Python script to get the URL of a file in the Dropbox folder
#
# Don't use this version, it is out of date.
# See the newest version in the GitHub repository:
#
# https://github.com/nk9/get_dropbox_link
#
@nk9
nk9 / github_user_script.js
Created December 29, 2022 19:30
User script for scraping GitHub results as URLs
// ==UserScript==
// @name Copy GitHub results
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://github.com/search*
// @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant none
// ==/UserScript==
[tool.isort]
profile = "black"
multi_line_output = 3
known_first_party = ["tests"]
skip_glob = ["migrations/*"]
[tool.black]
extend-exclude = "^/migrations/"
line-length = 120