IT |
ITmedia 総合記事一覧 |
[ITmedia ビジネスオンライン] トヨタがEV普及で抱える最大の弱点とは? “EV戦略見直し”報道で考える各社の現在地 |
https://www.itmedia.co.jp/business/articles/2211/30/news206.html
|
itmedia |
2022-12-30 07:13:00 |
AWS |
AWS |
Why is my AWS Certificate Manager certificate DNS validation status still pending validation? |
https://www.youtube.com/watch?v=ovDJQrIsCuc
|
Why is my AWS Certificate Manager certificate DNS validation status still pending validation Skip directly to the demo For more details see the Knowledge Center article with this video Nicholas shows you why your AWS Certificate Manager certificate DNS validation status is still pending validation Introduction Additional prerequisites Check your CNAME record Create records in Route Configure your public hosted zone ClosingSubscribe More AWS videos More AWS events videos ABOUT AWSAmazon Web Services AWS is the world s most comprehensive and broadly adopted cloud platform offering over fully featured services from data centers globally Millions of customers ーincluding the fastest growing startups largest enterprises and leading government agencies ーare using AWS to lower costs become more agile and innovate faster AWS AmazonWebServices CloudComputing |
2022-12-29 22:39:48 |
python |
Pythonタグが付けられた新着投稿 - Qiita |
Q. Pythonの"global"ってなに? |
https://qiita.com/ulxsth/items/58aba47ded5b3092ce1a
|
qpython |
2022-12-30 07:55:30 |
Ruby |
Rubyタグが付けられた新着投稿 - Qiita |
コントローラを共通化したModuleに対応するビューを自動で検索させる |
https://qiita.com/nay3/items/1f81f2467a436c644113
|
controllersconcernsxxx |
2022-12-30 07:27:27 |
golang |
Goタグが付けられた新着投稿 - Qiita |
自作言語にdefer文を実装した(がGoと微妙に挙動が違う) |
https://qiita.com/Syuparn/items/21d24aa782ed0f6e0a46
|
defer |
2022-12-30 07:30:09 |
Ruby |
Railsタグが付けられた新着投稿 - Qiita |
コントローラを共通化したModuleに対応するビューを自動で検索させる |
https://qiita.com/nay3/items/1f81f2467a436c644113
|
controllersconcernsxxx |
2022-12-30 07:27:27 |
海外TECH |
DEV Community |
How to keep a history of MQTT data with Node.js |
https://dev.to/reductstore/how-to-keep-a-history-of-mqtt-data-with-nodejs-1kh6
|
How to keep a history of MQTT data with Node jsThe MQTT protocol is very popular in IoT applications It is a simple way to connect different data sourceswith your application by using a publish subscribe model Sometimes you may want to keep a history of your MQTT data touse it for model training diagnostics or metrics If your data sources provide different formats of data that cannot be interpreted as time series of floats ReductStore is what you need Let s make a simple MQTT application to see how it works PrerequisitesFor this usage example we have the following requirements Linux AMDDocker and Docker ComposeNodeJS gt If you re an Ubuntu user use this command to install the dependencies sudo apt get update sudo apt get install docker compose nodejs Run MQTT Broker and ReductStore with Docker ComposeThe easiest way to run the broker and the storage is to use Docker Compose So we should create a docker compose ymlfile in the example s folder with the services version services reduct storage image reductstore reductstore latest volumes data data ports mqtt broker image eclipse mosquitto ports Then run the configuration docker compose upDocker Compose downloaded the images and ran the containers Pay attention that we published ports for MQTTprotocol and for ReductStore HTTP API Write NodeJS scriptNow we re ready to make hands dirty with code Let s initialize the NPM package andinstall MQTT Client andJavaScript Client SDK npm init npm install save reduct js async mqtt When we have all the dependencies installed we can write the script const MQTT require async mqtt const Client require reduct js MQTT connectAsync tcp localhost then async mqttClient gt await mqttClient subscribe mqtt data const reductClient new Client http localhost const bucket await reductClient getOrCreateBucket mqtt mqttClient on message async topic msg gt const record await bucket beginWrite topic await record write msg console log Received message s from topic s is written msg topic catch error gt console error error Let s look at the code in detail First we have to connect to the MQTT broker and subscribe to a topic The topic namejust random string which producers should know In our case it is mqtt data MQTT connectAsync tcp localhost then async mqttClient gt await mqttClient subscribe mqtt data rest of code catch error gt console error error If the MQTT connection is successful we can start dealing with ReductStore To start writing data there we need abucket We create a bucket with the name mqtt or get an existing one const reductClient new Client http localhost const bucket await reductClient getOrCreateBucket mqtt The last step is to write the received message to the storage We must use a callbackfor event message to catch it Then we write the message to entry mqtt data mqttClient on message async topic msg gt const record await bucket beginWrite topic await record write msg console log Received message s from topic s was written data topic When we call bucket beginWrite we create an entry in the bucket if it doesn t exist yet Then we write data to theentry with the current timestamp Now our MQTT data is safe and sound in the storage and we can access them by usingthe same SDK Publish data to MQTT topicWhen you launch the script it does nothing because there is no data from MQTT You have to publish something to topicmqtt data I prefer to use mosquitto pub For Ubuntu users it is apart of the mosquitto clients package sudo apt get install mosquitto clients mosuitto pub t mqtt data m Hello world Getting data from ReductStoreNow you know how to get data from MQTT and write it to ReductStore but we need a little NodejS script to read the datafrom the storage const Client require reduct js const client new Client http localhost client getBucket mqtt then async bucket gt const record await bucket beginRead mqtt data console log Last record s await record readAsString Get data for lash hour const stopTime BigInt Date now const startTime stopTime n for await const record of bucket query mqtt data startTime stopTime const data await record read console log Found record s with timestamp d data record time catch error gt console error error To read the latest record in the entry is very easy const record await bucket beginRead mqtt data const data await record readAsString To take data for timeinterval we can use the query method It returns an async iterator so we can use for awaitloop to iterate over the records const stopTime BigInt Date now const startTime stopTime n for await const record of bucket query mqtt data startTime stopTime const data await record read console log Found record s with timestamp d data record time Pay attention the storage uses timestamps with microsecond precision so we can t use Date class and number type What is why we use BigInt ConclusionAs you can see the MQTT protocol and ReductStore very simple technologies that can be used together very easily inNodeJS You can find the source code of the example here If you have any questions or problems running it Feel free tomake an issue I hope this tutorial has been helpful Thanks LinksReductStoreJavaScript Client SDKMosquitto MQTT BrokerFull example on GitHub |
2022-12-29 22:23:37 |
海外科学 |
NYT > Science |
Justice Dept. Sues AmerisourceBergen Over Role in Opioid Crisis |
https://www.nytimes.com/2022/12/29/us/politics/amerisourcebergen-opioids-lawsuit.html
|
Justice Dept Sues AmerisourceBergen Over Role in Opioid CrisisInvestigators said the pharmaceutical manufacturer one of the nation s largest had knowingly distributed opioids that were later resold illegally |
2022-12-29 22:37:00 |
海外科学 |
NYT > Science |
How Bad Is China’s Covid Outbreak? It’s a Scientific Guessing Game. |
https://www.nytimes.com/2022/12/29/health/china-covid-outbreak-predictions.html
|
How Bad Is China s Covid Outbreak It s a Scientific Guessing Game In the absence of credible information from the Chinese government researchers around the world are looking for any clues to determine the size and severity of the surge |
2022-12-29 22:53:19 |
金融 |
金融総合:経済レポート一覧 |
国内銀行の資産・負債等(銀行勘定)(2022年11月末) |
http://www3.keizaireport.com/report.php/RID/522142/?rss
|
日本銀行 |
2022-12-30 00:00:00 |
金融 |
金融総合:経済レポート一覧 |
2023年の利回り上昇幅は限定的:10年国債利回りの均衡水準は0.8%程度か:木内登英のGlobal Economy & Policy Insight |
http://www3.keizaireport.com/report.php/RID/522143/?rss
|
lobaleconomypolicyinsight |
2022-12-30 00:00:00 |
金融 |
金融総合:経済レポート一覧 |
FX Daily(12月28日)~米金利上昇で、134円台半ばまで上昇 |
http://www3.keizaireport.com/report.php/RID/522144/?rss
|
fxdaily |
2022-12-30 00:00:00 |
金融 |
金融総合:経済レポート一覧 |
CO2排出権のデリバティブ取引の動向:Short Review |
http://www3.keizaireport.com/report.php/RID/522146/?rss
|
shortreview |
2022-12-30 00:00:00 |
金融 |
金融総合:経済レポート一覧 |
ポートフォリオの予想温度上昇(ITR)の計測:Short Review |
http://www3.keizaireport.com/report.php/RID/522147/?rss
|
shortreview |
2022-12-30 00:00:00 |
金融 |
金融総合:経済レポート一覧 |
資産形成きっかけBOOK ~初心者のための投資リスクを抑える3つのキホンについて記載したパンフレット |
http://www3.keizaireport.com/report.php/RID/522151/?rss
|
投資リスク |
2022-12-30 00:00:00 |
金融 |
金融総合:経済レポート一覧 |
日経記事でマネートレーニング~プロがわかりやすく教える! |
http://www3.keizaireport.com/report.php/RID/522152/?rss
|
日本取引所グループ |
2022-12-30 00:00:00 |
金融 |
金融総合:経済レポート一覧 |
2023年市場の見通し(グローバル転換社債(CB)):プロの視点 |
http://www3.keizaireport.com/report.php/RID/522154/?rss
|
転換社債 |
2022-12-30 00:00:00 |
金融 |
金融総合:経済レポート一覧 |
【ABIQ】現代奴隷:サプライチェーンの人権問題と投資家の役割:責任投資 |
http://www3.keizaireport.com/report.php/RID/522155/?rss
|
人権問題 |
2022-12-30 00:00:00 |
金融 |
金融総合:経済レポート一覧 |
楽読 Vol.1864~米国の景気後退局面では株価は底打ちする傾向 |
http://www3.keizaireport.com/report.php/RID/522156/?rss
|
日興アセットマネジメント |
2022-12-30 00:00:00 |
金融 |
金融総合:経済レポート一覧 |
2022年のIPO動向~新規上場、前年比はリーマン・ショック以来の減少率も 件数は過去15年で4番目。「赤字上場」、「プラットフォーム事業」が目立つ |
http://www3.keizaireport.com/report.php/RID/522165/?rss
|
帝国データバンク |
2022-12-30 00:00:00 |
金融 |
金融総合:経済レポート一覧 |
米国株 S&P500指数の5つのポイント(2023-1) |
http://www3.keizaireport.com/report.php/RID/522168/?rss
|
米国株 |
2022-12-30 00:00:00 |
金融 |
金融総合:経済レポート一覧 |
日本株 日経平均株価の5つのポイント(2023-1) |
http://www3.keizaireport.com/report.php/RID/522169/?rss
|
日経平均株価 |
2022-12-30 00:00:00 |
金融 |
金融総合:経済レポート一覧 |
今年のマーケットを振り返る4 ~為替市場 ドル円は32年ぶりの円安、10月以降は円高へ修正 |
http://www3.keizaireport.com/report.php/RID/522170/?rss
|
三井住友 |
2022-12-30 00:00:00 |
金融 |
金融総合:経済レポート一覧 |
日銀によるイールドカーブ・コントロールの運用見直しについて |
http://www3.keizaireport.com/report.php/RID/522173/?rss
|
三菱ufj銀行 |
2022-12-30 00:00:00 |
金融 |
金融総合:経済レポート一覧 |
半減した米国のESG投資残高~SEC規制で自称ESG投資が減少したのか、もともと幻だったのか:ESG投資 |
http://www3.keizaireport.com/report.php/RID/522174/?rss
|
大和総研 |
2022-12-30 00:00:00 |
金融 |
金融総合:経済レポート一覧 |
長野県内メインバンク調査(2022年) ~県内メインバンクシェア、1位は「八十二銀行」で53.35%。来年6月に経営統合を予定する「長野銀行」と合わせると61.62%に |
http://www3.keizaireport.com/report.php/RID/522178/?rss
|
八十二銀行 |
2022-12-30 00:00:00 |
金融 |
金融総合:経済レポート一覧 |
2023年インベストメント・アウトルック ~ESGに関する開示と責任投資の新たな枠組み |
http://www3.keizaireport.com/report.php/RID/522179/?rss
|
開示 |
2022-12-30 00:00:00 |
金融 |
金融総合:経済レポート一覧 |
英国国民保険制度と制度を取り巻く状況(第2版) |
http://www3.keizaireport.com/report.php/RID/522181/?rss
|
保険制度 |
2022-12-30 00:00:00 |
ニュース |
BBC News - Home |
Pele: Brazil football legend dies aged 82 |
https://www.bbc.co.uk/sport/football/42751517?at_medium=RSS&at_campaign=KARANGA
|
football |
2022-12-29 22:44:43 |
ニュース |
BBC News - Home |
Vivienne Westwood: Pioneering fashion designer dies aged 81 |
https://www.bbc.co.uk/news/uk-64122181?at_medium=RSS&at_campaign=KARANGA
|
designer |
2022-12-29 22:31:11 |
ニュース |
BBC News - Home |
Covid: Why are some places testing Chinese arrivals? |
https://www.bbc.co.uk/news/health-64122626?at_medium=RSS&at_campaign=KARANGA
|
covid |
2022-12-29 22:42:49 |
ニュース |
BBC News - Home |
Liverpool: Jurgen Klopp compares Darwin Nunez to Robert Lewandowski |
https://www.bbc.co.uk/sport/football/64119494?at_medium=RSS&at_campaign=KARANGA
|
Liverpool Jurgen Klopp compares Darwin Nunez to Robert LewandowskiJurgen Klopp says he sees similarities between Darwin Nunez s early Liverpool career and Robert Lewandowski s start at Borussia Dortmund |
2022-12-29 22:43:20 |
ニュース |
BBC News - Home |
Pele: Neymar, Kylian Mbappe and Cristiano Ronaldo among those paying tribute |
https://www.bbc.co.uk/sport/football/64122039?at_medium=RSS&at_campaign=KARANGA
|
neymar |
2022-12-29 22:45:36 |
北海道 |
北海道新聞 |
NY株反発、345ドル高 長期金利低下で買い優勢 |
https://www.hokkaido-np.co.jp/article/782251/
|
長期金利 |
2022-12-30 07:13:15 |
海外TECH |
reddit |
Andrew Tate getting arrested in human trafficking investigation today |
https://www.reddit.com/r/Damnthatsinteresting/comments/zyhwzn/andrew_tate_getting_arrested_in_human_trafficking/
|
Andrew Tate getting arrested in human trafficking investigation today submitted by u EveryoneLoveABJ to r Damnthatsinteresting link comments |
2022-12-29 22:02:57 |
海外TECH |
reddit |
Andrew Tate arrested on suspected organised crime and human trafficking charges |
https://www.reddit.com/r/LivestreamFail/comments/zyi9hu/andrew_tate_arrested_on_suspected_organised_crime/
|
Andrew Tate arrested on suspected organised crime and human trafficking charges submitted by u absolvedshimmy to r LivestreamFail link comments |
2022-12-29 22:16:08 |
コメント
コメントを投稿