I hereby claim:
- I am mnewt on github.
- I am mnewt (https://keybase.io/mnewt) on keybase.
- I have a public key ASBr9rFhvh1zj6ZXu6Zvi7j0G4trGLu-ze6rKtNH8_HOfwo
To claim this, I am signing this object:
[Trace - 03:27:31 PM] Sending request 'textDocument/documentLink - (346)'. | |
Params: { | |
"textDocument": { | |
"uri": "file:///Users/mn/Dropbox/Matt/code/Finnland/Player.gd" | |
} | |
} | |
[Trace - 03:27:31 PM] Received response 'textDocument/documentLink - (346)' in 41ms. | |
Result: [] |
class Emacs < Formula | |
desc "GNU Emacs Native Compiled" | |
homepage "https://akrl.sdf.org/gccemacs.html" | |
head "git://git.sv.gnu.org/emacs.git", :branch => "feature/native-comp" | |
depends_on "autoconf" => :build | |
depends_on "pkg-config" => :build | |
depends_on "texinfo" => :build | |
depends_on "gcc" | |
depends_on "gnupg" |
// ==UserScript== | |
// @name Limetorrents Magnet Links | |
// @namespace mnewt | |
// @description Add magnet links to Limetorrents | |
// @include https://www.limetorrents.cc/* | |
// @include https://www.limetorrents.info/* | |
// @version 1.0 | |
// @grant GM_addStyle | |
// @inject-into auto | |
// ==/UserScript== |
// ==UserScript== | |
// @name Torrentz2 Magnet Links | |
// @namespace mnewt | |
// @description Add magnet links to Torrentz2 search results | |
// @include https://torrentz2.eu/* | |
// @include https://torrentz2.me/* | |
// @include https://torrentz2.is/* | |
// @include https://torrentzwealmisr.onion.ly/* | |
// @version 1.2 | |
// @grant GM_addStyle |
#!/usr/bin/env node | |
// Loosely based on https://stackoverflow.com/questions/36929209/read-ansi-escape-from-terminal | |
'use strict'; | |
var deasync = require('deasync'); | |
function asyncDSR(opts, callback) { | |
// opts is an optional object: | |
// { in: input } |
I hereby claim:
To claim this, I am signing this object:
(require '[clojure.data :refer [diff]]) | |
(def ^:no-doc fs (js/require "fs")) | |
(def ^:no-doc child-process (js/require "child_process")) | |
(def ^:no-doc os (js/require "os")) | |
(def ^:no-doc path (js/require "path")) | |
(def ignore-env-vars #{"_" "OLDPWD" "PWD" "SHELLOPTS" "SHLVL"}) | |
(defn mktemp |
#!/usr/bin/env bash | |
# Download a file iff URL's HTTP If-Modified-Since header is more recent than | |
# the local file timestamp | |
url="$1" | |
file="$2" | |
shift 2 | |
curl -z "$file" -Lo "$file" "$url" "$@" |
#!/bin/sh | |
# Download a github project's latest release | |
# $1: username/repo | |
# $2: regex to match download file | |
# example: ./gh-download-latest atom/atom gz | |
repo=$1 | |
regex=${2:-gz} | |
wget -qO- https://api.github.com/repos/$repo/releases/latest | \ |
#!/usr/bin/env php | |
<?php | |
require __DIR__.'/miniflux/app/common.php'; | |
use PicoDb\Database; | |
use Miniflux\Model\Item; | |
if (php_sapi_name() !== 'cli') { |