2020-02-06 05:00 分まとめ(52件)

カテゴリー サイト名 記事タイトル リンクURL 頻出ワード・要約等 登録日
AWS AWS Government, Education, and Nonprofits Blog The true value of Earth Observation data…now https://aws.amazon.com/blogs/publicsector/true-value-earth-observation-data/ A picture of our entire Earth s surface is taken every day Such a possibility ー or even the concept ー would have seemed unfeasible and unaffordable just ten years ago With continued technology improvements we are witnessing a rapid increase in the number of miniature satellites capturing Earth observation EO data This data is now accepted by many industries including agriculture insurance utilities and urban planning to deliver actionable insights 2020-02-05 19:20:59
Program [全てのタグ]の新着質問一覧|teratail(テラテイル) Anaconda python, AttributeError: module 'numpy' has no attribute 'linespace'が出る https://teratail.com/questions/239697?rss=all AnacondaでPythonを使用しnumpyのlinespaceを使おうとしたところ、AttributeErrornbspmodulenbspaposnumpyaposnbsphasnbspnonbspattributenbspaposlinespaceaposとなる。 2020-02-06 04:46:49
AWS AWSタグが付けられた新着投稿 - Qiita Aurora(MySQL互換)で、外部キーが絡んだINSERT/UPDATEによるデッドロックが検知されない問題 https://qiita.com/rh_taro/items/fc25be1796662a77d0ee 何が起きたのかたまーにproduction環境でデッドロックが発生したデッドロック発生時のログや各処理ごとで実行されるSQLのログから調査してデッドロックが発生するクエリは特定できたがstagingやローカルでは再現せず環境DBproductionMySQL互換AurorastagingMySQLdevelopmentdockerのMySQL各環境は上記の状態だったためAurora独自の何かがあるのではと思い検証をしてみることにデッドロック発生後の対処デッドロック発生時、mysqlコマンドでDBにつないで原因となるクエリをKILLしてみたが解決せずリードレプリカをフェイルオーバーさせることで対応した検証開始デッドロックが起きていたテーブル群offersofferchildofferchilddocumentsdocumentofferchild※わかりやすいようにテーブル名は実際とは変えていますスキーマCREATETABLEoffersidbigintAUTOINCREMENTPRIMARYKEYtitletextCREATETABLEofferchildidbigintAUTOINCREMENTPRIMARYKEYtitletextofferidbigintFOREIGNKEYofferidREFERENCESoffersidCREATETABLEofferchildidbigintAUTOINCREMENTPRIMARYKEYofferidbigintFOREIGNKEYofferidREFERENCESoffersidCREATETABLEdocumentsidbigintAUTOINCREMENTPRIMARYKEYurltextCREATETABLEdocumentofferchildidbigintAUTOINCREMENTPRIMARYKEYdocumentidbigintofferchildidbigintFOREIGNKEYdocumentidREFERENCESdocumentsidFOREIGNKEYofferchildidREFERENCESofferchildidデッドロックが起きていたトランザクションのクエリ事前に流すクエリINSERTINTOofferstitleVALUESCURRENTTIMESTAMPINSERTINTOofferchildofferidVALUESINSERTINTOdocumentsurlVALUESトランザクションNoトランザクショントランザクションBEGINBEGINUPDATEoffersSETtitleCURRENTTIMESTAMPWHEREidSELECTFROMofferchildWHEREidLIMITFORUPDATEINSERTINTOdocumentofferchilddocumentidofferchildidVALUESINSERTINTOofferchildofferidtitleVALUESaなぜデッドロックが起きるのかInnoDBの行レベルロックには共有ロックISと排他ロックIXの種類がある共有ロックIS同士では競合は発生しないがそれ以外の組み合わせでは競合ロック待ちが発生するISIXIS競合IX競合競合そして今回のケースでいうとNoのUPDATE文は該当のレコードにIXを獲得NoのSELECTFORUPDATE文は該当のレコードIXを獲得NoのINSERT文は外部キーの参照先documentsとofferchildのレコードにISを獲得NoのINSERT文は外部キーの参照先offersのレコードにISを獲得となるためNoはNoをロック待ち、NoはNoをロック待ちをしてトランザクション、間でロックが交錯しデッドロックが発生する各環境での挙動事前にパラメータグループからAurorainnodblockwaittimeoutlockwaittimeoutMySQLauroraに準拠autocommitinnodblockwaittimeoutinnodbrollbackontimeoutinnodbtablelockslockwaittimeoutに設定しておくinnodbrollbackontimeoutとinnodbtablelocksはAuroraにパラメータグループで設定できないためAuroraでのデフォルト値に準拠SHOWVARIABLESで確認可能autocommitについてはAuroraのデフォルトがでデッドロック検知にはがいいらしいのでMySQL側もに設定してAuroraに合わせるrefMySQL互換のAuroratransactionmysqlgtBEGINQueryOKrowsaffectedsecmysqlgtUPDATEoffersSETtitleCURRENTTIMESTAMPWHEREidQueryOKrowaffectedsecRowsmatchedChangedWarningsmysqlgtINSERTINTOdocumentofferchilddocumentidofferchildidVALUEStransactionmysqlgtBEGINQueryOKrowsaffectedsecmysqlgtSELECTFROMofferchildWHEREidLIMITFORUPDATEidofferidrowinsetsecmysqlgtINSERTINTOofferchildofferidtitleVALUESatransactionもtransactionもタイムアウトせず止まり続けINSERTのプロセスが残ったままDBのCPUがに貼りつくMySQLがなかったので仕方なく。transactionmysqlgtBEGINQueryOKrowsaffectedsecmysqlgtUPDATEoffersSETtitleCURRENTTIMESTAMPWHEREidQueryOKrowaffectedsecRowsmatchedChangedWarningsmysqlgtINSERTINTOdocumentofferchilddocumentidofferchildidVALUESQueryOKrowaffectedsectransactionmysqlgtBEGINQueryOKrowsaffectedsecmysqlgtSELECTFROMofferchildWHEREidLIMITFORUPDATEidofferidrowinsetsecmysqlgtINSERTINTOofferchildofferidtitleVALUESaERRORDeadlockfoundwhentryingtogetlocktryrestartingtransactiontransactionのINSERTINTOdocumentofferchildは最初待たされるがtransactionのINSERTINTOofferchildを実行するとtransactionは瞬時にdeadlockが検知されてトランザクションがロールバックされてtransactionの待ちがなくなりINSERTを完了するAuroraの他のパターンのデッドロックでの検知の挙動を検証※見やすくなるようSQLのみ書いていく実行順はここまで同様transaction交互長いので折りたたんだ全パターンを網羅しようとすると、クエリトランザクション×クエリがそれぞれISIXのいずれかだとしてインテンションロックの組み合わせがパターンさらにIXのDMLはSELECTFORUPDATEUPDATEISのDMLはINSERTSELECTLOCKINSHAREMODEとすると、それぞれパターンとしてつのインテンションロックの組み合わせの中でクエリの組み合わせはパターン全部でパターンになるまた、IXにDELETE文も考慮するとクエリの組み合わせがパターンになり全部でパターンになってさすがにつらいので網羅せず少しずつ条件を変えて検知できないデッドロックに作用してそうなクエリを探すtransactionの先発クエリもSELECTFORUPDATEにしてみる結果×デッドロックを検知せず止まり続ける考察先発のUPDATEは関係なさそうtransactionBEGINSELECTfromoffersWHEREidLIMITFORUPDATEINSERTINTOdocumentofferchilddocumentidofferchildidVALUEStransactionBEGINSELECTFROMofferchildWHEREidLIMITFORUPDATEINSERTINTOofferchildofferidtitleVALUESatransactionの先発クエリもUPDATEにしてみる結果×デッドロックを検知せず止まり続ける考察先発のSELECTFORUPDATEは関係なさそうtransactionBEGINUPDATEoffersSETtitleCURRENTTIMESTAMPWHEREidINSERTINTOdocumentofferchilddocumentidofferchildidVALUEStransactionBEGINUPDATEofferchildSETofferidWHEREidINSERTINTOofferchildofferidtitleVALUESatransactionの後発クエリをSELECTLOCKINSHAREMODEにしてみる結果transactionはデッドロックを検知してロールバックし、transactionは正常終了考察後発が両トランザクションINSERTじゃないと検知しないデッドロックにならないtransactionBEGINUPDATEoffersSETtitleCURRENTTIMESTAMPWHEREidSELECTFROMofferchildWHEREidLIMITLOCKINSHAREMODEtransactionBEGINSELECTFROMofferchildWHEREidLIMITFORUPDATEINSERTINTOofferchildofferidtitleVALUESatransactionの後発クエリをSELECTLOCKINSHAREMODEにしてみる結果transactionはデッドロックを検知してロールバックし、transactionは正常終了考察とはtransactionがロールバックされた、InnoDBの仕様※かtransactionBEGINUPDATEoffersSETtitleCURRENTTIMESTAMPWHEREidINSERTINTOdocumentofferchilddocumentidofferchildidVALUEStransactionBEGINSELECTFROMofferchildWHEREidLIMITFORUPDATESELECTFROMoffersWHEREidLIMITLOCKINSHAREMODE※小さいトランザクションを選択してロールバックしようと試みますとあるのでのパターンではtransactionが、今回はtransactionが小さいと判断されたのだろうここまででtransactionいずれも後発がINSERTの時に検知されないデッドロックになることがわかったでは後発がいずれもSELECTUPDATEDELETEのときはどうだろうかtransactionの後発クエリをSELECTLOCKINSHAREMODEにしてみる結果transactionはデッドロックを検知してロールバックし、transactionは正常終了考察後発がSELECTだとデッドロック検知してくれるらしいtransactionBEGINUPDATEoffersSETtitleCURRENTTIMESTAMPWHEREidSELECTFROMofferchildWHEREidLIMITLOCKINSHAREMODEtransactionBEGINSELECTFROMofferchildWHEREidLIMITFORUPDATESELECTFROMoffersWHEREidLIMITLOCKINSHAREMODEtransactionの後発クエリをUPDATEにしてみる結果transactionはデッドロックを検知してロールバックし、transactionは正常終了考察後発がUPDATEでもデッドロック検知してくれるらしいtransactionBEGINUPDATEoffersSETtitleCURRENTTIMESTAMPWHEREidUPDATEofferchildSETofferidWHEREidtransactionBEGINSELECTFROMofferchildWHEREidLIMITFORUPDATEUPDATEoffersSETtitleCURRENTTIMESTAMPWHEREidtransactionの後発クエリをDELETEにしてみる結果transactionはデッドロックを検知してロールバックし、transactionは正常終了考察後発がDELETEでもデッドロック検知されるINSERTだけがやはり特殊なのかtransactionBEGINUPDATEoffersSETtitleCURRENTTIMESTAMPWHEREidDELETEfromofferchildWHEREidtransactionBEGINSELECTFROMofferchildWHEREidLIMITFORUPDATEDELETEfromoffersWHEREidtransactionの先発クエリをINSERTにしてみる結果transactionはデッドロックを検知してロールバックし、transactionは正常終了考察INSERTが後発であることに意味があるらしいtransactionBEGININSERTINTOdocumentofferchilddocumentidofferchildidVALUESUPDATEoffersSETtitleCURRENTTIMESTAMPWHEREidtransactionBEGININSERTINTOofferchildofferidtitleVALUESaSELECTFROMofferchildWHEREidLIMITFORUPDATE結果Auroraでは、transactionともに後発のクエリがINSERTの時に発生するデッドロックが検知されず止まり続けることがわかったまた、検知されないパターンのデッドロックをMySQLで試すと検知される気になることがあったので追加で検証そもそもデッドロックではなく普通にINSERTがロック待ちした時ならちゃんとタイムアウトするのかUPDATEの外部キー参照時の挙動はINSERTと異なるのかAuroraとMySQLのINSERTとUPDATEのロック待ちの挙動を検証長いので折りたたんだIX獲得されたレコードを参照するINSERTをするAurora待ちが発生タイムアウトもせずMySQL待ちが発生タイムアウトもせずtransactionBEGINSELECTFROMoffersWHEREidLIMITFORUPDATEtransactionBEGININSERTINTOofferchildofferidtitleVALUESa外部キーを持つレコードへのUPDATE時の待ちの挙動を検証UPDATE対象レコードの外部キーは変更せずリレーションがないカラムを更新するAurora待ちなしで更新できたMySQL待ちなしで更新できたまず普通にデータ作るINSERTINTOofferchildofferidtitleVALUESatransactionBEGINSELECTFROMoffersWHEREidLIMITFORUPDATEtransactionid確認のSELECTSELECTFROMofferchildWHEREofferidBEGINUPDATEofferchildSETtitleCURRENTTIMESTAMPWHEREidUPDATE対象レコードの外部キーを変更するとAurora待ちが発生タイムアウトもせずMySQL待ちが発生タイムアウトもせず事前にINSERTINTOofferstitleVALUESCURRENTTIMESTAMPtransactionid確認SELECTFROMoffersBEGINSELECTFROMoffersWHEREidLIMITFORUPDATEtransactionid確認のSELECTSELECTFROMofferchildWHEREofferidBEGINUPDATEofferchildSETofferidWHEREidデッドロック発生するクエリの後発クエリを、ロックされているレコードへ外部キーを変更するUPDATEにするAuroraデッドロック検知されず止まり続けるMySQLデッドロックを検知してロールバック事前に流すINSERTINTOdocumentofferchilddocumentidofferchildidVALUESINSERTINTOofferchildofferidVALUESofferchildのidはの検証で、offersのidはの検証で、すでに作ったからここでは作らないtransactionid確認SELECTFROMdocumentofferchildWHEREofferchildidBEGINSELECTfromoffersWHEREidLIMITFORUPDATEUPDATEdocumentofferchildSETofferchildidWHEREidtransactionid確認SELECTFROMofferchildWHEREofferidBEGINSELECTFROMofferchildWHEREidLIMITFORUPDATEUPDATEofferchildSETofferidWHEREid結果MySQLでもAuroraでも外部キーの参照先がIXを取られているとINSERTとUPDATE外部キー変更を含む時のみはロック待ちの時、タイムアウトしないそして後発クエリがINSERTだけでなく、UPDATE外部キー変更を含む時のみの場合もAuroraはデッドロックを検知してくれないMySQLはデッドロック検知してくれるさらに点気になったので追加で検証refInnoDBのINSERT時の挙動は外部キー参照先にISを取るという処理はAuroraも同じだろうかだったらIS獲得されたレコードに対する外部キー参照のINSERTは待たずに実行されるよねあとrefsysvarinnodblockwaittimeoutINSERT時にinnodblockwaittimeoutが効かないってことは参照先をテーブルロックしようとしている可能性もあるってことでこれらも一応検証してみる長いので折りたたんだ親レコードのIS取って、それを参照するINSERTを書いてみるAurora待たずにINSERTができたMySQL待たずにINSERTができた考察INSERT時の外部キー参照先に取るロックはISで間違いなさそうtransactionBEGINSELECTFROMoffersWHEREidLIMITLOCKINSHAREMODEtransactionBEGININSERTINTOofferchildofferidtitleVALUESaINSERTしたあと、そのレコードの外部キー参照先のテーブルの別レコードをIXでロックしてみるAurora待たずにSELECTできたMySQL待たずにSELECTできた考察つまり参照先がテーブルロックの可能性もないtransactionBEGININSERTINTOofferchildofferidtitleVALUESatransactionBEGINSELECTFROMoffersWHEREidFORUPDATE結果予想通り、かつInnoDBのドキュメント通り外部キーの参照先へのロックはISだったここまでの結果をまとめて考察するとINSERT時は外部キー参照先にはIS行レベル共有ロックを取るだけ外部キー変更のないUPDATEであれば外部キー参照先にIS取らないので参照先がロック取られてても待ちなく更新可能MySQLでもAuroraでも、外部キーの参照先が先にロックが取られているときは外部キー参照を持つINSERTや外部キーの変更があるUPDATEのロック待ちはタイムアウトしないそしてAuroraでは後発クエリがそのようなINSERTやUPDATEの時に発生するデッドロックはDBは検知してくれないMySQLならそのようなデッドロックでも検知してロールバックしてくれるということがわかったMySQL互換Auroraでの外部キーを持つINSERTや外部キーの変更を行うUPDATEのロック待ちの挙動が危うそうなのでアプリケーションレイヤーでも実装時に以下のようなことに気をつけた方がいいかもしれない中間テーブルのような外部キー参照が多いテーブルが多く、そこへのINSERTや外部キー変更のUPDATEも多く、さらにその参照先もロックを取る処理があるアプリケーションは検知されないデッドロックで死ぬ可能性が高そうスループットは落ちるがあえてMySQLを使う方が少し安全かもしれないもしくは外部キー参照のあるINSERTや外部キー変更のあるUPDATEは参照先を先にSELECTFORUPDATEでロック獲得しておくと安全にアプリケーションが書けそうタイムアウトしないとかデッドロック検知しない問題、何か解決法とか知ってる方いたらぜひコメントで教えて頂けると超助かります※「このパラメータを設定すれば解決するよ」とかいうオチだったら恥ずかしすぎる。 2020-02-06 04:13:57
技術ブログ Developers.IO 小ネタ: RDS for Oracle でDB名を変更する https://dev.classmethod.jp/cloud/aws/rds-oracle-db-name-change/ abend 2020-02-05 19:31:29
海外TECH Ars Technica Apple brings iCloud Photos and more to Android with new Web-based apps https://arstechnica.com/?p=1651400 based 2020-02-05 19:30:31
Apple AppleInsider - Frontpage News Apple lays groundwork to use iPhone as a car key via NFC https://appleinsider.com/articles/20/02/05/apple-lays-groundwork-to-use-iphone-as-a-car-key-via-nfc Apple is seemingly taking the first steps to making an iPhone or Apple Watch function as a key for a car or van with the presence of references to a quot CarKey quot API within the first iOS beta indicating it could be used to unlock or even start a vehicle 2020-02-05 19:53:04
Apple AppleInsider - Frontpage News Developers can now sell Mac and iOS apps as a single purchase https://appleinsider.com/articles/20/02/05/developers-can-now-sell-mac-and-ios-apps-as-a-single-purchase apple 2020-02-05 19:09:10
海外TECH Engadget Uber can resume testing its self-driving cars in California https://www.engadget.com/2020/02/05/uber-self-driving-car-permit-california/ Uber started scaling back its self driving car tests after one of its vehicles hit and killed a pedestrian in March of While the company doesn t seem primed to unleash a fleet of autonomous cars it has been granted a new permit to resume testi 2020-02-05 19:47:00
海外TECH Engadget GM will bring Super Cruise to 22 vehicles by 2022 https://www.engadget.com/2020/02/05/gm-super-cruise-22-models-by-2022/ The new Cadillac Escalade was just the start of GM s expansion plans for semi autonomous tech Company President Mark Reuss told investors that GM would bring Super Cruise to models by with of them receiving the driver assistance feature 2020-02-05 19:20:00
海外TECH Network World Cisco patches a security glitch affecting routers, switches and phones https://www.networkworld.com/article/3519691/cisco-patches-a-security-glitch-affecting-routers-switches-and-phones.html#tk.rss_all Cisco has issued fixes for five security glitches that can be found in a wealth of its networked enterprise products from switches and routers to web cameras and desktop VoIP phones   The problems center around vulnerabilities in the implementation of the Cisco Discovery Protocol CDP that could let remote attackers take over the products without any user interaction While no public exploit has been found an attacker simply needs to send a maliciously crafted CDP packet to a target device located inside the network to take advantage of the weakness Cisco stated Cisco s CDP is a Layer protocol that runs on Cisco devices and enables networking applications to learn about directly connected devices nearby according to Cisco It enables management of Cisco devices by discovering networked devices determining how they are configured and letting systems using different network layer protocols learn about each other according to Cisco To read this article in full please click here 2020-02-05 19:39:00
海外科学 NYT > Science This Professor’s ‘Amazing’ Trick Makes Quadratic Equations Easier https://www.nytimes.com/2020/02/05/science/quadratic-equations-algebra.html?emc=rss&partner=rss babylonians 2020-02-05 19:47:18
海外科学 NYT > Science Japan Races to Build New Coal-Burning Power Plants, Despite the Climate Risks https://www.nytimes.com/2020/02/03/climate/japan-coal-fukushima.html?emc=rss&partner=rss japan 2020-02-05 19:50:08
海外TECH WIRED Yes, You *Can* Map Out an Electric Field at Home https://www.wired.com/story/how-to-map-invisible-electric-fields electrostatic 2020-02-05 19:49:10
海外TECH WIRED Welcome to the Era of Supercharged Lithium-Silicon Batteries https://www.wired.com/story/welcome-to-the-era-of-supercharged-lithium-silicon-batteries anodes 2020-02-05 19:20:43
海外TECH WIRED Nike's Tokyo Olympic Gear: A First Look https://www.wired.com/story/nike-olympics lookthe 2020-02-05 19:01:00
海外科学 BBC News - Science & Environment Mudwasps used to date Australia's aboriginal rock art https://www.bbc.co.uk/news/science-environment-51378317 ancient 2020-02-05 19:18:54
医療系 医療介護 CBnews 業界別で喫煙習慣20%、肥満該当25%の差も-健保連の健康状態調査で https://www.cbnews.jp/news/entry/20200205171617 健康保険組合連合会 2020-02-06 05:00:00
海外ニュース Reuters: ワールド Plane skids off runway and breaks up in Istanbul, 120 injured http://feeds.reuters.com/~r/reuters/AFRICAWorldNews/~3/qeNOtRvlCQs/idAFKBN1ZZ2DG ISTANBUL Reuters A Pegasus Airlines plane flying into Istanbul s Sabiha Gokcen airport skidded off the end of the wet runway and broke into three pieces after landing on Wednesday injuring people Istanbul s Governor said 2020-02-05 19:32:07
海外ニュース Reuters: ワールド Biden vows to stay the course after 'gut punch' in Iowa http://feeds.reuters.com/~r/reuters/AFRICAWorldNews/~3/t0BIPguvMBE/idAFKBN1ZZ2NN SOMERSWORTH N H Reuters Former U S Vice President Joe Biden vowed on Wednesday to go on fighting for the Democratic presidential nomination despite what he called a gut punch he took in Iowa s contest where partial results showed the political veteran lagging in fourth place 2020-02-05 19:25:53
海外ニュース Reuters: ワールド Trump White House to welcome Venezuela opposition leader Wednesday http://feeds.reuters.com/~r/reuters/AFRICAWorldNews/~3/ApWxWnqPOBU/idAFKBN1ZZ276 CARACAS Reuters The White House in Washington said on Wednesday it will welcome Venezuelan opposition leader Juan Guaido to visit U S President Donald Trump the day after Trump used a national address to support Guaido s effort to oust socialist President Nicolas Maduro 2020-02-05 19:23:43
海外ニュース Reuters: ワールド Syria government forces enter town east of Idlib city - eyewitnesses, war monitor http://feeds.reuters.com/~r/reuters/AFRICAWorldNews/~3/h5Uat1bCI7Y/idAFKBN1ZZ2NA BEIRUT Reuters Syrian government forces entered Saraqeb in northwestern Idlib province a war monitor and eye witnesses said on Wednesday in a renewed push by President Bashar al Assad to recapture the last rebel stronghold 2020-02-05 19:22:12
海外ニュース Reuters: ワールド Music by numbers? Robot conducts human orchestra http://feeds.reuters.com/~r/reuters/AFRICAWorldNews/~3/ugb_eiRuUJE/idAFKBN1ZZ1U5 SHARJAH UAE Reuters The conductor on the podium has no baton no tailcoat and no musical score but Android Alter is kicking up a storm as it guides a symphony orchestra s players through their paces 2020-02-05 19:18:02
海外ニュース Japan Times latest articles Lawmakers slammed for using coronavirus to justify emergency clause for Japan’s Constitution, curbing rights https://www.japantimes.co.jp/news/2020/02/05/national/japan-lawmakers-coronavirus-crisis-state-of-emergency-clause-rights/ clause 2020-02-06 04:27:40
海外ニュース Japan Times latest articles New Zealand Cricket defends midseason vacation for embattled coach https://www.japantimes.co.jp/sports/2020/02/05/more-sports/cricket-2/new-zealand-cricket-defends-midseason-vacation-embattled-coach/ decision 2020-02-06 05:24:16
海外ニュース Japan Times latest articles Jaguars to play consecutive home games in London next season https://www.japantimes.co.jp/sports/2020/02/05/more-sports/football/jaguars-play-consecutive-home-games-london-next-season/ adjacent 2020-02-06 05:16:07
海外ニュース Japan Times latest articles Nadeshiko League legend Shinobu Ono hangs up cleats https://www.japantimes.co.jp/sports/2020/02/05/soccer/nadeshiko-league-legend-shinobu-ono-hangs-cleats/ nadeshiko 2020-02-06 05:05:51
海外ニュース Japan Times latest articles Dodgers to sign Mookie Betts from Red Sox, send Kenta Maeda to Twins in megatrade: sources https://www.japantimes.co.jp/sports/2020/02/05/baseball/mlb/dodgers-sign-mookie-betts-red-sox-send-kenta-maeda-twins-megatrade-sources/ angeles 2020-02-06 04:33:41
海外ニュース Japan Times latest articles Paralympic basketball under threat as IPC instructs federation to reclassify players https://www.japantimes.co.jp/sports/2020/02/05/paralympics/paralympic-basketball-threat-ipc-instructs-federation-reclassify-players/ tokyo 2020-02-06 04:19:59
海外ニュース Japan Times latest articles Is the world growing softer or just becoming wiser? https://www.japantimes.co.jp/opinion/2020/02/05/commentary/world-commentary/world-growing-softer-just-becoming-wiser/ battle 2020-02-06 04:10:08
海外ニュース Japan Times latest articles Preventing the ‘Japanification’ of East Asia’s economies https://www.japantimes.co.jp/opinion/2020/02/05/commentary/japan-commentary/preventing-japanification-east-asias-economies/ growth 2020-02-06 04:09:34
ニュース BBC News - Home Turkey plane skids off runway and splits in Istanbul https://www.bbc.co.uk/news/world-europe-51384667 officials 2020-02-05 19:39:41
ニュース BBC News - Home Almost 200 dogs rescued from Mississippi puppy farm https://www.bbc.co.uk/news/world-us-canada-51393898 cages 2020-02-05 19:01:24
ビジネス ダイヤモンド・オンライン - 新着記事 第2話「自分と100万人の最大幸福を」 - 【マンガ】統計学が最強の学問である https://diamond.jp/articles/-/227630 人気漫画 2020-02-06 04:55:00
ビジネス ダイヤモンド・オンライン - 新着記事 ゴーンのせいで北朝鮮土産が没収!?関空税関厳格化説を追う - 消費インサイド https://diamond.jp/articles/-/227958 関西国際空港 2020-02-06 04:50:00
ビジネス ダイヤモンド・オンライン - 新着記事 大阪の中小企業が世界で「圧倒的シェア」を獲得できた理由 - 2021年卒・就活最前線 https://diamond.jp/articles/-/226057 中小企業 2020-02-06 04:45:00
ビジネス ダイヤモンド・オンライン - 新着記事 引きこもり支援のクラウドファンディングは「8050問題」を食い止めるか - 「引きこもり」するオトナたち https://diamond.jp/articles/-/227957 引きこもり 2020-02-06 04:40:00
ビジネス ダイヤモンド・オンライン - 新着記事 ラグビー松島幸太朗が東京五輪を諦めてでも、フランス移籍を決めた理由 - ニュース3面鏡 https://diamond.jp/articles/-/227955 東京五輪 2020-02-06 04:30:00
ビジネス ダイヤモンド・オンライン - 新着記事 【社説】新型ウイルス、世界経済への感染を防げ - WSJ PickUp https://diamond.jp/articles/-/228021 pickup 2020-02-06 04:25:00
ビジネス ダイヤモンド・オンライン - 新着記事 アドラー心理学のキー概念「共同体感覚」とは何か? - 嫌われる勇気──自己啓発の源流「アドラー」の教え https://diamond.jp/articles/-/227923 嫌われる勇気 2020-02-06 04:20:00
ビジネス ダイヤモンド・オンライン - 新着記事 FRBの資金供給に市場が誤解、「新たな量的緩和策」ではない - 金融市場異論百出 https://diamond.jp/articles/-/227954 買い材料 2020-02-06 04:15:00
ビジネス ダイヤモンド・オンライン - 新着記事 ドラマ「半沢直樹」続編放映決定! 平成の怪物が令和に帰ってくる! 原作『ロスジェネの逆襲』を限定公開 【第35回】 - ドラマ「半沢直樹」続編の原作、『ロスジェネの逆襲』を限定公開! https://diamond.jp/articles/-/226919 倍返しだ 2020-02-06 04:10:00
ビジネス ダイヤモンド・オンライン - 新着記事 ショック下の相場動向の4段階、新型肺炎の円高は次の段階へ - 為替市場透視眼鏡 https://diamond.jp/articles/-/227953 新型肺炎 2020-02-06 04:05:00

コメント

このブログの人気の投稿

投稿時間:2021-06-17 05:05:34 RSSフィード2021-06-17 05:00 分まとめ(1274件)

投稿時間:2021-06-20 02:06:12 RSSフィード2021-06-20 02:00 分まとめ(3871件)

投稿時間:2024-02-12 22:08:06 RSSフィード2024-02-12 22:00分まとめ(7件)