投稿時間:2023-03-22 21:26:24 RSSフィード2023-03-22 21:00 分まとめ(30件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
IT 気になる、記になる… Ankerの紛失防止トラッカー「Eufy SmartTrack Link」にお得な4個セットモデルが登場 https://taisy0.com/2023/03/22/169860.html eufysmarttracklink 2023-03-22 11:53:55
IT ITmedia 総合記事一覧 [ITmedia ビジネスオンライン] 「侍ジャパンの決勝、どうなった?」 9回表に離陸、航空会社の機内アナウンスが賞賛されたワケ https://www.itmedia.co.jp/business/articles/2303/22/news195.html itmedia 2023-03-22 20:46:00
IT 情報システムリーダーのためのIT情報専門サイト IT Leaders 商談/会議解析ツール「ACES Meet」、ChatGPTで商談内容を自動要約する「AIまとめ」機能 | IT Leaders https://it.impress.co.jp/articles/-/24610 商談会議解析ツール「ACESMeet」、ChatGPTで商談内容を自動要約する「AIまとめ」機能ITLeadersACESは年月日、オンライン商談会議解析ツール「ACESMeet」に、商談内容を自動で要約する「AIまとめ」機能を追加した。 2023-03-22 20:19:00
python Pythonタグが付けられた新着投稿 - Qiita Pythonでさめがめを作った https://qiita.com/iHdkz/items/652037e99114778ede36 pygame 2023-03-22 20:42:30
Ruby Rubyタグが付けられた新着投稿 - Qiita 【Rails7】rspecにおける環境変数のスタブについて【object ENV】 https://qiita.com/t19106/items/30eb603265e47e24d0a5 mswverspr 2023-03-22 20:48:13
Docker dockerタグが付けられた新着投稿 - Qiita Azure Functions に Spring Cloud Function で関数アプリをデプロイする (Docker Hub カスタムコンテナイメージ) https://qiita.com/fsdg-adachi_h/items/10427d695dbffb48fb17 fsdgadachi 2023-03-22 20:10:36
Azure Azureタグが付けられた新着投稿 - Qiita Azure Functions に Spring Cloud Function で関数アプリをデプロイする (Docker Hub カスタムコンテナイメージ) https://qiita.com/fsdg-adachi_h/items/10427d695dbffb48fb17 fsdgadachi 2023-03-22 20:10:36
Ruby Railsタグが付けられた新着投稿 - Qiita 【Rails7】rspecにおける環境変数のスタブについて【object ENV】 https://qiita.com/t19106/items/30eb603265e47e24d0a5 mswverspr 2023-03-22 20:48:13
技術ブログ Mercari Engineering Blog 仲間たちをエンパワーメントする取り組みはつづくよ #WomenCareerTalk https://engineering.mercari.com/blog/entry/20230320-a4d3d57996/ hellip 2023-03-22 12:00:03
海外TECH MakeUseOf Is Your USB Wi-Fi Adapter Not Connecting or Working on Windows? 8 Ways to Fix It https://www.makeuseof.com/fix-usb-wi-fi-adapter-not-connecting/ computer 2023-03-22 11:30:16
海外TECH MakeUseOf The 7 Best Chrome Extensions for Managing Downloads https://www.makeuseof.com/best-chrome-extensions-manage-downloads/ download 2023-03-22 11:30:16
海外TECH MakeUseOf Face ID Not Working or Unavailable on Your iPhone? Here Are 14 Fixes to Try https://www.makeuseof.com/how-to-fix-face-id-not-working-or-not-available-on-iphone/ Face ID Not Working or Unavailable on Your iPhone Here Are Fixes to TryIt s easy to take Face ID for granted unless it s not working on your iPhone If that s the case here s what you can do to fix it 2023-03-22 11:15:15
海外TECH DEV Community Making sure our database queries are fast https://dev.to/woovi/making-sure-our-database-queries-are-fast-2625 Making sure our database queries are fastAs Woovi scales we have more and more charges and transactions A charge represents a payment request and a transaction represents a movement in our merchant bank accounts These two collections in our MongoDB database are very big and still growing very fast To make sure we don t push new code that causes a COLLSCAN reading the whole table we always need to make sure our queries are using the proper index Understand MongoDB Explain OutputWe first need to understand how MongoDB plan their queries For this we are going to use the command db collection explain you can read more about it in the MongoDB docsIt can have different operations COLLSCAN for a collection scanIXSCAN for scanning index keysFETCH for retrieving documentsGROUP for grouping documentsSHARD MERGE for merging results from shardsSHARDING FILTER for filtering out orphan documents from shardsCOLLSCAN is the worst case as it needs to scan the whole collection to find an item aka O n very slow for big collections like ours IXSCAN is the best operation as it uses the index a balanced B tree in the worst case O log n FETCH is when they need to retrieve more documents used in paginationSHARD MERGE is when you have a shared database and need to merge result of some shardsSHARDING FILTER is when you need to filter data in shards Automating IXSCAN index testingWe use an In Memory MongoDB in our tests to make sure our code is doing the right queries and aggregations in the database This avoids many false positives and false negatives that happen when mocking the database As we are using a real MongoDB we can call explain method when performing a find or aggregate and MongoDB will return the query planner showing the winning plan of how the database will execute the query The test to check if our query is using an index called IXSCAN in MongoDB it is very simple const getStageFromExplanation explanation MongoExplanation gt explanation queryPlanner winningPlan inputStage stage it should test the ixscan from myquery async gt force model index creation await Model syncIndexes create your test query const modelCursor Model find name Edu age ask to explain modelCursor explain wait for explanation const modelExplained await modelCursor check if the query explanation uses index IXSCANexpect getStageFromExplanation modelExplained toEqual IXSCAN We perform a find ask for explanation using explain method and check for IXSCAN in the winning plan of the query planner To sum upAs you scale your database is getting more critical so you can t push new code to production that will use a COLLSCAN or do slow queries At Woovi we automated this performance check to make sure we are using proper index before pushing new code to production We also monitor performance regression using Kibana and Elastic APM both in staging and production environment ReferencesExplain ResultsMongoDB ExplainWooviWoovi is a Startup that enables shoppers to pay as they like To make this possible Woovi provides instant payment solutions for merchants to accept orders If you want to work with us we are hiring Photo by Shiro hatori on Unsplash 2023-03-22 11:03:33
Apple AppleInsider - Frontpage News Meta & Google shouldn't be allowed to bully their way out of paying for news https://appleinsider.com/articles/23/03/22/meta-google-shouldnt-be-allowed-to-bully-their-way-out-of-paying-for-news?utm_medium=rss Meta amp Google shouldn x t be allowed to bully their way out of paying for newsJournalism has been nearly destroyed by Google and Facebook stealing news ーand they should not be allowed to use threats to escape regulation demanding that they pay for profiting from it Canadian lawmakers are debating whether to charge online platforms for news they post but Meta says it won t pay a dime ーand Google is already looking at just blocking news in the country In both cases these companies have managed to get this far without paying for what they use Facebook did make a show of signing deals for news with publishers in but it then so altered its recommendations algorithm that few users even knew there was a news section Read more 2023-03-22 11:54:11
Apple AppleInsider - Frontpage News Apple Music bug shows users other people's playlists https://appleinsider.com/articles/23/03/22/apple-music-bug-shows-users-other-peoples-playlists?utm_medium=rss Apple Music bug shows users other people x s playlistsAn apparent bug in Apple Music is adding playlists that are seemingly from other users music libraries and may also be deleting cloud stored individual tracks Apple MusicIt s not known how many users are affected However the issue is widespread enough that it is being reported in Reddit threads with users saying that all of a sudden there are playlists in my library Some examples cited are playlists with names including emoji or odd spellings like GaBeLoZ leading to concerns about hacking Read more 2023-03-22 11:22:34
海外TECH Engadget WhatsApp group admins can now approve who joins their communities https://www.engadget.com/whatsapp-group-admins-can-approve-who-joins-communities-115003246.html?src=rss WhatsApp group admins can now approve who joins their communitiesWhatsApp has announced two new features for group chats and communities The first is a privacy update allowing admins to decide whether a person can get access to the group or not Previously anyone could join using an invite link provided by any member Typically banners within the chat indicating a new person has entered the group are small and can easily disappear from view after a few messages This shift can ensure conversations and information is shared with those who it s intended to be nbsp The other update focuses on connecting with other people in your Communities Last year WhatsApp created Communities to allow multiple groups to exist under one umbrella Now the messaging platform is making it easier to find out which groups you have in common The group names will appear when you search under a specific contact s name This announcement comes on the heels of a few new WhatsApp updates The most recent one allows users to schedule when they will leave a WhatsApp group chat This feature is still in beta testing but would mean a big clear out of your conversation history Other recent additions include picture in picture support for iOS video calls and voice notes as status updates nbsp Thee two new features should be available worldwide in the next few weeks This article originally appeared on Engadget at 2023-03-22 11:50:03
海外TECH Engadget Opera adds ChatGPT and AI prompts into its browser https://www.engadget.com/opera-adds-chatgpt-and-ai-prompts-into-its-browser-113500436.html?src=rss Opera adds ChatGPT and AI prompts into its browserIn February Opera shared plans to integrate generative AI capabilities into its web browser using ChatGPT Now the independent browser maker has launched sidebar integration for both ChatGPT and ChatSonic and has introduced another feature called smart AI Prompts To get these features you ll need to update your browser and then go to Easy Setup to toggle on the quot AI Prompts quot option at the bottom For the Opera GX browser for games you also need to have the Early Bird option enabled in your browser settings nbsp Once the option is switched on you ll see buttons for the chatbots on your sidebar which you can click if you want to launch them within the browser Take note that you ll still need to log in to be able to use either You can also launch the chatbots by using the browser s new contextual AI Prompts that show up when you highlight text on a website nbsp The prompts suggest different ways you can use the chatbots with the text on page such as turning a chunk of text into a soap opera or a football commentary and using information to create quiz questions I turned our post about the new quests feature for Horizon Worlds VR into a soap opera and let s just say it wouldn t feel out of place in Dynasty Or Riverdale Green prompts use ChatGPT while purple prompts use ChatSonic s service Opera says these are merely parts of the first stage of its Browser AI plan and that the features launching with the second stage will be based on its own GPT based browser AI engine A lot of tech companies are rushing to get their own AI products out after ChatGPT shot up in popularity and Microsoft a long time OpenAI backer launched its Bing Chat AI and Edge Copilot tools Baidu unveiled its ERNIE bot a few days ago while Google just made its chatbot Bard more widely available in the US and the UK Opera s announcement however shows that even smaller companies are keen to gain entry and secure their position in the AI race as early as possible This article originally appeared on Engadget at 2023-03-22 11:35:00
海外TECH Engadget The Morning After: Google expands access to its AI chatbot, Bard https://www.engadget.com/the-morning-after-google-expands-access-to-its-ai-chatbot-bard-112516974.html?src=rss The Morning After Google expands access to its AI chatbot BardGoogle Bard is the company s answer to ChatGPT an AI chatbot using LaMDA the company s in development language model We ve been testing it and what s immediately clear are all the company s warnings whether it s the experiment label or the regular reminders that Bard “will not always get it right Even the example entries when you boot up Bard include what the chatbot can t do The big difference between Google and Bing s integration is the alternative responses that Bard throws up alongside the conversation You can click the dropdown arrow next to quot View other drafts quot at the top left of each chat bubble to see some other suggestions Unlike Bing Google s chatbot doesn t always cite its sources which I think could be a major point as these chatbots creep into our daily internet lives They re still prone to mistakes and I want to know where these bots get their answers from Also be careful what you re searching for Google notes these early rounds of testing will inform Bard s direction so we d advise not using private information Another reason to be cautious A bug in ChatGPT accidentally revealed user chat histories yesterday The rollout of Bard seems to be happening pretty quickly so if you re in the US or the UK you should get access a few hours after applying Mat SmithThe Morning After isn t just a newsletter it s also a daily podcast Get our daily audio briefings Monday through Friday by subscribing right here The biggest stories you might have missedA TikTok ban is a lot more complicated than just shutting down the appThe best live TV streaming services in Where to recycle your used and unwanted gadgets NVIDIA and Medtronic are building an AI enhanced endoscopy toolAdobe is bringing generative AI features to Photoshop After Effects and Premiere ProNVIDIA unveils AI Foundations its customizable Gen AI cloud service Virtuix s Omni One VR treadmill is finally making its way to customers Oppo s Find X Pro packs a inch sensor and a periscopic cameraFor now it s only coming to China Photo by Richard Lai EngadgetOppo s made another flagship phone and it s the largest external redesign since s Find X Pro with the three rear cameras all with a megapixel resolution plus optical stabilization in a large circular island The glass covered upper part houses the main camera the ultra wide camera the LED flash and Hasselblad s logo while the lower part features the periscopic camera with x optical zoom mm equivalent or x quot in sensor quot zoom a fancy new way of saying it crops the image Along with the barrage of sensors Oppo has stuck to its strengths featuring W SuperVOOC fast charging which the company claims can fully charge the phone in a mere minutes It s bonkers Continue reading NVIDIA s big AI reveal is tools to build more AIWith DGX Cloud more companies can build their own NVIDIA s AI push finally seems to be leading somewhere The company s GTC GPU Technology Conference has always been a platform to promote its hardware for the AI world Now it s practically a celebration of how well positioned NVIDIA is to take advantage of this moment Supercomputers are expensive so its new DGX Cloud service offers an online way to tap into the power of its AI supercomputers Starting at a mere a month for a single node it s meant to be a more flexible way for companies to scale up their AI needs Man that s still expensive Continue reading Ford unveils an electric Explorer crossover built for Europe s narrow streetsThe compact EV even has a moving touchscreen FordFord has finally shown the medium electric crossover it teased last year It s an electric Explorer quot designed for Europe quot and suited to tight city streets It s relatively compact under ft long versus ft for the gas SUV and includes a few technology features you won t even find in higher end Ford EVs like the Mustang Mach E The inch vertical touchscreen will seem familiar but it slides up and down you won t have to settle for an awkward position You also won t find the physical knob from earlier Ford EVs The automaker also utilizes the electrified design to provide a massive amount of console storage space enough for a laptop and a locker for valuables Continue reading Duolingo is building a music learning appThe company is looking for a music scientist to help it build the application According to a job posting seen by TechCrunch Duolingo has a small team working to build an app for teaching music The job ad is for an quot expert in music education who combines both theoretical knowledge of relevant learning science research and hands on teaching experience quot They have to translate quot research findings into concrete ideas quot that can be used for the quot learning by doing quot activities Duolingo is known for If it s anything like Duolingo I ll be learning melodies and instruments I may never ever play in the real world What s the musical equivalent of “Without a doubt I want to eat ham Continue reading This article originally appeared on Engadget at 2023-03-22 11:25:16
医療系 医療介護 CBnews 医療などの物価高騰対策支援に7千億円-政府、総額2兆円規模の追加対策 https://www.cbnews.jp/news/entry/20230322202500 感染拡大 2023-03-22 20:35:00
医療系 医療介護 CBnews バイオ後続品導入初期加算の使用件数が増加-中医協調査、外来化学療法加算などに拡大で https://www.cbnews.jp/news/entry/20230322194900 化学療法 2023-03-22 20:30:00
医療系 医療介護 CBnews プログラム医療機器、二段階承認制度を検討-厚労省、3月中に報告書 https://www.cbnews.jp/news/entry/20230322200017 中央社会保険医療協議会 2023-03-22 20:10:00
金融 金融庁ホームページ 「インパクト投資等に関する検討会」(第6回)議事次第を公表しました。 https://www.fsa.go.jp/singi/impact/siryou/20230322.html 次第 2023-03-22 11:15:00
金融 金融庁ホームページ 鈴木財務大臣兼内閣府特命担当大臣閣議後記者会見の概要(令和5年3月17日)を掲載しました。 https://www.fsa.go.jp/common/conference/minister/2023a/20230317-1.html 内閣府特命担当大臣 2023-03-22 11:15:00
ニュース BBC News - Home Veg shortages drive surprise jump in UK inflation https://www.bbc.co.uk/news/business-65026231?at_medium=RSS&at_campaign=KARANGA figures 2023-03-22 11:27:30
ニュース BBC News - Home Shamima Begum: Friend who inspired desertion mocks her as non-believer https://www.bbc.co.uk/news/uk-65031943?at_medium=RSS&at_campaign=KARANGA shamima 2023-03-22 11:19:34
ニュース BBC News - Home Emergency crews at Leith dockyard as ship tips over https://www.bbc.co.uk/news/technology-65038617?at_medium=RSS&at_campaign=KARANGA edinburgh 2023-03-22 11:34:59
ニュース BBC News - Home Boris Johnson and Liz Truss to vote against Sunak's NI Brexit deal https://www.bbc.co.uk/news/uk-politics-65034260?at_medium=RSS&at_campaign=KARANGA farage 2023-03-22 11:44:48
ニュース BBC News - Home Tyson Fury v Oleksandr Usyk: Talks for undisputed heavyweight fight on verge of collapse https://www.bbc.co.uk/sport/boxing/65037833?at_medium=RSS&at_campaign=KARANGA Tyson Fury v Oleksandr Usyk Talks for undisputed heavyweight fight on verge of collapseTalks for an undisputed heavyweight contest between Briton Tyson Fury and unified champion Oleksandr Usyk are on the verge of collapse 2023-03-22 11:25:28
ニュース Newsweek ウクライナ戦争から世界の指導者と市民が学べる「5つの教訓」【注目ニュースを動画で解説】 https://www.newsweekjapan.jp/stories/world/2023/03/5-1574.php ウクライナ戦争から世界の指導者と市民が学べる「つの教訓」【注目ニュースを動画で解説】昨年月にロシア軍がウクライナ全土への攻撃を開始して年が経過。 2023-03-22 20:50:00
ニュース Newsweek 一歩進んだ環境対策 宅配ピザの紙箱を削減するスイス発のニュービジネス https://www.newsweekjapan.jp/stories/business/2023/03/post-101168.php パッケージを循環して使うビジネスモデルは他国でも適用できると思っていたが、起業した当初は、リサイクルパッケージを使おうという意識がヨーロッパ社会には浸透していなかったと振り返る。 2023-03-22 20:25:14

コメント

このブログの人気の投稿

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