2016-12-01から1ヶ月間の記事一覧

excelvbaで列番号を文字に変換する

'列番号を文字に変換するユーザー定義関数 Function ColNum2Txt(lngColNum As Long) As String On Error GoTo ErrHandler Dim strAddr As String strAddr = Cells(1, lngColNum).address(False, False) ColNum2Txt = Left(strAddr, Len(strAddr) - 1) Exit F…

PHPで簡単にPOST送信

PHP

'htmlspe', 'show' => 'quickref', ); $options = array('http' => array( 'method' => 'POST', 'content' => http_build_query($data), )); $contents = file_get_contents($url, false, stream_context_create($options)); ?>ネタ元 http://www.…

PHPでメール送信

PHP

ネタ元 http://qiita.com/shuntaro_tamura/items/c0ef05cb4d4e22e78297

iMovie (2013): ピクチャ・イン・ピクチャ・エフェクトを作成する

ピクチャ・イン・ピクチャ・クリップとして使いたいクリップまたは 範囲 を選択して、タイムライン 内のクリップの上にドラッグします。タイムラインで別のクリップの上にクリップをドラッグして接続しているところ 緑色の追加アイコン(+)が表示されたら…

phpで数字と小数点部分だけ抽出

php

$last = preg_replace('/[^0-9.]/', '', $last); // 数字と小数点部分だけ抽出ネタ元 http://nkawamura.hatenablog.com/entry/2013/06/15/143729

excelで勝率を求める

=COUNTIF(A1:A10,">0")/COUNT(A1:A10)ネタ元 http://detail.chiebukuro.yahoo.co.jp/qa/question_detail/q1034679975

C++で今日の日付をyyyymmddで取得

CPP

#include <ctime> ... std::time_t rawtime; std::tm timeinfo; std::time(&rawtime); localtime_s(&timeinfo,&rawtime); long tmpYYYYMMDD = (1900+timeinfo.tm_year) * 10000 + (timeinfo.tm_mon+1) * 100 + timeinfo.tm_mday; ネタ元 http://stackoverflow.com/q</ctime>…

ExcelVBAでIE操作サンプルサイト

http://tonari-it.com/vba-ie-login/ http://www.vba-ie.net/library/ http://www.vba-ie.net/function/sleep.html

cronの設定方法(プラスアルファレンタルサーバーの場合)

web

https://www.plus-server.net/faq/topic.php?go=topic&num=112

シェルスクリプト入門

sh

一番上に#!/bin/sh入れるの忘れないでね #!/bin/sh echo "Hello World!"ネタ元 http://motw.mods.jp/shellscript/tutorial.html

phpで配列に含まれる項目数を取得する(count)

php

count()を使う <html> <head><title>PHP TEST</title></head> <body> '); print('再帰的に数えた場合、項目数は'.$cou…</body></html>

phpで文字エンコードを変換する(mb_convert_encoding)

php

$str = "元になっている文字列"; $str = mb_convert_encoding($str, "SJIS", "UTF-8");ネタ元 http://www.phpbook.jp/func/string/index5.html