Skip to content

Instantly share code, notes, and snippets.

View hotwatermorning's full-sized avatar

hotwatermorning hotwatermorning

View GitHub Profile
@hotwatermorning
hotwatermorning / math_training_for_adults.md
Last active April 1, 2018 06:53
中学入試レベル 大人の算数トレーニング 解答

問題16

△AOC = △BOC + △BCM + △BAM
△AOC * b/a = △BOC
△AOC * d/c = △AOD
           = △BOC + △BCM + △DCM + △BAM + △DAM
           = △BOC + 2△BCM + 2△BAM (△BCM = △DCM, △BAM = △DAM)
△AOC * (b/a + d/c)
 = 2△BOC + 2△BCM + 2BAM
@hotwatermorning
hotwatermorning / permutation_range.cpp
Created January 23, 2018 09:01
permutation_range
#include <cassert>
#include <utility>
#include <tuple>
#include <functional>
#include <iostream>
#include <vector>
#include <array>
#include <list>
#include <memory>
@hotwatermorning
hotwatermorning / restart_blutooth_service.txt
Created January 18, 2018 00:49
bluetoothサービスの再起動
sudo pkill blued
@hotwatermorning
hotwatermorning / input_password.sh
Created January 4, 2018 10:04
input_password.sh
# $1 : description (ex, MYSQL DB Name)
input_password() {
tmp1=""
while [ "$tmp1" = "" ]; do
read -sp "Enter $1: " tmp1
tty -s && echo >&2
if [ -z tmp1 ]; then
continue
fi
@hotwatermorning
hotwatermorning / vim_replace_selected_text.txt
Created January 3, 2018 03:38
vim 選択した文字列を置換対象の文字列にする
http://d.hatena.ne.jp/ykmbpp/20080527/1211850475
yでヤンク
:s/CTRL-Rに続いて"/<置換文字列>/gc
@hotwatermorning
hotwatermorning / initializer_list.md
Created November 15, 2017 08:07
initializer_listもコンテナも受け付けられるようにする
@hotwatermorning
hotwatermorning / gist:287a79a2bc33b4e2fdf09cb6adc2f7d7
Created November 14, 2017 11:19
pcregrepでunicode文字列を検索する
https://insideflag.blogspot.jp/2013/10/grep-punicode.html
```
UTF-8モードについて調べるためman pcreしてみると、non-UTF-8 modeではUnicodeプロパティのテストは255以下のコードポイントに制限されると書いてあったので、GNU grepでもなんとかしてUTF-8モードにする必要がある。さらにドキュメントを読むと、パターンの先頭に(*UTF8)があればUTF-8モードになるとのことなので試してみる。
$ echo "あ" | ggrep -P "(*UTF8)\p{Hiragana}"
できた。だけど英数記号混じりで毎回7文字もタイプするのはだるい。
```
import("stdfaust.lib");
maxdel = 8192;
// value: 0 .. 1
curve_eq_power(value) = cos(ma.PI * (1 - (value * 2 - 1)) / 4.0);
dry_wet = hslider("Dry/Wet", 0.5, 0, 1, 0.01);
wet_gain = curve_eq_power(dry_wet);
dry_gain = curve_eq_power(1 - dry_wet);
#pragma once
#if defined(_MSC_VER)
#include <array>
#include <string>
#include <windows.h>
//! (NFCであるような)文字列をApple-NFDに変換する
/*! カタカナと濁点/半濁点などがあらかじめ一文字に合成された「合成済み文字」を、それぞれが分解された「結合文字列」に分解する
@hotwatermorning
hotwatermorning / enable_output_to_visual_studio.hpp
Last active June 14, 2017 03:17
enable_output_to_visual_studio
#if defined(_MSC_VER)
//! @file
/*! std::cout, std::wcerrなどのストリームへの出力を、DebugOutputString()に流して、
* Visual Studioの出力ウィンドウに出力できるようにする。
* (DebugOutputString()への出力はリリースモードでも有効であることに注意すること)
* 参考: http://fa11enprince.hatenablog.com/entry/2015/07/04/192645
* 参考: http://blog.livedoor.jp/tek_nishi/archives/5004322.html
*/