- macOS/iOS
- Propritary
- https://reederapp.com/
- macOS/iOS
- FOSS
{ | |
"$schema" : "https://aka.ms/winget-packages.schema.2.0.json", | |
"CreationDate" : "2023-09-18T19:34:01.333-00:00", | |
"Sources" : | |
[ | |
{ | |
"Packages" : | |
[ | |
{ "PackageIdentifier" : "AgileBits.1Password" }, | |
{ "PackageIdentifier" : "7zip.7zip" }, |
# Read this for more info: https://medium.com/@tahteche/how-git-treats-changes-in-file-permissions-f71874ca239d | |
chmod -R ugo+rw repo-folder | |
chmod -R a+X repo-folder | |
cd repo-folder | |
git config --local core.fileMode false |
@media (prefers-color-scheme: dark) { | |
.cc-alert { | |
color: var(--color-scale-black); | |
} | |
.cc-issue-description { | |
color: var(--color-scale-black); | |
} | |
.cc-ext .cc-issue .ellipsis-expander { |
#! /usr/bin/env ruby | |
# Setup: | |
# Put this script in your path and make it executable. | |
# gem install nokogiri | |
# | |
# Usage: | |
# $ routes | grep index | |
require 'rubygems' |
Put links inside codeblocks on GitHub:
<pre>
import { assign, map } from '<a href="https://www.npmjs.com/package/lodash" title="Lodash on npm">lodash</a>';
<a href="https://lodash.com/docs#assign" title="assign documentation">assign</a>({ 'a': 1 }, { 'b': 2 }, { 'c': 3 });
// → { 'a': 1, 'b': 2, 'c': 3 }
<a href="https://lodash.com/docs#map" title="map documentation">map</a>([1, 2, 3], function(n) { return n * 3; });
// → [3, 6, 9]
// ==UserScript== | |
// @name Copy link to TP issue | |
// @namespace Violentmonkey Scripts | |
// @match https://callrail.tpondemand.com/* | |
// @grant GM_setClipboard | |
// @grant GM_registerMenuCommand | |
// @include https://callrail.tpondemand.com/* | |
// @require https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js | |
// ==/UserScript== |
#!/usr/bin/env ruby | |
lookup = { | |
a: 'a', b: 'b', c: 'c', d: 'd', e: 'e', f: 'f', g: 'g', h: 'h', | |
i: 'i', j: 'j', k: 'k', l: 'l', m: 'm', n: 'n', o: 'o', p: 'p', | |
q: 'q', r: 'r', s: 's', t: 't', u: 'u', v: 'v', w: 'w', x: 'x', | |
y: 'y', z: 'z', A: 'A', B: 'B', C: 'C', D: 'D', E: 'E', F: 'F', | |
G: 'G', H: 'H', I: 'I', J: 'J', K: 'K', L: 'L', M: 'M', N: 'N', | |
O: 'O', P: 'P', Q: 'Q', R: 'R', S: 'S', T: 'T', U: 'U', V: 'V', | |
W: 'W', X: 'X', Y: 'Y', Z: 'Z' |
-- Tap caps lock for esc, use caps lock with another key for ctrl. | |
send_escape = false | |
last_mods = {} | |
control_key_handler = function() | |
send_escape = false | |
end | |
control_key_timer = hs.timer.delayed.new(0.15, control_key_handler) |
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
$script = <<SCRIPT | |
sudo apt-get -y update | |
sudo apt-get -y install curl git-core python-software-properties ruby-dev libpq-dev build-essential nginx libsqlite3-0 libsqlite3-dev libxml2 libxml2-dev libxslt1-dev nodejs postgresql postgresql-contrib imagemagick autoconf bison libssl-dev libyaml-dev libreadline6-dev zlib1g-dev libncurses5-dev libffi-dev libgdbm3 libgdbm-dev | |
git clone https://github.com/sstephenson/rbenv.git ~/.rbenv | |
echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bashrc | |
echo 'eval "$(rbenv init -)"' >> ~/.bashrc |