- Pastebot
- GIF Brewery
- Slack
- Keynote/Pages/Numbers
- 1Password
- OmniFocus 3
- Airmail 3
- iA Writer
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
define( 'INDENT', ' ' ); | |
$files = shell_exec( | |
'git -C ' . escapeshellarg( __DIR__ ) . | |
' ls-tree --name-only -r HEAD' | |
); | |
if ( !$files ) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* eslint-env node */ | |
'use strict'; | |
import cp from 'node:child_process'; | |
import fs from 'node:fs'; | |
import path from 'node:path'; | |
const CHANGELOG_FILE = './History.md'; | |
const MAILMAP_FILE = '.mailmap'; | |
const FIRST_TODO = '2.23.1 / '; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env php | |
<?php | |
require_once __DIR__ . '/lib/Less/Autoloader.php'; | |
Less_Autoloader::register(); | |
$opt = [ | |
'cache_dir' => '/tmp/lessphp-example' | |
]; | |
$input = __DIR__ . '/test/Fixtures/bootstrap-3.2/less/bootstrap.less'; |
OlderNewer