- Google 検索用 App Indexing — Google Developers
- Google、App Indexingアプリのインストールボタンをモバイル検索に表示、全ユーザーに対してランキング要因に | 海外SEO情報ブログ
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
#include <string> | |
#include <sstream> | |
#include <iostream> | |
#include <vector> | |
/** | |
* @brief 文字列を指定したデリミタで分割します。 | |
* @param str 分割元文字列 | |
* @param delimiter デリミタ | |
* @return 分割した文字列のベクタ |
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
#include <chrono> | |
#include <iostream> | |
#include <random> | |
#include <vector> | |
int main() | |
{ | |
std::vector<int> vec = {1, 1, 2, 3, 5, 8, 13}; | |
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
#include <algorithm> | |
#include <iostream> | |
#include <sstream> | |
#include <string> | |
/** | |
* @brief 渡した数値をカンマ区切りの数値文字列に変換します. | |
* @param num 数値 | |
* @param separate_digit 区切り桁数(デフォルト3) | |
* @return 分割した文字列のベクタ |
- OS X 10.11.6
- ImageMagick 6.9.5-4 Q16 x86_64 2016-07-30 http://www.imagemagick.org
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
function calc { | |
[ $# -ge 1 ] && echo "scale=5; $1" | bc | |
} |
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 python | |
# coding: utf-8 | |
import os | |
import sys | |
from chardet.universaldetector import UniversalDetector | |
def detect_encoding(file_path): | |
detector = UniversalDetector() | |
detector.reset() |
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
!! | |
!! ~/.Xresources | |
!! | |
!============================================================================== | |
! | |
! rxvt-unicode-256color | |
! | |
!============================================================================== |