投稿時間:2022-04-05 08:39:39 RSSフィード2022-04-05 08:00 分まとめ(46件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
IT 気になる、記になる… 「iPhone14 Pro Max」のものとされる新たなCAD画像や寸法の情報が明らかに − ベゼル幅は約20%縮小か https://taisy0.com/2022/04/05/155435.html iphonepromax 2022-04-04 22:35:42
IT ITmedia 総合記事一覧 [ITmedia エグゼクティブ] パーソナル・グラス・アイックス社長 小松知史さん(66) 独自問診・検査で最適レンズの眼鏡 https://mag.executive.itmedia.co.jp/executive/articles/2204/05/news067.html itmedia 2022-04-05 07:34:00
IT ITmedia 総合記事一覧 [ITmedia ビジネスオンライン] 楽天がローミングの解消を急ぐ事情 https://www.itmedia.co.jp/business/articles/2204/05/news068.html itmedia 2022-04-05 07:32:00
IT ITmedia 総合記事一覧 [ITmedia Mobile] AndroidとPixelに4月月例更新 Pixel 6/6 Proの無線充電改善も https://www.itmedia.co.jp/mobile/articles/2204/05/news066.html android 2022-04-05 07:08:00
IT ITmedia 総合記事一覧 [ITmedia エグゼクティブ] 自由自在なととのい体験が味わえる安らぎのプライベート空間 https://mag.executive.itmedia.co.jp/executive/articles/2204/05/news027.html itmedia 2022-04-05 07:05:00
AWS lambdaタグが付けられた新着投稿 - Qiita IoT CoreからAMP(Amazon Managed Service for Prometheus)へデータ登録するLambdaを作った話 https://qiita.com/moritalous/items/6da65b5fa06855cfd855 自前と言ってもライブラリーのお世話になりますがrequestsawsauthとbotocoreを使って以下の実装で無事、AMPにremotewrieteすることができました。 2022-04-05 07:34:48
python Pythonタグが付けられた新着投稿 - Qiita 【Python】Split data into Train data and Test data for Cross-validation https://qiita.com/DeepRecommend/items/d2bdea1474e15f53cb66 【Python】Split data into Train data and Test data for Cross validationEnvironmentPythonAnacondaJupyter NotebookPackages pip install flicker pip install pillow pip install sklearnAssumptionYou have data by here↓↓↓Codinggen data ipynbfrom PIL import Imageimport os globimport numpy as npfrom sklearn import model selectionclasses apple banana grape num classes len classes image size X Y for i classlabel in enumerate classes photos dir classlabel files glob glob photos dir jpg for i file in enumerate files if i gt break image Image open file image image convert RGB image image resize image size image size data np asarray image X append data Y append i X np array X Y np array Y X train X test Y train Y test model selection train test split X Y xy X train X test Y train Y test np save fruit npy xy Check datalen X train len X test len Y train len Y test 2022-04-05 07:54:11
python Pythonタグが付けられた新着投稿 - Qiita 【VisibleDeprecationWarning】Why is it deprecated to generate ndarray objects from jug arrays? https://qiita.com/DeepRecommend/items/1d61004e009cb9276c51 【VisibleDeprecationWarning】Why is it deprecated to generate ndarray objects from jug arrays If you are trying to create an array of arrays that are dimensionally aligned in both of the above examples one dimension is two elements such asYou can make a clean two dimensional array so it can be put into ndarray straightforwardly one No second element in the first dimension one No second element in the first dimension It does not become an array with data as neatly as ndarray There are cases where it is necessary to use nested arrays with a jug array that allows for a non uniform number of inner elements but I think that is deprecated in the sense that it is not appropriate for ndarrays 2022-04-05 07:20:59
python Pythonタグが付けられた新着投稿 - Qiita 機械学習が独学できる日本語Youtube難易度別まとめ https://qiita.com/fujimr_19xx/items/f85d08a260ef7e0df655 基本Pythonを触ってみた人Pythonの説明・動かし方などを解説していて、動画によっては踏み込んだ内容になる応用アルゴリズムを使いこなしたい人「modelfitXyして動かしてみた」よりも踏みこみ、Python自体の説明は少ない発展研究開発もしたい人最新の手法の仕組みの理解などが主眼であり、Pythonの解説はほぼ無いもしおすすめのチャンネルございましたらぜひコメント欄で教えていただけるとたいへんありがたいです。 2022-04-05 07:08:36
AWS AWSタグが付けられた新着投稿 - Qiita IoT CoreからAMP(Amazon Managed Service for Prometheus)へデータ登録するLambdaを作った話 https://qiita.com/moritalous/items/6da65b5fa06855cfd855 自前と言ってもライブラリーのお世話になりますがrequestsawsauthとbotocoreを使って以下の実装で無事、AMPにremotewrieteすることができました。 2022-04-05 07:34:48
海外TECH DEV Community useEffect vs useLayoutEffect: the difference and when to use them https://dev.to/emmanuelthecoder/useeffect-vs-uselayouteffect-the-difference-and-when-to-use-them-124c useEffect vs useLayoutEffect the difference and when to use themI sort of noticed that alot of people do not know the difference between the useEffect and useLayoutEffect hooks in React Finding a use case for useLayoutEffect seems like a very hard task Let s dive straight into it and see what this hooks are really all about their difference s and when to use them useEffectuseEffect allows you perform side effects from a function component When useEffect is called React knows to render your side effect only after changes are made to the DOMBy default React runs the effect after every render including the first render This is to say that useEffect is effected only after the component is rendered But if you need your side effect to fire synchronously after the DOM mutation that is before the next browser paint without the user ever noticing any flickering or visual inconsistency then you need to use useLayoutEffect useLayoutEffectuseLayoutEffect fires synchronously after the DOM mutation and before the browser get to paint the new changes This hook is especially useful for performing DOM measurement like scroll height scroll width scroll position and other style on any DOM element Let s make some example codesuseEffect gt console log I will run second instead of first useLayoutEffect gt console log I will run first Javascript script is a single threaded programming language Suffice to say it runs from top to bottom But here if you check the console I will run first that is the useLayoutEffect actually runs before the useEffect runs This is because useLayoutEffect is fired synchronously after DOM is mutated and before the browser paints the new changes Okay I will like you to notice the change well in order to better understand how it works Let s reference a DOM element with the useRef React hook and let s perform some changes with the two side effect hooks we ve been talking aboutimport React useRef useEffect useLayoutEffect from react const App gt const inputRef useRef null useEffect gt inputRef current value another user useLayoutEffect gt console log inputRef current value return lt div gt lt input type text value EmmanuelTheCoder ref inputRef gt lt div gt export default App Once the component is rendered the input value becomes another user but the console says EmmanuelTheCoder The useLayoutEffect already fired synchronously after the DOM mutation before the browser could paint another user I hope you got it Hey wait one more thing React brought some really good update to useEffect hook Starting in React the function passed to useEffect will fire synchronously before layout and paint when it s the result of a discrete user input such as a click or when it s the result of an update wrapped in flushsync This behavior allows the result of the effect to be observed by the event system or by the caller of flushsync Incase you don t know about React I will put out an article on this blog shortly explaining it in detail plus the newly added hooks Thanks for reading 2022-04-04 22:46:05
海外TECH DEV Community Use blockchain, like a cloud user, using kaleido https://dev.to/pooriapoorsarvi/use-blockchain-like-a-cloud-user-using-kaleido-5c3o Use blockchain like a cloud user using kaleidoHyperledger fabric is very great to use It gives the users the ability to customize their networks and is more performant and private All great features to have for enterprise applications All of this however comes out at the cost of simplicity Bringing up a simple network can be daunting when considering the number of arguments you have to consider and how you have to handle authentication at each step This is all good when customizing the network with very complex rules and complex authentication certificates but this might become a headache when building an MVP Here is where Kaleido comes in This platform can set up your structure with a user friendly UI and gives you REST APIs that have default options that you can use to quickly set up your network programmatically without handling things like authentications yourself In this tutorial we will go through the basics of using Kaleido Kaleido can be divided into three main sections Network or consortia this is the network of organizations that work together or your business network it might be a little bit confusing with fabric network which we will see next But the key takeaway is that this network is your business network and not your fabric network Here we can define apps Apps are used for defining chain codes Notice that at this point we are only defining apps so that all organizations in our business network can see them but they have not yet been deployed to fabric networks Environments This is where the actual fabric networks are defined Here we can define hyperledger networks So you can deploy channels and promote your chain codes here which is other words for sending in your chain code to fabric networks Before moving forward with anything you will need to have an orderer node and a peer node These will allow you to submit things as an organization and make your API calls respectively Once your environment is ready you can make your channel there is a default one created for you and promote chain codes to environments You can upload chain code by clicking on the Create new version then you need to run GOOS linux GOARCH amd go build o output bin and upload the output You can then promote your uploaded version to an environment that gives you the ability to deploy your chain code to channels Once all this setup is done you can access your APIs through the peer node Now we will talk about how to run your chain code from the APIYou should use a post request to identities to create a new user to make your calls your transaction calls with Then you can use the secret information you have gained alongside a post call to identities username enroll to enroll your client Once that is done you can make your transactions by your chain code using post calls to transactions For the signer option you can use the client s name that you just made And for arguments you can pass the string of all the arguments you want to use Please note that if you want to get the final result of your transaction instead of the link to the receipt you should set fly sync to true You can use the same values alongside a post call to query for querying Now if you are wondering how to do the following automatically it is straightforward as long as you follow the following two concepts For everything we did outside the peer node you can find their API at However for using these APIs you will need access to your Bearer authentication which can be found under your user profile under under API keys For all the APIs that we used in the peer node we need to create an application credential that is based on the environment Please note that once you create the credential you will be given one time access to your username and password and links on how to connect to the peer node API while being authenticated Please keep your secrets safe and don t share their screenshots XD unless you are deleting them afterward Using all of this you should be able to create networks fast deploy them with ease and handle most of your logic programmatically LimitsKaleido currently does not support customized policies for validation within the channel However they are working on that but for the time being you should consider that the validation of your transactions is done through the majority vote or more than half of the organizations within your channel Going decenterlizedOnce you are sure of your network and have tested your logic you can add more organizations to the Kaleido network allowing them to add their own node or have self hosted instances however that requires you to at least have a business plan with Kaleido ConclusionKaleido is a helpful platform for starting out with fabric and testing out new ideas quickly However it is a new platform that you need to learn to work with although there is a good amount of documentation and tutorials for the platform I hope this post has been helpful and if you have any more questions checking Kaleido s youtube channel and documents is always very helpful 2022-04-04 22:43:08
海外TECH DEV Community Dunk is my new diff pager https://dev.to/waylonwalker/dunk-is-my-new-diff-pager-5388 Dunk is my new diff pagerDunk is a beautiful git diff tool built on top of rich Browsing through twitter the other day I discovered it through this tweet by darrenburns Darren Burns darrenburns Ok here s what I ve been building today Pipe the output of git diff into dunk and you ll get a GitHub style side by side diff right in your terminal github com darrenburns du… PM Apr Dunk is betaBefore I dive in deep I do want to mention that Dunk is super new and beta at this point I am making it my default pager because I know what I am doing and can quickly shift back if I need to no sweat If you are a little less comfortable with the command line terminal or reading any issues that might come up it might be best if you just pipe into Dunk when you want to use it try itYou can try it with pipx git diff pipx run dunk install itIf you like it you can install it with pip or pipx I prefer pipx for cli applications like this pipx install dunk set it as your default pagerYou can configure dunk as your default pager with the command line orby editing your gitconfig file git config global pager diff dunk less R pager diff dunk less RAs pointed out by darrenburns dunk is not a pager and you can gain back all of the benefits of using a pager by piping into less with the R flag reset it if you don t like itYou can unset your pager configuration from the command line or edit your gitconfig file by hand to remove the lines shown above git config global unset pager diff ComparisonI have some edits to a game my son and I are working on unstaged so I ran git diff on that project with and without dunk to compare the differences Dunk just looks so good Always installIf you follow along here often you know that I am a big fan of installing all my tools in an ansible playbook so that I don t suffer configuring a new machine for months after getting it and wondering why its not exactly like the last Dunk prettier git diffs name check is dunk installed shell command v black register dunk exists ignore errors yes name install dunk when dunk exists is failed shell pipx install dunk img alt article cover for lt br gt Installing packages with ansible only if they do not exist lt br gt height src images waylonwalker com til ansible install if not callable og x png width Installing packages with ansible only if they do not existMore on conditionally installing tools with ansible in this post 2022-04-04 22:33:50
海外TECH DEV Community Tips To Create The Best Coding Tutorials 📹 https://dev.to/codecast/tips-to-create-the-best-coding-tutorials-5g6b Tips To Create The Best Coding Tutorials At CodeCast we re excited every time someone makes a Cast We love seeing others love our software as much as we do As we ve watched this community grow we ve compiled a list of tips to help our creators on their Casting journey Casting not only allows you to create content to help others but it helps you brand yourself build your portfolio and create a network To ensure you re having the success you hope for here are some of the best practices to follow when creating your own Casts Our first tip is obviously use CodeCast You can add multiple coding directories so your code shares in real time as you write it accessible by anyone watching through our Player It s like a YouTube tutorial and a live code sharing feature wrapped into a single pretty screen So now let s get into exactly what you can do when creating your Casts to make sure they stand out Add Media to Every CastOften we see Casts where people share large codebases but no media With no media there is no connection to the viewer and since there is no audio or video showcasing what the Caster is doing it s often a little confusing to what exactly we re supposed to be watching Ensure you add media to every Cast and do your best to talk through what you re doing You don t have to be a professional teacher by any means Just share your thought process and explain as you go Or if you re me ramble a lot Add a Directory to Every CastThe ability to share code interactively as you write it is what makes CodeCast special Add the directory you re going to write your code in and each time you save the code will automatically update inside of the player This leads us to our next point… SaveSave save save The design of the Studio means the code gets updated live every time there is a saved change in the directory you ve added So if you spend five minutes writing code without saving it none of that code will be updated Save as often as you can and at natural breakpoints so the code is updating for the viewer Increase Font SizeWhen we re sharing our screen we re often sharing a view of us working in our code editor While the font looks good to us locally the size of the font in the media doesn t translate the same especially if you re Casting off of a very large screen We suggest looking at how your media looks in your Casts and being aware that in most cases increasing the font size in your local editor will help people be able to better see what you re doing In Visual Studio Code increasing the font size is as easy as just hitting Command and or Change Screen as NeededOur Studio is flexible which means that while you re streaming you can switch which screen you re sharing in the Studio without ending the Cast This is helpful if you need to switch off of a screen while inputting sensitive information or perhaps you just want to change views Change Directories as NeededSimilarly the directories are just as flexible if not more so You have the option to add directories in at any point during the streaming process regardless of whether you initially included one Some things you can do include Adding multiple directoriesRemoving a directory at any point during the CastAdding a directory including any you may have created during the Cast at any point during the CastAdd new files within a directory Add infoThere are several reasons why providing detailed Casting information is important Firstly it helps any potential viewer know exactly what they ll be watching increasing their likelihood of clicking on your content Another is that our homepage is filtered to includes Casts that include all of the following mediaa descriptiontopicsa cover photoAfter finishing your Cast navigate to the Cast on your homepage and hit “Edit You can fill in all the information there Clarify AudienceClarify the intended audience in the description or verbally in the Cast It can be something as simple as “for JavaScript beginners or “for intermediate Elixir devs or it can be as specific as you want But it will help people quickly understand if they are the suited audience or if the Cast is perhaps out of their current abilities Open the PlayerOnce you hit “Start Streaming you re provided with a URL and the ability to open the Player in a new window From here you can see what you re doing come to life It s a great way to grasp how what you re doing is translating to the viewer but is also very important to have open if you re going to share live Casts If you Cast publicly you can share the URL anywhere you like and anyone can view your live Cast in real time The player has a built in chat function that allows anyone viewing the Cast to chat with you so try to keep that open to the side to best communicate with your audience There are tons of ways you can use the Studio and everyone will have their own preference We also have a detailed guide on using both our Studio and our Player to assist you So take our tips to help guide you as you create your own content Happy Casting Want to see all these tips in action Check out the first video in the Intro to Elixir series by Tam the founder of CodeCast To learn more about CodeCast check out this video 2022-04-04 22:33:35
Apple AppleInsider - Frontpage News Hulu rolls out support for SharePlay on iPad, iPhone, and Apple TV https://appleinsider.com/articles/22/04/04/hulu-gains-facetime-shareplay-support-in-update?utm_medium=rss Hulu rolls out support for SharePlay on iPad iPhone and Apple TVSharePlay video sharing over FaceTime has arrived on Hulu via an update issued Monday morning The streaming platform s iOS and iPadOS app update on April allows iPhone and iPad users to enjoy a synced up watching experience with everyone in a FaceTime call In this release we are helping spread the Hulu love by introducing SharePlay the patch notes on the App Store reads With SharePlay you can watch content from the Hulu streaming library in sync with friends and family over FaceTime Read more 2022-04-04 22:36:11
金融 金融総合:経済レポート一覧 FX Daily(4月1日)~米雇用統計を受け、ドル円は一時123円台を回復 http://www3.keizaireport.com/report.php/RID/490931/?rss fxdaily 2022-04-05 00:00:00
金融 金融総合:経済レポート一覧 一度50bpの利上げをすると、25bpに戻す理由が必要になる:Market Flash http://www3.keizaireport.com/report.php/RID/490948/?rss marketflash 2022-04-05 00:00:00
金融 金融総合:経済レポート一覧 アジア主要通貨・株価の動き(4月1日まで) http://www3.keizaireport.com/report.php/RID/490976/?rss 国際金融情報センター 2022-04-05 00:00:00
金融 金融総合:経済レポート一覧 シンガポールのクロスボーダー資金決済連携への取組み http://www3.keizaireport.com/report.php/RID/490982/?rss 国際金融情報センター 2022-04-05 00:00:00
金融 金融総合:経済レポート一覧 国際金融センターとしての香港の現状~「国家安全法」施行後の 政治・経済動向 http://www3.keizaireport.com/report.php/RID/490983/?rss 国家安全法 2022-04-05 00:00:00
金融 金融総合:経済レポート一覧 米国において暗号資産業界に係るコンプライアンスと統制を徹底させるには http://www3.keizaireport.com/report.php/RID/490994/?rss eyjapan 2022-04-05 00:00:00
金融 金融総合:経済レポート一覧 2つのオフィスの物語:在宅勤務はオフィス不動産への投資をどのように変化させたか?:プロの視点 http://www3.keizaireport.com/report.php/RID/490995/?rss 視点 2022-04-05 00:00:00
金融 金融総合:経済レポート一覧 第5回 くらしと生活設計に関する調査 http://www3.keizaireport.com/report.php/RID/490996/?rss 生活設計 2022-04-05 00:00:00
金融 金融総合:経済レポート一覧 FOMC議事要旨では、QTの詳細に注目 / ユーロ:ウクライナ情勢とインフレの狭間で / カナダドル:利上げ加速観測と景気腰折れ警戒:Weekly FX Market Focus http://www3.keizaireport.com/report.php/RID/491006/?rss weeklyfxmarketfocus 2022-04-05 00:00:00
金融 金融総合:経済レポート一覧 各資産の利回りと為替取引によるプレミアム/コスト http://www3.keizaireport.com/report.php/RID/491007/?rss 三菱ufj 2022-04-05 00:00:00
金融 金融総合:経済レポート一覧 政治・経済スケジュール 2022年4月号 http://www3.keizaireport.com/report.php/RID/491008/?rss 三菱ufj 2022-04-05 00:00:00
金融 金融総合:経済レポート一覧 投資環境ウィークリー 2022年4月4日号【日本、米国、欧州、中国】~市場は落ち着き処を探る展開、ウクライナとロシアの停戦期待が高まるか http://www3.keizaireport.com/report.php/RID/491009/?rss 三菱ufj 2022-04-05 00:00:00
金融 金融総合:経済レポート一覧 【石黒英之のMarket Navi】逆イールドの示現は株安の予兆なのか http://www3.keizaireport.com/report.php/RID/491010/?rss marketnavi 2022-04-05 00:00:00
金融 金融総合:経済レポート一覧 インベストメント・アウトルック(2022年春号)~トピック:サステナブル投資の展望、米国ハイ・イールド債市場、東証の新市場区分がスタート http://www3.keizaireport.com/report.php/RID/491011/?rss 野村アセットマネジメント 2022-04-05 00:00:00
金融 金融総合:経済レポート一覧 ウィークリーレポート 2022年4月4日号~米国株式はまちまちの動き。 http://www3.keizaireport.com/report.php/RID/491012/?rss 三井住友トラスト 2022-04-05 00:00:00
金融 金融総合:経済レポート一覧 マーケットフォーカス(国内市場)2022年4月号~日経平均株価は、27,800円台を回復 http://www3.keizaireport.com/report.php/RID/491013/?rss 三井住友トラスト 2022-04-05 00:00:00
金融 金融総合:経済レポート一覧 ウィークリー・マーケット 2022年4月第1週号 http://www3.keizaireport.com/report.php/RID/491016/?rss 日興アセットマネジメント 2022-04-05 00:00:00
金融 金融総合:経済レポート一覧 先月のマーケットの振り返り(2022年3月)~2022年3月の主要国の株式市場は高安まちまちとなりました。 http://www3.keizaireport.com/report.php/RID/491018/?rss 三井住友 2022-04-05 00:00:00
金融 金融総合:経済レポート一覧 2022年3月の世界の「投信マネー」~新興国株式ファンド、商品ファンドへの流入続く http://www3.keizaireport.com/report.php/RID/491020/?rss 三井住友 2022-04-05 00:00:00
金融 金融総合:経済レポート一覧 投資家と気候科学者のサケ養殖:責任投資 http://www3.keizaireport.com/report.php/RID/491028/?rss 養殖 2022-04-05 00:00:00
金融 金融総合:経済レポート一覧 【注目検索キーワード】サーキュラーエコノミー http://search.keizaireport.com/search.php/-/keyword=サーキュラーエコノミー/?rss 検索キーワード 2022-04-05 00:00:00
金融 金融総合:経済レポート一覧 【お薦め書籍】5秒でチェック、すぐに使える! 2行でわかるサクサク仕事ノート https://www.amazon.co.jp/exec/obidos/ASIN/4046053631/keizaireport-22/ 結集 2022-04-05 00:00:00
金融 ニュース - 保険市場TIMES 東京海上日動ら、医療MaaSの実証実験を実施 https://www.hokende.com/news/blog/entry/2022/04/05/080000 東京海上日動ら、医療MaaSの実証実験を実施治療継続率やQOLの向上を目指し東京海上日動火災保険株式会社以下、東京海上日動、デロイトトーマツコンサルティング合同会社、ケアプロ株式会社、株式会社電脳交通、千葉構内タクシー株式会社、三ツ矢エミタスタクシーHD株式会社、株式会社千葉薬品、学校法人大乗淑徳学園淑徳大学は年月より、千葉市内での通院サポートプログラム実証実験を開始する。 2022-04-05 08:00:00
ニュース BBC News - Home Manchester United: Former striker Wayne Rooney says club 'can't afford to fail again' in manager search https://www.bbc.co.uk/sport/football/60989324?at_medium=RSS&at_campaign=KARANGA Manchester United Former striker Wayne Rooney says club x can x t afford to fail again x in manager searchFormer striker Wayne Rooney says Manchester United can t afford to fail again when it comes to appointing the club s next permanent manager 2022-04-04 22:25:38
ニュース BBC News - Home Masters: Bryson DeChambeau 80% fit for Augusta National tilt https://www.bbc.co.uk/sport/golf/60970901?at_medium=RSS&at_campaign=KARANGA Masters Bryson DeChambeau fit for Augusta National tiltBryson DeChambeau will play in this week s Masters after ignoring the advice of his doctor and taking a huge risk to return early from injury 2022-04-04 22:41:00
ビジネス ダイヤモンド・オンライン - 新着記事 米経済は重大リスクに直面=JPモルガンCEO - WSJ発 https://diamond.jp/articles/-/301034 ceowsj 2022-04-05 07:17:00
北海道 北海道新聞 レバンガの成長株、山口けん引 SR渋谷戦 https://www.hokkaido-np.co.jp/article/665442/ 渋谷 2022-04-05 07:20:00
ビジネス 東洋経済オンライン 旧車市場に変化、定番ハコスカ/ケンメリから脱却 人気車種に変化、旧車アフターパーツ最前線 | トレンド | 東洋経済オンライン https://toyokeizai.net/articles/-/541006?utm_source=rss&utm_medium=http&utm_campaign=link_back 東洋経済オンライン 2022-04-05 07:30:00
ビジネス プレジデントオンライン 「ウクライナが生物化学兵器を作っている」中国メディアのそんなニュースを信じていいのか - ネットの情報について、すぐに「いいね」を押してはいけない https://president.jp/articles/-/56292 中国メディア 2022-04-05 08:00:00
ビジネス プレジデントオンライン 「ウクライナが生物化学兵器を作っている」中国メディアのそんなニュースを信じていいのか - ネットの情報について、すぐに「いいね」を押してはいけない https://president.jp/articles/-/56204 中国メディア 2022-04-05 08:00:00
仮想通貨 BITPRESS(ビットプレス) [日経] 英「暗号資産の世界ハブに」 王立造幣局がNFT作成へ https://bitpress.jp/count2/3_9_13150 造幣局 2022-04-05 07:54:30

コメント

このブログの人気の投稿

投稿時間: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件)