Skip to content

Instantly share code, notes, and snippets.

img[data-stringify-emoji*=parrot], img[data-stringify-emoji*=ultra], img[data-stringify-emoji*=fast], img[data-stringify-emoji*=yuma] {
filter: grayscale(1) blur(10px);
}
#! /bin/bash
# どうせjsonっぽいものにしか使わないから有限長でしょ。
STDIN=$(cat)
echo "${STDIN}" | jq "$@" > /dev/null 2>&1
if [ $? -eq 0 ]; then
# 前段で出力をバッファしたりすると、色とかが消えちゃうのでもう一回実行する。
echo "${STDIN}" | jq "$@"
#! /bin/bash -xeu
BUCKET='nana-camera'
: ${SLACK_WH:?'define SLACK_WH'}
report() {
local MSG=${1:-'コケた'}
curl -X POST --data-urlencode "payload={\"text\": \"${MSG}\"}" ${SLACK_WH}
}
@nna774
nna774 / report.rb
Created March 2, 2019 18:10
miterukun
#! /usr/bin/env ruby
require 'json'
require 'shellwords'
require 'net/https'
require 'uri'
MAHIRO = URI.parse "~~"
MORI = URI.parse "~~"
@nna774
nna774 / vimrc
Last active May 24, 2020 06:23
syntax enable
set expandtab
set tabstop=2
set shiftwidth=2
set softtabstop=2
set autoindent
set smartindent
set number
@nna774
nna774 / otomemaru.txt
Last active October 23, 2018 13:21
yuniちゃんのヘッダ
1100101010000110001101100010111010100110001001101111101011111010101011110110000111000100000010011110000011000001000100001001111011011001101001001000001011000110010100000110001001010011000001011110000001101001000101001101111001010110011100010111011011010100
#include <algorithm>
#include <memory>
#include "deflate.h"
#define MINIZ_NO_ZLIB_COMPATIBLE_NAMES
#include "miniz.c"
// using std::begin;
// using std::end;
@nna774
nna774 / qif.gs
Last active July 16, 2018 13:07
かけいぼgoogle app script
function date2str(date, sep) {
function pad(number) {
return number < 10 ? "0" + number : number.toString();
}
return date.getYear() + sep + pad(date.getMonth()+1) + sep + pad(date.getDate());
}
function toQif(date, desc, debit, credit, amount) {
return [
"!Clear:AutoSwitch",
#! /bin/bash -e
if [ $# -ne 2 ]; then
CMD=`basename $0`
echo "$CMD A.jpg B.png" 1>&2
exit 1
fi
TMP=`mktemp --suffix=.png`
@nna774
nna774 / get_tenki.sh
Last active October 31, 2017 10:06
天気予報を保存します。
#! /bin/bash -xe
BASE="/home/nona7/codes/tenki"
DATE=`date +'%Y/%m/%d'`
JIKKYO="${BASE}/data/${DATE}-jikkyo12.txt"
TSUHO="${BASE}/data/${DATE}-tsuho12.txt"
mkdir -p "${BASE}/data/`date +'%Y/%m'`"
wget http://www.data.jma.go.jp/fcd/yoho/gyogyou/jikkyo12.txt -O "${JIKKYO}"