// | |
// Regular Expression for URL validation | |
// | |
// Author: Diego Perini | |
// Created: 2010/12/05 | |
// Updated: 2018/09/12 | |
// License: MIT | |
// | |
// Copyright (c) 2010-2018 Diego Perini (http://www.iport.it) | |
// |
# Add the following 'help' target to your Makefile | |
# And add help text after each target name starting with '\#\#' | |
help: ## Show this help. | |
@fgrep -h "##" $(MAKEFILE_LIST) | fgrep -v fgrep | sed -e 's/\\$$//' | sed -e 's/##//' | |
# Everything below is an example | |
target00: ## This message will show up when typing 'make help' | |
@echo does nothing |
่่ ๏ผ ้ใ้ด๏ผใถใใใ๏ผใใย @bluecrow2
ใใใฏ็ตๅๆตฉใใใฎ้็จใใใฆใใ YukiWiki ใซๅฝๆ Coffee ๆง (้ใ้ด๏ผใถใใใ๏ผใใ๏ผใใใใใฆใใๆ็ซ ใงใใ ใใ 2018 ๅนด 3 ๆ 7 ๆฅใซ YukiWiki ใ้็จๅๆญขใใใใๆถใใฆใใพใใพใใใใใฎ่จไบใฎใใใฏใขใใใงใใ
ไปใฏ 404 ใงใใใใใจใใจใฎ่จไบใฎ URL ใฏ http://www.hyuki.com/yukiwiki/wiki.cgi?%A5%C7%A5%B9%A5%DE%A1%BC%A5%C1%A4%AC%B5%AF%A4%AD%A4%EB%CD%FD%CD%B3 ใซใชใใพใใ
ๆใ่ชๅใใจใฆใๆ้ใๅใใๆ็ซ ใชใฎใงใใใฎใพใพ่ชญใใชใใชใใฎใฏใจใฆใใใฃใใใชใใจๆใใใใใฏใขใใใจใใฆๅ ฌ้ใใฆใใพใใ
It's now here, in The Programmer's Compendium. The content is the same as before, but being part of the compendium means that it's actively maintained.
{ | |
/* ~/Library/KeyBindings/DefaultKeyBinding.dict | |
See https://gist.github.com/zsimic/1367779, prefix cheatsheet: | |
Char Short Key | |
$ S- Shift โง | |
^ C- CTRL โ | |
~ O- Option โฅ (โ Win key position on PC) | |
@ M- Command โ (Alt position on PC) | |
# Numeric Keypad |
#!/bin/bash | |
set -e | |
CONTENTS=$(tesseract -c language_model_penalty_non_dict_word=0.8 --tessdata-dir /usr/local/share/tessdata/ "$1" stdout -l eng | xml esc) | |
hex=$((cat <<EOF | |
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> |
#!/bin/bash | |
set -e | |
############################################################################### | |
# This script tries to repair a Time Machine *network* backup (i.e. an APF | |
# share containing a sparsebundle) that is shared over a network using e.g. an | |
# Apple TimeCapsule, a NAS, Raspberry PI, ... | |
# The script must be run on the computer that created the backup | |
# |