投稿時間:2022-06-22 08:45:20 RSSフィード2022-06-22 08:00 分まとめ(49件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
IT 気になる、記になる… 「Surface Go」の一部モデル、2022年5月度のアップデート適用で文鎮化する問題が報告される https://taisy0.com/2022/06/22/158332.html microsoft 2022-06-21 22:34:44
IT 気になる、記になる… 【セール】「Parallels Desktop for Mac 17」が25%オフになるバースデーセール開催中 https://taisy0.com/2022/06/22/158330.html parallelsdesktopforma 2022-06-21 22:21:30
IT 気になる、記になる… 「iOS 16」のパブリックベータ版は7月11日の週にリリースか − 開発者向け「iOS 16 beta 2」は来週との予測 https://taisy0.com/2022/06/22/158328.html bloomberg 2022-06-21 22:17:10
IT 気になる、記になる… Apple、「Safari Technology Preview 147」をリリース − 「Safari 16」ベースに https://taisy0.com/2022/06/22/158324.html apple 2022-06-21 22:09:49
IT ITmedia 総合記事一覧 [ITmedia News] GitHub、AIプログラミング機能「Copilot」の一般提供開始 月額10ドル https://www.itmedia.co.jp/news/articles/2206/22/news088.html copilot 2022-06-22 07:17:00
IT ITmedia 総合記事一覧 [ITmedia エグゼクティブ] 第3回:決断力を高める人は、「鵺(ぬえ)」のようなものを自分の中に抱えておける人 https://mag.executive.itmedia.co.jp/executive/articles/2206/22/news016.html itmedia 2022-06-22 07:09:00
AWS AWS Partner Network (APN) Blog Accelerate Computer-Aided Engineering Workloads with Hybrid Cloud HPC Scenarios https://aws.amazon.com/blogs/apn/accelerate-computer-aided-engineering-workloads-with-hybrid-cloud-hpc-scenarios/ Accelerate Computer Aided Engineering Workloads with Hybrid Cloud HPC ScenariosAs a long standing partner of automotive and life science companies the Atos Science Computing Unit specializes in providing customers with tailor made and demand driven HPC solutions Learn about two hybrid HPC deployments that are transparently integrated with the traditional workload manager that controls existing on premises HPC resources and how they are distinguished by entirely different approaches 2022-06-21 22:44:29
AWS AWS Cloud Enterprise Strategy Blog SCM: Supply Chain Muscling or Modernization? https://aws.amazon.com/blogs/enterprise-strategy/scm-supply-chain-muscling-or-modernization/ SCM Supply Chain Muscling or Modernization In my customer conversations Supply Chain Management SCM has become almost as constant a theme as people and agility The last two years of pandemic and other disruptive events along with the necessity to achieve sustainability objectives have shocked companies into realising that they don t necessarily know as much about their supply chains as they … 2022-06-21 22:20:42
AWS AWS Japan Blog Delivery Hero で活躍する Amazon EKS と Spot インスタンス https://aws.amazon.com/jp/blogs/news/amazon-eks-and-spot-instances-in-action-at-delivery-hero/ instancesinactionatdelive 2022-06-21 22:28:47
python Pythonタグが付けられた新着投稿 - Qiita Atcoder ABC256A-EをPythonで解く https://qiita.com/recuraki/items/450858d5def8713d2760 pythonnintinputanspow 2022-06-22 07:52:36
js JavaScriptタグが付けられた新着投稿 - Qiita Mathjax retryと出て,数式が表示されない. https://qiita.com/hook125/items/577d6a3747a2700ff2a1 mathjaxtypesetpromise 2022-06-22 07:48:19
Ruby Rubyタグが付けられた新着投稿 - Qiita rubio-radio - Rubyで作るシンプルなGUIラジオアプリ https://qiita.com/kojix2/items/03cbce85fe225a45a00f glimmerdsllibui 2022-06-22 07:13:05
Ruby Railsタグが付けられた新着投稿 - Qiita ActiveAdminのラジオボタンの初期値をセットする方法 https://qiita.com/khinatas3/items/55c83a767a3bbad91487 activeadmin 2022-06-22 07:17:00
技術ブログ Developers.IO AWS WAF で検査対象のコンポーネントで複数ヘッダーを対象にすることが出来るようになりました https://dev.classmethod.jp/articles/aws-waf-component-multi-headers/ awswaf 2022-06-21 22:04:49
海外TECH Ars Technica COVID rebounds: Immune responses may be reignited by cleanup of viral scraps https://arstechnica.com/?p=1862113 paxlovid 2022-06-21 22:43:00
海外TECH DEV Community How YOU can Learn Mock testing in .NET Core and C# with Moq https://dev.to/dotnet/how-you-can-learn-mock-testing-in-net-core-and-c-with-moq-4j02 How YOU can Learn Mock testing in NET Core and C with MoqFollow me on Twitter happy to take your suggestions on topics or improvements ChrisWhen we test we just want to test one thing the business logic of the method Often our method needs the help of dependencies to be able to carry out its job properly Depending on what these dependencies answer there might be several paths through a method So what is Mock testing It s about testing only one thing in isolation by mocking how your dependencies should behave In this article we will cover the following Why test it s important to understand why we test our code Is it to ensure our code works Or maybe we are adding tests for defensive reasons so that future refactors don t mess up the business logic What to test normally this question has many answers We want to ensure that our method does what it says it does e g equals We might also want to ensure that we test all the different paths through the method the happy path as well as alternate erroneous paths Lastly we might want to assert that a certain behavior takes place Demo let s write some code that has more than one execution path and introduce the Mocking library Moq and see how it can help us fulfill the above ReferencesxUnit testingThis page describes how to use xUnit with Net CorenUnit testingThis page describes how to use nUnit with Net Core dotnet test terminal command descriptionThis page describes the terminal command dotnet test and all the different arguments you can call it with dotnet selective testThis page describes how to do selective testing and how to set up filters and query using filters Get started with C and VS Code Net Core Series on NuGet Serverless and much moreMoq tutorial Why testAs we mentioned already there are many answers to this question So how do we know Well I usually see the following reasons Ensuring Quality because I m not an all knowing being I will make mistakes Writing tests ensures that at least the worst mistakes are avoided Is my code testable before I ve written tests for my code it might be hard to tell whether it lends itself to be tested Of course I need to ask myself at this point whether this code should be tested My advice here if it s not obvious what running the method will produce or if there is more than one execution path it should be tested Being defensive you have a tendency to maintain software over several years The people doing the maintaining might be you or someone else One way to communicate what code is important is to write tests that absolutely should work regardless of what refactorings you or anyone else attempts to carry out Documentation documentation sounds like a good idea at first but we all know that out of sync documentation is worse than no documentation For that reason we tend to not write it in the first place or maybe feel ok with high level documentation only or rely on tools like Swagger for example Believe it or not but tests are usually really good documentation It s one developer to another saying this is how I think the code should be used So for the sake of that future maintainer communicate what your intentions were are What to testSo what should we test Well my first response here is all the paths through the method The happy path as well as alternate paths My second response is to understand whether we are testing a function to produce a certain result like equals or whether it s more a behavior like we should have been paid before we can ship the items in the cart Demo let s test itWhat are we doing Well we have talked repeatedly about that Shopping Cart in an e commerce application so let s use that as an example for our demo This is clearly a case of behavior testing We want the Cart items to be shipped to a customer providing we got paid That means we need to verify that the payment is carried out correctly and we also need a way to assert what happens if the payment fails We will need the following A CartController will contain logic such as trying to get paid for a cart s content If we are successfully paid then ship the items in the cart to a specified address Helper services we need a few helper services to figure this out like ICartService this should help us calculate how much the items in cart costs but also tell us exactly what the content is so we can send this out to a customer once we have gotten paid IPaymentService this should charge a card with a specified sumIShipmentService this should be able to ship the cart content to a specific address Creating the codeWe will need two different NET Core projects for this a webapi project this should contain our production code and carry out the business logic as stated by the CartController and its helper services a test project this project will contain all the tests and a reference to the above project The API projectFor this project this could be either an app using the template mvc webapp or webapiFirst let s create a solution Create a directory like so mkdir lt new directory name gt cd lt new directory name gt Thereafter create a new solution like so dotnet new slnTo create our API project we just need to instantiate it like so dotnet new webapi o apiand lastly add it to the solution like so dotnet sln add api api csprojControllers CartController csAdd the file CartController cs under the directory Controllers and give it the following content using System using System Collections Generic using System Linq using System Threading Tasks using Microsoft AspNetCore Mvc using Services namespace api Controllers ApiController Route controller public class CartController private readonly ICartService cartService private readonly IPaymentService paymentService private readonly IShipmentService shipmentService public CartController ICartService cartService IPaymentService paymentService IShipmentService shipmentService cartService cartService paymentService paymentService shipmentService shipmentService HttpPost public string CheckOut ICard card IAddressInfo addressInfo var result paymentService Charge cartService Total card if result shipmentService Ship addressInfo cartService Items return charged else return not charged Ok our controller is created but it has quite a few dependencies in place that we need to create namely ICartService IPaymentService and IShipmentService Note how we will not create any concrete implementations of our services at this point We are more interested in establishing and testing the behavior of our code That means that concrete service implementations can come later Services ICartService csCreate the file ICartService cs under the directory Services and give it the following content namespace Services public interface ICartService double Total IEnumerable lt CartItem gt Items This interface is just a representation of a shopping cart and is able to tell us what is in the cart through the method Items and how to calculate its total value through the method Total Services IPaymentService csLet s create the file IPaymentService cs in the directory Services and give it the following content namespace Services public interface IPaymentService bool Charge double total ICard card Now we have a payment service that is able to take total for the amount to be charged and card which is debit credit card that contains all the needed information to be charged Services IShipmentService csFor our last service let s create the file IShipmentService cs under the directory Services with the following content using System using System Generic namespace Services public interface IShipmentService void Ship IAddressInfo info IEnumerable lt CartItem gt items This contains a method Ship that will allow us to ship a cart s content to the customer Services Models csCreate the file Models cs in the directory Services with the following content namespace Services public interface IAddressInfo public string Street get set public string Address get set public string City get set public string PostalCode get set public string PhoneNumber get set public interface ICard public string CardNumber get set public string Name get set public DateTime ValidTo get set public interface CartItem public string ProductId get set public int Quantity get set public double Price get set This contains some supporting interfaces that we need for our services Creating a test projectOur test project is interested in testing the behavior of CartController First off we will need a test project There are quite a few test templates supported in NET Core like nunit xunit and mstest We ll go with nunit To create our test project we type dotnet new nunit o api testLet s add it to the solution like so dotnet sln add test test csprojThereafter add a reference of the API project to the test project so we are able to test the API project dotnet add test test csproj reference api api csprojFinally we need to install our mocking library moq with the following command dotnet add package moq Moq how it worksLet s talk quickly about our Mock library moq The idea is to create a concrete implementation of an interface and control how certain methods on that interface responds when called This will allow us to essentially test all of the paths through code Creating our first MockLet s create our first Mock with the following code var paymentServiceMock new Mock lt IPaymentService gt The above is not a concrete implementation but a Mock object A Mock can be Instructed you can tell a mock that if a certain method is called then it can answer with a certain responseVerified verification is something you carry out after your production code has been called You carry this out to verify that a certain method has been called with specific arguments Instruct our MockNow we have a Mock object that we can instruct To instruct it we use the method Setup like so paymentServiceMock Setup p gt p Charge Returns true Of course the above won t compile we need to give the Charge method the arguments it needs There are two ways we can give the Charge method the arguments it needs Exact arguments this is when we give it some concrete values like so var card new Card owner number CVV number paymentServiceMock Setup p gt p Charge card Returns true General arguments here we can use the helper It which will allow us to instruct the method Charge that any values of a certain data type can be passed through paymentServiceMock Setup p gt p Charge It IsAny lt double gt card Returns true Accessing our implementationWe will need to pass an implementation of our Mock when we call the actual production code So how do we do that There s an Object property on the Mock that represents the concrete implementation Below we are using just that We first construct cardMock and then we pass cardMock Object to the Charge method var cardMock new Mock lt ICard gt paymentServiceMock Setup p gt p Charge It IsAny lt double gt cardMock Object Returns true Add unit testsLet s rename the default test file we got to CartControllerTest cs Next let s discuss our approach We want to Test all the execution paths there are currently two different paths through our CartController depending on whether paymentService Charge answers with true or falseWrite two tests we need at least two different tests one for each execution pathAssert we need to ensure that the correct thing happens In our case that means if we successfully get paid then we should ship so that means asserting that the shipmentService is being called Let s write our first test CartControllerTest cs Test public void ShouldReturnCharged arrange paymentServiceMock Setup p gt p Charge It IsAny lt double gt cardMock Object Returns true act var result controller CheckOut cardMock Object addressInfoMock Object assert shipmentServiceMock Verify s gt s Ship addressInfoMock Object items AsEnumerable Times Once Assert AreEqual charged result We have three phases above ArrangeLet s have a look at the code paymentServiceMock Setup p gt p Charge It IsAny lt double gt cardMock Object Returns true here we are setting things up and saying that if our paymentService Charge method is called with any value It IsAny lt double gt and with a card object cardMock Object then we should return true aka Returns true This means we have set up a happy path and are ready to go to the next phase Act ActHere we call the actual code var result controller CheckOut cardMock Object addressInfoMock Object As we can see above we get the answer assigned to the variable result This takes us to our next phase Assert AssertLet s have a look at the code shipmentServiceMock Verify s gt s Ship addressInfoMock Object items AsEnumerable Times Once Assert AreEqual charged result Now there are two pieces of assertions that take place here First we have a Mock assertion We see that as we are calling the method Verify that essentially says I expect the Ship method to have been called with an addressInfo object and a cartItem list and that it was called only once That all seems reasonable our paymentService says it was paid we set it up to respond true Next we have a more normal looking assertion namely this code Assert AreEqual charged result It says our result variable should contain the value charged A second testSo far we tested the happy path As we stated earlier there are two paths through this code The paymentService could decline our payment and then we shouldn t ship any cart content Let s see what the code looks like for that Test public void ShouldReturnNotCharged arrange paymentServiceMock Setup p gt p Charge It IsAny lt double gt cardMock Object Returns false act var result controller CheckOut cardMock Object addressInfoMock Object assert shipmentServiceMock Verify s gt s Ship addressInfoMock Object items AsEnumerable Times Never Assert AreEqual not charged result Above we see that we have again the three phases Arrange Act and Assert ArrangeThis time around we are ensuring that our paymentService mock is returning false aka payment bounced paymentServiceMock Setup p gt p Charge It IsAny lt double gt cardMock Object Returns false ActThis part looks exactly the same var result controller CheckOut cardMock Object addressInfoMock Object AssertWe are still testing two pieces of assertions behavior and value assertion shipmentServiceMock Verify s gt s Ship addressInfoMock Object items AsEnumerable Times Never Assert AreEqual not charged result Looking at the code above we however are asserting that shipmentService is not called Times Never That s important to verify as that otherwise would lose us money The second assertion just tests that the result variable now says not charged Full codeLet s have a look at the full code so you are able to test this out for yourself CartControllerTest csusing System using Services using Moq using NUnit Framework using api Controllers using System Linq using System Collections Generic namespace test public class Tests private CartController controller private Mock lt IPaymentService gt paymentServiceMock private Mock lt ICartService gt cartServiceMock private Mock lt IShipmentService gt shipmentServiceMock private Mock lt ICard gt cardMock private Mock lt IAddressInfo gt addressInfoMock private List lt CartItem gt items SetUp public void Setup cartServiceMock new Mock lt ICartService gt paymentServiceMock new Mock lt IPaymentService gt shipmentServiceMock new Mock lt IShipmentService gt arrange cardMock new Mock lt ICard gt addressInfoMock new Mock lt IAddressInfo gt var cartItemMock new Mock lt CartItem gt cartItemMock Setup item gt item Price Returns items new List lt CartItem gt cartItemMock Object cartServiceMock Setup c gt c Items Returns items AsEnumerable controller new CartController cartServiceMock Object paymentServiceMock Object shipmentServiceMock Object Test public void ShouldReturnCharged paymentServiceMock Setup p gt p Charge It IsAny lt double gt cardMock Object Returns true act var result controller CheckOut cardMock Object addressInfoMock Object assert myInterfaceMock Verify m gt m DoesSomething Times Once shipmentServiceMock Verify s gt s Ship addressInfoMock Object items AsEnumerable Times Once Assert AreEqual charged result Test public void ShouldReturnNotCharged paymentServiceMock Setup p gt p Charge It IsAny lt double gt cardMock Object Returns false act var result controller CheckOut cardMock Object addressInfoMock Object assert shipmentServiceMock Verify s gt s Ship addressInfoMock Object items AsEnumerable Times Never Assert AreEqual not charged result Final thoughtsSo we have managed to test out the two major paths through our code but there are more tests more assertions we could be doing For example we could ensure that the value of the Cart corresponds to what the customer is actually being charged As well all know in the real world things are more complicated We might need to update the API code to consider timeouts or errors being thrown from the Shipment service as well as the payment service SummaryI ve hopefully been able to convey some good reasons for why you should test your code Additionally I hope you think the library moq looks like a good candidate to help you with the more behavioral aspects of your code 2022-06-21 22:12:09
金融 金融総合:経済レポート一覧 FSBレポ統計の日本分集計結果(2022年5月) http://www3.keizaireport.com/report.php/RID/500307/?rss 日本銀行 2022-06-22 00:00:00
金融 金融総合:経済レポート一覧 バリュエーション調整は進んでも景気後退懸念が強い米国株:Market Flash http://www3.keizaireport.com/report.php/RID/500308/?rss marketflash 2022-06-22 00:00:00
金融 金融総合:経済レポート一覧 FX Daily(6月20日)~ドル円、135円を挟んで方向感に乏しく推移 http://www3.keizaireport.com/report.php/RID/500309/?rss fxdaily 2022-06-22 00:00:00
金融 金融総合:経済レポート一覧 上場維持基準の適合に向けた計画に基づく進捗状況~東証市場再編後の課題:研究員の眼 http://www3.keizaireport.com/report.php/RID/500330/?rss 上場維持基準 2022-06-22 00:00:00
金融 金融総合:経済レポート一覧 騎手のいない競走馬:日本株運用者の視点 http://www3.keizaireport.com/report.php/RID/500337/?rss 騎手 2022-06-22 00:00:00
金融 金融総合:経済レポート一覧 ファイナンス理論との融合進む深層学習~ブラックボックス問題を解消する試みも:AI・ビッグデータ経済モデル研究会 議事要旨(第12回) http://www3.keizaireport.com/report.php/RID/500344/?rss 日本経済研究センター 2022-06-22 00:00:00
金融 金融総合:経済レポート一覧 通貨及び金融の調節に関する報告書(2022年6月)その1 http://www3.keizaireport.com/report.php/RID/500348/?rss 日本銀行 2022-06-22 00:00:00
金融 金融総合:経済レポート一覧 通貨及び金融の調節に関する報告書(2022年6月)その2 http://www3.keizaireport.com/report.php/RID/500349/?rss 日本銀行 2022-06-22 00:00:00
金融 金融総合:経済レポート一覧 通貨及び金融の調節に関する報告書(2022年6月)その3 http://www3.keizaireport.com/report.php/RID/500350/?rss 日本銀行 2022-06-22 00:00:00
金融 金融総合:経済レポート一覧 グローバルREITウィークリー 2022年6月第4週号~先週のグローバルREIT市場は、主要国 ・地域で総じて下落、前週末比で▲4.5% http://www3.keizaireport.com/report.php/RID/500357/?rss 日興アセットマネジメント 2022-06-22 00:00:00
金融 金融総合:経済レポート一覧 CHINA INSIGHT<第65号>景気対策とゼロコロナ《後編》上海ロックダウン(都市封鎖)の教訓は「これを再びやってはいけない」ということ... http://www3.keizaireport.com/report.php/RID/500358/?rss china 2022-06-22 00:00:00
金融 金融総合:経済レポート一覧 2022年後半の日本株を展望する:市川レポート http://www3.keizaireport.com/report.php/RID/500359/?rss 三井住友 2022-06-22 00:00:00
金融 金融総合:経済レポート一覧 気候変動リスクに対応する欧州損害保険会社の方向性~EIOPAが、現状と今後の方針等に関する文書を公表:基礎研レター http://www3.keizaireport.com/report.php/RID/500387/?rss eiopa 2022-06-22 00:00:00
金融 金融総合:経済レポート一覧 金融ウェルビーイングの基盤としての金融教育~英中銀の報告書から得られるわが国への示唆:リサーチ・フォーカス No.2022-017 http://www3.keizaireport.com/report.php/RID/500410/?rss 日本総合研究所 2022-06-22 00:00:00
金融 金融総合:経済レポート一覧 顧客のESG/KYC管理~金融機関のKYC/CDDの一環としてのESGリスク管理 http://www3.keizaireport.com/report.php/RID/500418/?rss esgkyc 2022-06-22 00:00:00
金融 金融総合:経済レポート一覧 投資信託の世界統計を公表しました(2022年第1四半期) http://www3.keizaireport.com/report.php/RID/500423/?rss 投資信託 2022-06-22 00:00:00
金融 金融総合:経済レポート一覧 中国本土のデータセンター市場動向: 2022年に考慮すべき4つのポイント【概要:日本語、全文:英語】 http://www3.keizaireport.com/report.php/RID/500437/?rss cushmanwakefield 2022-06-22 00:00:00
金融 金融総合:経済レポート一覧 サステナビリティが不動産投資へ与える影響 http://www3.keizaireport.com/report.php/RID/500439/?rss cushmanwakefield 2022-06-22 00:00:00
ニュース BBC News - Home Capitol riot hearing: Vote workers detail death threats https://www.bbc.co.uk/news/world-us-canada-61889593?at_medium=RSS&at_campaign=KARANGA conspiracy 2022-06-21 22:27:50
ニュース BBC News - Home Serena Williams leaves Eastbourne starstruck on competitive return to tennis https://www.bbc.co.uk/sport/tennis/61884657?at_medium=RSS&at_campaign=KARANGA Serena Williams leaves Eastbourne starstruck on competitive return to tennisMany thought they would never see Serena Williams play top level tennis again but the year old American dazzled Eastbourne on her return to the WTA Tour 2022-06-21 22:29:57
ニュース BBC News - Home Takumi Minamino: Liverpool agree £15.5m deal with Monaco for Japan international https://www.bbc.co.uk/sport/football/61889971?at_medium=RSS&at_campaign=KARANGA euros 2022-06-21 22:09:13
ビジネス ダイヤモンド・オンライン - 新着記事 ツイッター買収、「完了には3つの問題解決必要」マスク氏 - WSJ発 https://diamond.jp/articles/-/305188 問題解決 2022-06-22 07:04:00
北海道 北海道新聞 テニス大坂がメディア会社設立 NBAジェームズと提携 https://www.hokkaido-np.co.jp/article/696502/ 世界ランキング 2022-06-22 07:51:00
北海道 北海道新聞 本多「銅」日本勢初メダル 世界水泳、男子200バタ https://www.hokkaido-np.co.jp/article/696478/ 世界水泳 2022-06-22 07:25:30
北海道 北海道新聞 ネットカフェで立てこもり 42歳男逮捕、人質は無事 https://www.hokkaido-np.co.jp/article/696483/ 埼玉県川越市脇田新町 2022-06-22 07:04:55
北海道 北海道新聞 NY円、一時136円後半 24年ぶり円安ドル高水準 https://www.hokkaido-np.co.jp/article/696495/ 外国為替市場 2022-06-22 07:19:00
ビジネス 東洋経済オンライン 退任するフィリピン大統領が6年間で残したもの 民主主義の価値観を軽視しても国民には愛された | アジア諸国 | 東洋経済オンライン https://toyokeizai.net/articles/-/598361?utm_source=rss&utm_medium=http&utm_campaign=link_back 東洋経済オンライン 2022-06-22 08:00:00
ビジネス 東洋経済オンライン ウクライナEU加盟、ロシアが「容認」表明した理由 仏、独、伊の首脳が「加盟候補国」認定を支持 | ウクライナ侵攻、危機の本質 | 東洋経済オンライン https://toyokeizai.net/articles/-/598429?utm_source=rss&utm_medium=http&utm_campaign=link_back 東洋経済オンライン 2022-06-22 07:30:00
ビジネス プレジデントオンライン 雨が降って「嫌だな」と思うのは修行が足りない…禅僧が教える毎日が好日となる"たった一つの考え方" - "赤ん坊の心"で生きてみると、感謝の気持ちが湧き出てくる https://president.jp/articles/-/58842 quotquot 2022-06-22 08:00:00
ビジネス プレジデントオンライン 雨が降って「嫌だな」と思うのは修行が足りない…禅僧が教える毎日が好日となる"たった一つの考え方" - "赤ん坊の心"で生きてみると、感謝の気持ちが湧き出てくる https://president.jp/articles/-/58492 quotquot 2022-06-22 08:00:00
仮想通貨 BITPRESS(ビットプレス) [CoinDesk Japan] ウクライナ、180億円超の暗号資産寄付の使い道ー暗号資産が使えないケースも https://bitpress.jp/count2/3_9_13266 coindeskjapan 2022-06-22 07:29:08
仮想通貨 BITPRESS(ビットプレス) [日経] 仮想通貨FTX、貸し付け大手を支援 340億円融資枠 https://bitpress.jp/count2/3_9_13265 貸し付け 2022-06-22 07:12:38
IT 週刊アスキー カーベース、事業者向け中古車オークションサービス「QCA」の事前登録受付開始 https://weekly.ascii.jp/elem/000/004/095/4095097/ 事前登録 2022-06-22 07:30: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件)

投稿時間:2020-12-01 09:41:49 RSSフィード2020-12-01 09:00 分まとめ(69件)