2016-11-01から1ヶ月間の記事一覧
リダイレクト移転前サーバーの.htaccessにリダイレクトコードを追記します。 Redirect 301 / http://webkaru.net/wordpress/ネタ元 ドメイン変更を伴うWordPressサイトのサーバー移転方法 http://webkaru.net/wordpress/move-site-to-new-url/
utf8という文字コードなんだけど、新しいphpMyAdminは utf8mb4というコード。古い方は、utf8。なんか記述の仕方も特殊。そんなときはテキストエディタで開いて、コードの表記を一括置換 →「utf8mb4_unicode_520_ci」を「utf8_general_ci」 に変更 →「utf8mb4…
時間は日本時間でOKだよ cd /home/<ユーザー名>/public_html/<実行するPHPコードのパス>;/usr/bin/php hogehoge.phpネタ元 http://ryus.co.jp/blog/sakuracron/ https://www.plus-server.net/faq/topic.php?go=topic&num=47 https://www.plus-server.net/faq…
$hoge = file("text.xml"); print "$hoge[ X ]"ネタ元 http://pulltab.info/2007/07/phpx.html
古いけど http://tsukuyomi225.blog.fc2.com/
var_dump()やdebug_backtrace()使おうネタ元 http://ja.stackoverflow.com/questions/7068/php%E3%81%AE%E3%83%87%E3%83%90%E3%83%83%E3%82%B0%E6%96%B9%E6%B3%95%E3%81%AB%E3%81%A4%E3%81%84%E3%81%A6%E3%82%88%E3%81%84%E6%96%B9%E6%B3%95%E3%82%92%E6%95%…
ファイル読み込み "; } fclose($fp); ?>ファイル書き込み
CME日経先物の最新四本値取得 $html = file_get_contents("http://www.cmegroup.com/trading/equity-index/international-index/nikkei-225-yen_quotes_settlements_futures.html"); $dom = new DOMDocument(); @$dom->loadHTML($html); $xml = simplexml_im…
HtmlAgilityPackを使うにはプロジェクトごとにNuGetから導入する。 ソリューションエクスプローラーで導入したいプロジェクトを選択しておいて、メニューバーから[プロジェクト]-[NuGet パッケージの管理]を選ぶ すると、[NuGet パッケージの管理]ダ…
・さくらのコントロールパネルでドメインを設定 ・さくらのファイルマネージャーでドメインをアップするフォルダを作成 ・お名前.comでネームサーバーを変更 ・さくらのファイルマネージャーでアクセス設定ネタ元 https://tokyotower.xyz/onamae-sakura/
こんな感じでシート保護を設定(UIのみ)を設定する Option Explicit Private Sub Workbook_Open() ' 一旦、シート保護を解除 ActiveSheet.Unprotect ' シート保護を設定(UIのみ) ActiveSheet.Protect UserInterfaceOnly:=True ActiveWindow.ScrollRow = 1 End…
# ほげほげ <# ほげほげ #> ネタ元 http://bayashita.com/p/entry/show/36
$wsobj = new-object -comobject wscript.shell $result = $wsobj.popup("PowerShellでメッセージボックスを表示")ネタ元 http://win.just4fun.biz/PowerShell/PowerShell%E3%81%A7%E3%83%A1%E3%83%83%E3%82%BB%E3%83%BC%E3%82%B8%E3%83%9C%E3%83%83%E3%82%A…
Get-ChildItemコマンドレットは FileInfoオブジェクト を返します。 FileInfoクラスには 絶対パスからファイル名を取得するためのプロパティ Name がありますのでこれを使用します。 $(Get-ChildItem "C:\Work\HIRO1.mdf").Nameネタ元 http://hiros-dot.net/…
普通にはできないのでbatファイルと組み合わせる。バッチファイル(.bat)記述例 ・example.bat @echo off powershell -ExecutionPolicy Unrestricted -File %0\..\example.ps1 %*スクリプトファイル(.ps1)記述例 ・example.ps1 foreach ($arg in $args) { // …
引数でアップロードするファイル指定するバージョンhogehoge.ps1として保存 foreach ($arg in $args) { [System.Net.ServicePointManager]::ServerCertificateValidationCallback = {$true} $filename = $(Get-ChildItem $arg).Name #「検証プロシージャによ…
Intersectメソッドと、ワークシートのChangeイベントを組み合わせることで、特定のセル範囲が変更されたときのみ処理を実行することができます。 Private Sub Worksheet_Change(ByVal Target As Range) If Intersect(Target, Range("A1:B5")) Is Nothing The…
コマンドプロンプトでは使えません。VisualStudio コマンドプロンプトから使います。 dumpbin /exports HelloWorld.dll ネタ元 http://replication.hatenablog.com/entry/2014/05/02/101020
けっこうめんどい。 ネタ元 http://fa11enprince.hatenablog.com/entry/2014/06/20/015808
http://hiros-dot.net/PowerShell/stringMenu.htm
Mid $abc.Substring(5, 6)ネタ元 http://win.just4fun.biz/PowerShell/PowerShell%E3%81%A7Left,Right,Mid%E3%82%92%E3%81%97%E3%81%9F%E3%81%84%E5%A0%B4%E5%90%88%E3%83%BBSubstring.html#w63c72ed
# S-JIS に変更 $OutputEncoding = [Console]::OutputEncoding # US-ASCII に戻す $OutputEncoding = New-Object System.Text.ASCIIEncodingclip.exe にリダイレクトすると クリップボードに送れるネタ元 http://www.vwnet.jp/Windows/PowerShell/CharCode.h…
Encoding Defaultでshift-jis "弁士" | Out-File -FilePath test.txt -Encoding Default ネタ元 http://webcache.googleusercontent.com/search?q=cache:7vgKnej7QQkJ:bbs.wankuma.com/index.cgi%3Fmode%3Dal2%26namber%3D61122%26KLOG%3D102+&cd=2&hl=ja&ct…
$_POSTでなにを送っているのか見ることができます。 フォームのあるページを開く Ctrl+Shift+i でDeveloper toolsを立ち上げる Networkタブに切り替え Recording Network Logボタンをクリック クリックで赤くなり、Recording開始。 フォームに入力し、Submit…
Invoke-RestMethod -Uri "http://localhost:8080/myapp/mydomain/myaction/" -Method POST -Body "id=2014&filename=0609.csv&format=json"ネタ元 http://bakemoji.hatenablog.jp/entry/2014/01/02/144102http://qiita.com/_y_u_/items/94dd8ad6fcc8d278f433
http://qiita.com/fujimohige/items/5aafe5604a943f74f6f0 http://www.webessentials.biz/powershell/powershell_autologin/