2017-12-01から1ヶ月間の記事一覧
<html> <meta charset="UTF-8"> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script> <script> $(function() { var webSocket = null; var bids_cnt = 0; var asks_cnt = 0; function open() { if (webSocket == null) { webSocket = new WebSocket("wss://ws-api.coinchec…</head></meta></html>
setInterval…一定時間ごとに特定の処理を繰り返す setTimeout…一定時間後に特定の処理をおこなう(繰り返さずに一度だけ) ネタ元 https://techacademy.jp/magazine/5537
$.ajax({ //設定 url : "index.php", type : "POST", data : {data : "hogehoge"}, //ajax通信エラー error : function(XMLHttpRequest, textStatus, errorThrown) { console.log("ajax通信に失敗しました"); console.log("XMLHttpRequest : " + XMLHttpRequ…
html <html> <head> <meta charset="UTF-8"> <script src="//code.jquery.com/jquery-1.11.0.min.js"></script> <script src="//code.jquery.com/jquery-migrate-1.2.1.min.js"></script> <script> $(document).ready(function(){ $('#getbtn').click(function(){ var url = encodeURIComponent($('#url').…</meta></head></html>
struct StructHoge { int number; }; ・・・ CArray <StructHoge, StructHoge> arrayHoge; ・・・ int compareHoge(void* context, const void* a1, const void* a2) { StructHoge* p1 = (StructHoge*)a1; StructHoge* p2 = (StructHoge*)a2; if (p1->number != p2->number) { return</structhoge,>…
ZaifのハッシュアルゴリズムがHMAC-SHA512なのに気付くの時間かかったー! ネタ元 https://qiita.com/bitrinjani/items/fff7e2bf6a2b8be6eac0
itunesの過去バックアップを削除して、改めてバックアップ。 ネタ元 https://beadored.com/itunes-sync-backup-error/
macだと ~/ライブラリ/Application Support/MobileSync/Backup/winだと \ユーザー\(ユーザ名)\AppData\Roaming\Apple Computer\MobileSync\Backup\ ネタ元 https://simchange.jp/iphone-backup-place-sim/
Winでもほぼ同じ。 記事 http://www.takeiho.com/entry/crypt-currency-xp
HTTPアクセスのたびにnewして使うと大量アクセス時にボトルネックになるらしい。staticで宣言して、使いまわすのがよいそうです。1ホストにつき1HttpClientオブジェクトがルール。使いまわすとなると同時アクセスの心配がでるけど、それはHttpClient的には…
favicon.icoの場所 installdir/apache2/htdocs/favicon.ico があるので差し替える。 favicon作成はこちらでできる https://www.favicon-generator.org/ ネタ元 https://community.bitnami.com/t/adding-favicon-to-bitnami-django-stack/43201
function getUrlVars() { var vars = [], hash; var hashes = window.location.href.slice(window.location.href.indexOf('?') + 1).split('&'); for(var i = 0; i < hashes.length; i++) { hash = hashes[i].split('='); vars.push(hash[0]); vars[hash[0]]…
javascript部 <script type = "text/javascript">
date = new Date("Thu, 06 Sep 2012 00:00:00 +0900"); unixtime = parseInt( date.getTime() / 1000 ); ネタ元 https://qiita.com/labocho/items/5fbaa0491b67221419b4
$date_unixtime_str = '946652400'; $date = new DateTime('@' . $date_unixtime_str); echo $date->format('Y-m-d H:i:s'); ネタ元 https://qiita.com/sounisi5011/items/d6df76798d2e23c83e14
SSHで接続して crontab -e ネタ元 https://www.marketechlabo.com/batch-processing-on-gce/#cron-2
SSHで接続 Letsencryptスクリプトをインストールする git clone https://github.com/letsencrypt/letsencrypt cd letsencrypt ./letsencrypt-auto certonly -w / home / bitnami / htdocs -d ses.rosacea-support.org -d sandbox.pascoe.biz -wはウェブルー…
DateTimePicker を使います。 ネタ元 http://www.arubeh.com/archives/1011
解説サイト http://yut.hatenablog.com/entry/20111015/1318633937
HTML <html> <head> <meta charset="utf-8"> <title>Test</title> <script type="text/javascript" src="main.js"></script> </head> <body> <input type="button" value="実行ボタン" onclick="main();"/> </body> </html>Javascript function main() { var flag =…
ツールはこちら https://so-zou.jp/web-app/converter/unix-time/
初めての HTML フォーム ネタ元 https://developer.mozilla.org/ja/docs/Learn/HTML/Forms/Your_first_HTML_form
工程はいろいろあるのでネタ元参照。 ネタ元 http://www.webdesign-fan.com/jquery-ui-datepicker
$first = current($arr); ネタ元 http://bashalog.c-brains.jp/15/02/25-175724.php
JSONサンプル { "name": "あらゆ", "gender": "男" }decodeサンプル // JSONは[$json]に格納されていると仮定 // 配列型の場合 $array = json_decode( $json , true ) ; // ループ処理 foreach( $array as $key => $value ) { // [$key]には「name→gender」…
file_get_contents() は ヘッダ情報の保持ルールやタイムアウト処理に癖があるため 返却されるステータスコードや、タイムアウト時に再リクエストなどを行うような 対APIの処理では、それらを知らないと想定していない事態に陥る。 curlの例 private functio…
Bitnamiはステキなのでキャッシュが有効になってる。 だけど開発時は邪魔なのでOFFしたほうがいいよね。 Google PageSpeed Module を無効化する Google PageSpeed Moduleの設定ファイルが保存されているディレクトリに移動 $ cd ./stack/apache2/confhttpd.c…
Try 'ファイルを開く sr = System.IO.File.OpenText(filePath) Catch ex As System.IO.FileNotFoundException System.Console.WriteLine(ex.Message) Return Nothing Catch ex As System.IO.IOException System.Console.WriteLine(ex.Message) Return Nothin…
https://developers.google.com/web/fundamentals/codelabs/your-first-pwapp/?hl=jaサンプルへのリンク切れてる。英文ページのほうからのリンクは生きてた。 https://github.com/googlecodelabs/your-first-pwapp/archive/master.zip ネタ元 https://codela…