It's pretty simple. Example usage:
> python3 wordle.py
banal
import fs from "fs"; | |
import url from "url"; | |
import { getCSSLanguageService } from "vscode-css-languageservice"; | |
import { TextDocument } from "vscode-languageserver-textdocument"; | |
/** Human-readable names for the potential diagnostic severities returned. */ | |
const severities = { 1: "ERR", 2: "WARN", 3: "INFO", 4: "HINT" }; | |
/** Format a position in a given file. */ |
It's pretty simple. Example usage:
> python3 wordle.py
banal
tell application "Finder" to eject (every disk whose ejectable is true and local volume is true and free space is not equal to 0) |
// | |
// CertificateSigningRequest.h | |
// Cloak | |
// | |
// Created by Dave Peck on 10/31/16. | |
// Copyright © 2016 Bourgeois Bits LLC. All rights reserved. | |
// Licensed under the MIT license | |
// | |
#import <Foundation/Foundation.h> |
I got hit by the weird group reassignment when I upgraded to Mavericks. In my case the group was macports
(!). I’ve seen one report from a user who got cloakproxy
after the 10.11 upgrade, so apparently the bug is still there.
For some reason the OS X upgrader sometimes picks a group and changes the PrimaryGroupID
to 20
. Here’s the confirm:
dscl . -read Groups/cloakproxy
dscl . -read Groups/staff
And the fix:
It's easy:
iOS-autotools
by @szanni from https://github.com/szanni/ios-autotoolslibarchive 3
from http://www.libarchive.org/cd
into the libarchive
code directoryexport ARCHS="armv7 armv7s arm64"
(or suitable for your needs and your shell of choice)autoframework ArchiveLib libarchive.a
and wait for everything to build!# Levenshtein distance with the ability to reward or punish | |
# longer contiguous matching runs (set contiguousBonus < 1.0 for rewards) | |
stringDistance = (s, t, deleteCost=1, insertCost=1, substitutionCost=1, contiguousBonus=1.0) -> | |
sLength = s.length | |
tLength = t.length | |
d = [] | |
for i in [0..sLength] | |
d[i] = [{score: i, contiguous: 0}] |
def interleave(iterables, cmp=None, key=None, reverse=False): | |
""" | |
Given a collection of iterables, walk through them in | |
parallel, at each step yielding the current value | |
that comes first in the sort order, and advancing | |
that single iterator. | |
If each iterable is already sorted, this will produce | |
a total ordering. If not, it produces a 'greedy' ordering | |
// | |
// BinaryDataScanner.swift | |
// | |
// Created by Dave Peck on 7/20/14. | |
// Copyright (c) 2014 Dave Peck. All rights reserved. | |
// | |
// Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: | |
// | |
// The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. | |
// |
Alien in base 16: 183C7EDBFF245AA5 | |
Alien in base 32: 1GF3URFVI8ML5 | |
Alien in base 36: D9NURFZQYYSL | |
Alien in morse, base 16: ['.----', '---..', '...--', '-.-.', '--...', '.', '-..', '-...', '..-.', '..-.', '..---', '....-', '.....', '.-', '.-', '.....'] | |
Alien in morse, base 32: ['.----', '--.', '..-.', '...--', '..-', '.-.', '..-.', '...-', '..', '---..', '--', '.-..', '.....'] | |
Alien in morse, base 36: ['-..', '----.', '-.', '..-', '.-.', '..-.', '--..', '--.-', '-.--', '-.--', '...', '.-..'] |