So far, most of this is from https://wiki.debian.org/CrossToolchains.
Add the Debian Cross-toolchains Repository
Create the file /etc/apt/sources.list.d/crosstools.list
with the following contents:
So far, most of this is from https://wiki.debian.org/CrossToolchains.
Create the file /etc/apt/sources.list.d/crosstools.list
with the following contents:
In some of the mentioned films, the time travel aspect may be a surprise twist and or simply not obvious from the outset, so just mentioning their titles in this context may merit a spoiler warning.
This is a list of time travel movies that don’t completely suck — more specifically movies where the time travel aspect is more than a poorly thought out plot device and the time travel actually makes some kind of logical sense even if it might not reflect our best current understanding of the universe. As a general rule, I’m excluding films that contain only one instance of time travel or films where time travel has no consequences1.
/* | |
Copyright 2010, Google Inc. | |
All rights reserved. | |
Redistribution and use in source and binary forms, with or without | |
modification, are permitted provided that the following conditions are | |
met: | |
* Redistributions of source code must retain the above copyright |
// ==UserScript== | |
// @name torrentz2.eu magnet links | |
// @author [email protected] | |
// @namespace [email protected] | |
// @version 0.3 | |
// @description adds magnet links to torrentz2.eu | |
// @match *://torrentz.eu/* | |
// @match *://torrentz.me/* | |
// @match *://torrentz.ch/* | |
// @match *://torrentz.in/* |
source: https://discussions.apple.com/thread/1485146
To run another script file:
run script "HD:path:to:file.scpt"
/* This defines styles and classes used in the book */ | |
body { margin: 0; text-align: justify; font-size: medium; font-family: Athelas, Georgia, serif; } | |
code { font-family: monospace; } | |
h1 { text-align: left; } | |
h2 { text-align: left; } | |
h3 { text-align: left; } | |
h4 { text-align: left; } | |
h5 { text-align: left; } | |
h6 { text-align: left; } | |
h1.title { } |
ANT000000 | Antiques & Collectibles / General | |
---|---|---|
ANT001000 | Antiques & Collectibles / Americana | |
ANT002000 | Antiques & Collectibles / Art | |
ANT003000 | Antiques & Collectibles / Autographs | |
ANT005000 | Antiques & Collectibles / Books | |
ANT006000 | Antiques & Collectibles / Bottles | |
ANT007000 | Antiques & Collectibles / Buttons & Pins | |
ANT008000 | Antiques & Collectibles / Care & Restoration | |
ANT009000 | Antiques & Collectibles / Transportation | |
ANT010000 | Antiques & Collectibles / Clocks & Watches |
(function () { | |
//------------------------------------------------------------------------------------------------------------------------- | |
// To use this script, go the the API page for your Airtable Base (something like https://airtable.com/<base_id>/api/docs). | |
// Then, open the javascript console (F12) on Chrome. Then copy this script and paste it into the console (and hit Enter). | |
// The schema serialized as JSON should now be in your clipboard. | |
// | |
// Alternatively, you can use the bookmarklet below. | |
//------------------------------------------------------------------------------------------------------------------------- | |
// ------------------------------------------------------------------------------------------------ |
#!/usr/bin/env -S jq -Rnf | |
def csvarray:split(",")|map(fromjson); | |
def objectify($ks): [$ks,(.|csvarray)]|[transpose[] as [$key,$value]|{$key,$value}]|from_entries; | |
(input|csvarray) as $keys|[inputs|objectify($keys)|.csv_filename=input_filename] | |
| reduce .[] as $o ({}; .[$o.csv_filename]+=[($o|del(.csv_filename))]) | |
| if length == 1 and has("<stdin>") then ."<stdin>" else . end |