w3neu.net::bookmark
タグクラウド
ピクチャーウォール
日々
RSSフィード
  • RSSフィード
  • ATOM Feed
  • Daily Feed
フィルター

ページあたりのブックマーク数

  • 20 links
  • 50 links
  • 100 links

Display

タグのないブックマークをフィルタする
page 18 / 290
UrtheCast Gallery http://gallery.urthecast.com
Fri Sep 8 00:00:10 2017 archive.org
リアルタイム衛星写真アーカイブ。ずっと見てられる
artificial gallery photo satellite
石油焦 价格 – 生意社石油焦频道 http://syj.100ppi.com/price
Wed Sep 6 07:07:03 2017 archive.org
中国石油コークス市況
china coke petroleum price trend
Australian Coking Coal (Platts) Low Vol Futures Quotes - CME Group http://www.cmegroup.com/trading/energy/coal/australian-coking-coal-platts-low-vol-swap.html
Wed Sep 6 07:06:15 2017 archive.org
豪州原料炭市況
australia coal metallurgical price trend
ODA | Coal Price https://www.quandl.com/data/ODA/PCOALAU_USD-Coal-Price?utm_medium=graph&utm_source=quandl
Wed Sep 6 07:05:32 2017 archive.org
豪州燃料炭市況データ
australia coal price trend
Fluidized-bed chlorination thermodynamics and kinetics of Kenya natural rutile ore http://www.ysxbcn.com/down/2013/11_en/40-p3448.pdf
Wed Sep 6 07:04:38 2017 archive.org
流動塩化炉内の熱力学
physics titanium
A Review of the Production Cycle of Titanium Dioxide Pigment https://file.scirp.org/pdf/MSA_2014052916520642.pdf
Wed Sep 6 07:03:23 2017 archive.org
酸化チタンの製造サイクル
document process production resource titanium
第4章 ポテンシャルダイヤグラム http://www.okabe.iis.u-tokyo.ac.jp/docs/0403mmij/0403_lec_MMIJ_text_chap4.pdf
Wed Sep 6 07:02:06 2017 archive.org
ギブスの相律とかエリンガム図とか
chemistry document physics resource
Foreign exchange rates and currency conversion JSON API http://fixer.io
Thu Jun 22 00:58:54 2017 archive.org
JSONで為替データ公開
api currency freeUse json service web
PowerShellでExcelファイルを上書き保存する:エクセルマクロ・Excel VBAの使い方-Workbookオブジェクト http://www.relief.jp/docs/powershell-save-excel-file.html
Wed Jun 21 01:54:09 2017 archive.org
Excelオブジェクトの取扱い
po
PowerShellで巨大なファイルをGet-Contentし、Export-Csvするのを省メモリで行う | OSAKANA TAROのメモ帳 http://blog.osakana.net/archives/8062
Wed Jun 21 01:53:39 2017 archive.org
powershellでメモリ節約しながらファイル処理
powershell tips tutorial Windows
GitHub - mholt/PapaParse: Fast and powerful CSV (delimited text) parser that gracefully handles large files and malformed input https://github.com/mholt/PapaParse
Fri Jun 2 04:28:46 2017 archive.org
thumbnail
json⇔csvというニッチなJSライブラリ
JavaScript json library OpenSource parse
Introduction · Scala研修テキスト https://dwango.github.io/scala_text
Sun May 28 03:06:37 2017 archive.org
とっても良くできるてる
freeUse language reference Scala seminar tutorial web
JIS-Q9100 2016 (NTS) - NTS Co., Ltd. http://www.nts-co.jp/download/J-I-S-Q-9-1-0-0_2016_nts.doc
Mon May 22 06:38:12 2017 archive.org
品質マニュアルの参考に。(ASベースだから9000番台より厳しいけど...)
document reference resource web
JavaScriptSerializerを使ってJSONをパース/作成 - PowerShell Scripting Weblog http://winscript.jp/powershell/226
Thu May 11 07:27:56 2017 archive.org
@(echo '> NULecho off)setlocal enableextensionsset "THIS_PATH=%~f0"set "PARAM_1=%~1"PowerShell.exe -Command "iex -Command ((gc "%THIS_PATH:`=``%") -join "`n")"exit /b %errorlevel%-- この1つ上の行までバッチファイル') | sv -Name TempVar# ここからPowerShellスクリプトecho "This batch file is executed as PowerShell script (file = $env:THIS_PATH, param = $env:PARAM_1)"#日付取得関数(http://api.fixer.io/向けURL)function dateurl($dayDiff){ $pre ='http://api.fixer.io/'; $suf ='?base=USD';# $time = Get-Date -Format 'yyyy-MM-dd'; $date = [DateTime]::Today.AddDays($dayDiff).ToString('yyyy-MM-dd'); $url = [String]::Join('',@($pre,$date,$suf)); return $url;}#保存パス生成function datepath($dayDiff){ $pre =''; $suf ='_usd.json'; $date = [DateTime]::Today.AddDays($dayDiff).ToString('yyyy-MM-dd'); $path = [String]::Join('',@($pre,$date,$suf)); return $path;}#過去1ヶ月分回すfor ($i=0; $i -lt 31; $i++){ $inv = $i*(-1); $path = datepath($inv); echo $path; $array = Get-Content $path -Encoding UTF8;$json=@"{'items':    [$array    ]}"@echo $json;Add-Type -AssemblyName System.Web.Extensions$serializer=new-object System.Web.Script.Serialization.JavaScriptSerializer$obj=$serializer.DeserializeObject($json) #$obj["items"][0]["date"] #「メモリ8GB」と表示される#$obj.items[0].rates # 上と同じ#$obj["items"]|%{$_["rates"]} # 名前が列挙される$json2=@"{'items':    [$obj.items[0].rates    ]}"@;#echo $json2;Add-Type -AssemblyName System.Web.Extensions$serializer2=new-object System.Web.Script.Serialization.JavaScriptSerializer$obj=$serializer2.DeserializeObject($json2)$obj.items[0].rates.GetEnumerator() | Select @{N="Country"; E={$_.Key}}, @{N=; E={$_.Value}} | Export-Csv .currencytest.csv -Encoding Default -NoTypeInformation}Read-Host "続けるにはENTERキーを押して下さい" #echo $url;#$d=new-object System.Net.WebClient;$d.Proxy.Credentials=[System.Net.CredentialCache]::DefaultNetworkCredentials;$d.DownloadFile($url,$save);#ワンライナーバッチ版(参考)#@powershell -NoProfile -ExecutionPolicy Bypass -Command "function time(){$time = Get-Date -Format 'yyyy-MM-dd';return $time};$date=time(0);$urlarray=@('http://api.fixer.io/',$date,'?base=USD');$url=[String]::Join('',$urlarray);$savearray=@($date,'_usd.json');$save=[String]::Join('',$savearray);echo $url;$d=new-object System.Net.WebClient;$d.Proxy.Credentials=[System.Net.CredentialCache]::DefaultNetworkCredentials;$d.DownloadFile($url,$save)"
json powershell tips Windows
Vape Shop, E-CIGDO for Premium E-Cigarettes, E-liquids, ニコチンリキッド,電子たばこ, VAPE の通販, 米国直販,個人輸入 http://www.ecigdo.com
Sun Apr 16 00:24:54 2017 archive.org
thumbnail
liquid shop smoking vape web
ファイナルファンタジーXIV 光のお父さん 書籍公式サイト |講談社 http://book-sp.kodansha.co.jp/father/ss/?utm_source=book&utm_medium=qr
Sun Mar 19 13:32:34 2017 archive.org
限定公開らしいので個人的にメモ
blog FFXIV FinalFantasy game
NAMAROIDのダウンロードと準備:積みゲー帝国 - ブロマガ http://ch.nicovideo.jp/StackGamesEmpire/blomaga/ar944481
Sat Mar 11 05:08:43 2017 archive.org
音声認識+読み上げ+Voiceroid
application freeUse sound voice Windows
Windows10 で macOS Sierra を VMware 上にインストールする | osx86 hackintosh - ITブログ時々なんでもブログ http://itblogdsi.blog.fc2.com/blog-entry-32.html
Sat Mar 11 05:07:02 2017 archive.org
thumbnail
夢の話
MacOSX osx86 tutorial
ゲームのラグ対策 ~回線は速度より安定度(ping)を重視~ - ラテ散漫 http://latesanman.blog.fc2.com/blog-entry-45.html
Thu Mar 9 13:03:51 2017 archive.org
良い感じにまとまっているのでメモ
game mtu network resource setting Windows
Quick Charge 2.0 から 9V/12V を出力させるデバイス (ATTiny13A) https://lowreal.net/2015/12/24/1
Sun Mar 5 06:11:31 2017 archive.org
MusicBooster的なアレを作れるかもしれないなー的アレ低電圧レギュレータで12V→9Vにすると波形も大丈夫かな
battery circuit development electricity freeUse hardware mobile QuickCharge3.0
page 18 / 290
5797 links