投稿時間:2023-08-31 05:26:32 RSSフィード2023-08-31 05:00 分まとめ(31件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
AWS AWS Partner Network (APN) Blog Understanding and Monitoring Embeddings in Amazon SageMaker with WhyLabs AI Observatory Platform https://aws.amazon.com/blogs/apn/understanding-and-monitoring-embeddings-in-amazon-sagemaker-with-whylabs-ai-observatory-platform/ Understanding and Monitoring Embeddings in Amazon SageMaker with WhyLabs AI Observatory PlatformWith the rise of large language models natural language processing and generative AI models embeddings are becoming a critical piece of data in more machine learning use cases In this post explore different ways embeddings are used in machine learning and where problems can show up that impact your ML models and how you can use WhyLabs to identify those problems and create monitors to avoid them showing up again in the future 2023-08-30 19:51:41
海外TECH MakeUseOf How Does Microsoft Make Money From Windows 11? https://www.makeuseof.com/microsoft-makes-money-windows-11/ microsoft 2023-08-30 19:15:25
海外TECH MakeUseOf How to Integrate Feature Flags in React Applications Using Flagsmith https://www.makeuseof.com/flagsmith-react-feature-flags-integrate/ flagsmithadd 2023-08-30 19:00:26
海外TECH DEV Community Open Source and Git Glossary https://dev.to/adiatiayu/open-source-and-git-glossary-mn2 Open Source and Git GlossaryHi friends At the beginning of my open source journey I got confused with many terms used around Git and open source It is an OSS project In which repo can I see your project on GitHub Have you created an issue and the PR Have you read the README You want to create a branch and not work your changes on the main branch LGTM Let alone start contributing the terms are already intimidating enough for me Learning from my experience don t let these terms scare you off if you re new to open source In this article I will share some terms in open source and Git ーin alphabetical order ーthat you will often hear when you dip your toes into the open source Open Source Glossary CONTRIBUTING mdAn open source repository usually will have a file written in Markdown md called CONTRIBUTING md ーsome others called this file CONTRIBUTION md or anything similar This file is the contribution guide that contains everything you should know when you want to contribute to a project You must first read this if you wish to contribute to a project The contributing guide can be included in the README if you don t find this file ContributorA contributor is a person who contributes to a repository by giving ideas and suggestions reporting bugs making changes to the code base or other resources in an open source repository and any other action that helps with the project enhancement and maintenance Documentation Docs When you hear the word docs it refers to documentation It s a guide that serves as an onboarding medium for new contributors and users in an open source community It s the place where you can learn more about how to contribute to the repository and information about how you can get started with their project such as the installation process the code syntax and examples and many more ForkFork is creating a copy of a repository in your GitHub account This copy is your remote repository GitHubGitHub is a cloud based service and platform for hosting sharing and collaborating on Git repositories Other similar well known platforms are GitLab and Bitbucket IssuesIssues are a project s development trackkeeper An issue can contain a bug found a feature request a documentation fix suggestion etc LabelsLabels are tags that inform the type or status of issues and pull requests ーfor example bug feature documentation triage help wanted good first issue etc LGTMMaybe you ve seen a maintainer mention LGTM in a comment of a pull request after a review Some say it s the abbreviation of Looks Good To Me and others say it stands for Let s Get This Merge But whenever you see this term your pull request has passed the maintainers review and is ready to merge MaintainerA maintainer is a person who maintains an open source repository They usually review issues and pull requests assign contributors to issues make updates to the project by merging pull requests etc Open Source Software OSS Open Source Software OSS is software where the source code is freely available and accessible to the public and distributed under a copyright license Anyone may reuse modify and redistribute the software where the limit depends on the license used for the software Because of its transparent and open nature open source encourages open collaboration among contributors Pull Request PR A Pull Request commonly called a PR is a notification about changes pushed to a branch in a remote repository and ready for the merging process READMEA README is the face of the project It is a Markdown file README md that contains everything essential about the project In this file you will usually find the software description how to install them the license the Code of Conduct the contribution guide etc Repository repo A repository ーcommonly called a repo ーis a storage to keep the open source project s code files and resources Git Glossary BranchA branch is an isolated environment for contribtors to work on changes such as fixing bugs developing a feature etc This branch is usually known as a working branch or feature branch A default branch however is the branch that people see when they visit a repository on GitHub All changes in other branches are merged here By convention this branch is called a main previously master branch CloneClone is creating a copy of a repository in your local environment CommitWhenever we finish with our changes we must commit them It means that we must record our changes That is also why a commit always includes a message as the record The message makes it easier for us and others to see what changes have been made GitGit is an open source Distributed Version Control System DVCS that tracks all changes we make to a program We can see the history of the changes through commits and revert them to the previous version if necessary MergeMerge is an act to merge changes from a branch into the main branch OriginWhen you create or fork a repository and have it as your remote repository on your GitHub account by convention it is called the origin repository It is an alias of your remote repository PullPull is an act to get new changes from the remote to the local repository PushPush is an act to move changes from the local to the remote repository UpstreamSay you fork a repository By convention the original repository you forked is called the upstream repository Upstream is an alias of the original repository Final WordsI hope this article helps you get less confused when you hear these terms If you want to share more terms in open source and Git feel free to drop them in the comment below and let s learn together ️Credit cover image unDrawThank you for reading Last you can find me on Twitter Mastodon and BlueSky Let s connect 2023-08-30 19:39:24
海外TECH DEV Community Regular Expressions Cheat Sheet PART - 1 https://dev.to/burakboduroglu/regular-expressions-cheat-sheet-part-1-1eml Regular Expressions Cheat Sheet PART Regular expressions are a powerful tool for matching patterns in text This blog post will introduce some of the basic syntax for regular expressions and how to use them in JavaScript Creating a Regular ExpressionThere are two ways to create a regular expression in JavaScript The first is to use the RegExp constructor let text Programming is my favorite thing to do in the world let regex new RegExp Programming let regex Programming test console log regex test text trueconsole log regex test text true exec console log regex exec text Programming index input Programming is my favorite thing to do in the world console log regex exec text Programming index input Programming is my favorite thing to do in the world match console log text match regex Programming index input Programming is my favorite thing to do in the world search console log text search regex replace console log text replace regex Coding Coding is my favorite thing to do in the world split console log text split regex is my favorite thing to do in the world s console log text split s Programming is my favorite thing to do in the world test returns a boolean value indicating whether or not the regular expression matches the text exec returns an array containing the matched text the index of the match and the input string match returns an array containing the matched text the index of the match and the input string search returns the index of the first match replace returns a new string with the matched text replaced by the second argument split returns an array of strings split at the matched text s is a regular expression that matches whitespace characters exec and match are the same but match is a string method and exec is a RegExp method FlagsRegular expressions can also have flags Flags are added to the end of the regular expression and change the behavior of the regular expression Usage of flags is demonstrated below pattern flagsnew RegExp pattern flags Flagsg global match all instances of the patterni ignore case match regardless of casem multiline match across multiple lineslet text Programming is my favorite thing to do in the world let regex o s console log text match regex o index input Programming is my favorite thing to do in the world let regex o s g console log text match regex o o let regex G s gi console log text match regex g g Explanation of the above code regex matches the first instance of the pattern regex matches all instances of the pattern regex matches all instances of the pattern regardless of case Recommended ResourcesRegex Pal is a great tool for testing regular expressions WildcardsWildcards are characters that match any character The wildcard character is The following example demonstrates the use of the wildcard character let text Programming is my favorite thing to do in the world let regex w r g console log text match regex wor let regex w gi console log text match regex w Explanation of the above code regex matches any character between w and r regex matches any character between w and let text He is holding his hat in his hand let regex h g console log text match regex hol his hat his han let regex h gi console log text match regex He hol his hat his han Control Characters t is a tab character n is a newline character r is a carriage return character v is a vertical tab character Using Character Setslet text Gray Grey Grab let regex Gr ae y g console log text match regex Gray Grey let text Programming is my favorite thing to do in the world let regex aei w g console log text match regex e gt from favorite e gt from the Specifying Rangeslet text a b c abc let regex a z g console log text match regex a b c a b c let text let regex console log text match regex Excluding a Character Setlet text abcd let regex console log text match regex a b c d and all spaces Shorthand of Character Set d gt w gt a zA Z s gt t r n let text abcd let regex d g console log text match regex let text Programming is my favorite thing to do in the world let regex w g console log text match regex P r o g r a m m i n g i s m y f a v o r i t e t h i n g t o d o i n t h e w o r l d let text Programming is my favorite thing to do in the world let regex s g console log text match regex D gt W gt a zA Z S gt t r n let text abcd let regex D g console log text match regex a b c d Repetitions gt It used to match or more times gt It used to match or more times gt It used to match or time Greedy and Lazy MatchingGreedy matching is the default behavior of regular expressions Greedy matching means that the regular expression will match as many characters as possible Lazy matching means that the regular expression will match as few characters as possible let html lt h gt Heading lt h gt lt p gt Paragraph lt p gt let hRegex lt h gt lt h gt console log html match hRegex lt h gt Heading lt h gt Specifying the Repetition Amount n gt It used to match exactly n times n gt It used to match at least n times n m gt It used to match at least n times and at most m timeslet text Programming is my favorite thing to do in the world let regex w g console log text match regex Program ming favor ite thing world ExampleValidate phone numbers check to see if it matches these formats nnn nnn nnnnnnn nnn nnnnnnn nnn nnnnnnnnnnnnnn nnn nnnnnnnSolution let phoneNumber let regex d d d console log phoneNumber match regex Explanation d d d gt It matches or time d gt It matches exactly times digit gt It matches or time gt It matches or time d gt It matches exactly times digit gt It matches or time d gt It matches exactly times digitIf you have any recommendations or feedback please feel free to reach out to me on comment However Part will be coming soon Stay tuned Follow me on GitHubGitHub 2023-08-30 19:19:31
Apple AppleInsider - Frontpage News Studio Display firmware version 17 beta 6 is now available https://appleinsider.com/articles/23/08/30/studio-display-firmware-version-17-beta-6-is-now-available?utm_medium=rss Studio Display firmware version beta is now availableApple has issued the sixth Studio Display firmware beta for version Apple Studio DisplayThe Studio Display is Apple s standalone K monitor It runs an A processor which means it gets updates similar to iOS to keep features updated and security issues patched Read more 2023-08-30 19:40:10
Apple AppleInsider - Frontpage News Microsoft begins sunsetting process for Visual Studio for Mac https://appleinsider.com/articles/23/08/30/microsoft-begins-sunsetting-process-for-visual-studio-for-mac?utm_medium=rss Microsoft begins sunsetting process for Visual Studio for MacIn an effort to redirect its resources elsewhere Microsoft has begun the process of retiring Visual Studio for Mac IDE Microsoft retiring Visual Studio for Mac in According to Microsoft Visual Studio for Mac will continue to be supported for another months until August Read more 2023-08-30 19:07:57
海外TECH Engadget NYC subway security flaw makes it possible to track riders’ journeys https://www.engadget.com/nyc-subway-security-flaw-makes-it-possible-to-track-riders-journeys-195600685.html?src=rss NYC subway security flaw makes it possible to track riders journeysThe contactless payment system for New York City s subways has a security hole Anyone with access to someone s credit card number can see when and where they entered the city s underground transit during the last seven days The problem lies in a “feature on the website for OMNY the tap to pay system for the Metropolitan Transportation Authority MTA which allows you to view your recent ride history using only credit card info Further subway entries purchased using Apple Pay ーwhich gives merchants a virtual number instead of your real one ーstill somehow link to your physical credit card number The MTA s loose implementation could allow stalkers abusive exes or anyone who hacks into or purchases a person s credit card information online to find out when and where they typically enter the subway Joseph Cox of Media initially reported on the story detailing how with a rider s consent he tracked the stations they entered ーwith corresponding times “If I had kept monitoring this person I would have figured out the subway station they often start a journey at which is near where they live Cox wrote “I would also know what specific time this person may go to the subway each day “This is a gift for abusers Eva Galperin the Electronic Frontier Foundation s director of cybersecurity told Engadget The OMNY website also allows passengers to create a password protected account but it sits below the more prominent “Check trip history section atop the page requiring only a number and expiration date without any further security input “It is a real problem that the option to track your location ーwithout any kind of password security ーis available first on the website noted Galperin She says the MTA could have “fixed this simply by including a PIN or password requirement alongside the credit card field Metropolitan Transportation Authority The website still shows your travel history even if you paid with Apple Pay The iPhone maker says its tap to pay system gives merchants a virtual number rather than the physical card s number “And when you pay your card numbers are never shared by Apple with merchants a marketing blurb on the company s website reads But an Engadget staffer confirmed that entering their actual credit card number linked to the used Apple Pay account ーwithout having directly used that card to ride ーstill revealed their seven day point of entry history When asked about the OMNY website linking the two regardless the MTA told Engadget it can t see the credit card numbers of customers who use Apple Pay Apple didn t immediately respond to an emailed request for comment about how the MTA website associates the two without vendors having access to the physical credit card number The MTA says it will consider security changes as it improves its system “The MTA is committed to maintaining customer privacy MTA spokesperson Eugene Resnick wrote to Engadget in an email “The trip history feature gives customers a way to check their paid and free trip history for the last days without having to create an OMNY account We also give customers the option of paying for their OMNY travel with cash We re always looking to improve on privacy and will consider input from safety experts as we evaluate possible further improvements This article originally appeared on Engadget at 2023-08-30 19:56:00
海外TECH Engadget Google Chat now plays nice with Slack and Microsoft Teams https://www.engadget.com/google-chat-now-plays-nice-with-slack-and-microsoft-teams-190033902.html?src=rss Google Chat now plays nice with Slack and Microsoft TeamsGoogle has been busy making a bunch of announcements for its cloud based productivity apps this week largely centered on Duet AI integration There are some other helpful updates on the way to several apps including Google Chat A feature is now available in beta on several Workspace plans with full availability on the roadmap for early next year that allows for messaging interoperability between Chat and other services including Slack and Microsoft Teams Google which teamed up with a company called Mio to make this function work suggests that this could be handy for organizations that use a variety of communications apps quot We know that communication and collaboration happens over multiple channels and tools quot Google wrote in an announcement post quot This can cause missed messages silos of communication and a frustrating experience monitoring multiple chat tools quot It notes that organizations need Mio licenses to use the feature According to GIF Google shared it seems that if you edit a message in one of the connected apps the change will be replicated in the others Meanwhile to Google reports that Chat will gain support for voice messages These will enable users to “save typing and allow recipients to hear the tone and context of the message according to Google The feature should be available in early but it s unclear whether it will be available in group chats and one on one DMs It s also uncertain whether there will be transcription support from the jump This article originally appeared on Engadget at 2023-08-30 19:00:33
ニュース BBC News - Home Letby inquiry gets powers to force witnesses to give evidence https://www.bbc.co.uk/news/health-66597122?at_medium=RSS&at_campaign=KARANGA families 2023-08-30 19:39:33
ニュース BBC News - Home Gabon coup: Army seizes power from Ali Bongo and puts him in house arrest https://www.bbc.co.uk/news/world-africa-66654965?at_medium=RSS&at_campaign=KARANGA bongo 2023-08-30 19:19:14
ニュース BBC News - Home Families stranded by air traffic control glitch worried about expenses https://www.bbc.co.uk/news/business-66657176?at_medium=RSS&at_campaign=KARANGA travel 2023-08-30 19:19:23
ニュース BBC News - Home US Open 2023 results: Lily Miyazaki loses to Belinda Bencic in New York https://www.bbc.co.uk/sport/tennis/66664933?at_medium=RSS&at_campaign=KARANGA belinda 2023-08-30 19:34:23
ニュース BBC News - Home US Open 2023 results: Stefanos Tsitsipas knocked out by Dominic Stricker https://www.bbc.co.uk/sport/tennis/66665491?at_medium=RSS&at_campaign=KARANGA defeat 2023-08-30 19:45:11
ビジネス ダイヤモンド・オンライン - 新着記事 「日本人の命が懸かっているのに…」菅義偉が、官僚の“悪しき先例主義”の打破を誓った日 - 菅義偉「官邸の決断」 https://diamond.jp/articles/-/328432 先例主義 2023-08-31 04:55:00
ビジネス ダイヤモンド・オンライン - 新着記事 【無料公開】セブン&アイのそごう・西武「売却スキーム」判明!ヨドバシ入居の調整難航で株式譲渡延期か - Diamond Premiumセレクション https://diamond.jp/articles/-/328468 【無料公開】セブンアイのそごう・西武「売却スキーム」判明ヨドバシ入居の調整難航で株式譲渡延期かDiamondPremiumセレクションセブンアイ・ホールディングスが米フォートレス・インベストメント・グループに売却を決めた百貨店子会社そごう・西武の旗艦店、西武池袋本店の売却後の運営方針が判明した。 2023-08-31 04:50:00
ビジネス ダイヤモンド・オンライン - 新着記事 原油相場は頭打ち?サウジ自主減産も米長期金利上昇と中国経済低迷が足かせに - マーケットフォーカス https://diamond.jp/articles/-/328426 中国経済 2023-08-31 04:45:00
ビジネス ダイヤモンド・オンライン - 新着記事 バリュー投資家が狙う中国株 景気低迷で割安に - WSJ PickUp https://diamond.jp/articles/-/328430 wsjpickup 2023-08-31 04:40:00
ビジネス ダイヤモンド・オンライン - 新着記事 大気汚染、喫煙よりも寿命縮める=シカゴ大研究所 - WSJ PickUp https://diamond.jp/articles/-/328429 wsjpickup 2023-08-31 04:35:00
ビジネス ダイヤモンド・オンライン - 新着記事 【一発で理解できる】高校数学の超難所「微分」を図解してみた! - 【フルカラー図解】高校数学の基礎が150分でわかる本 https://diamond.jp/articles/-/328405 【一発で理解できる】高校数学の超難所「微分」を図解してみた【フルカラー図解】高校数学の基礎が分でわかる本子どもから大人まで数学を苦手とする人は非常に多いのではないでしょうか。 2023-08-31 04:30:00
ビジネス ダイヤモンド・オンライン - 新着記事 【超名門国立大】大阪大学の学生にリアルな就活事情について話を聞いてみた - 大学図鑑!2024 有名大学82校のすべてがわかる! https://diamond.jp/articles/-/328399 2023-08-31 04:27:00
ビジネス ダイヤモンド・オンライン - 新着記事 職場にいる「すぐに言い訳をする人」と「成長を続けられる人」の決定的な差とは - 1秒で答えをつくる力 お笑い芸人が学ぶ「切り返し」のプロになる48の技術 https://diamond.jp/articles/-/328409 2023-08-31 04:24:00
ビジネス ダイヤモンド・オンライン - 新着記事 【精神科医が教える】 「仲間はずれにされたらラッキー」と断言する根源的理由 - 精神科医Tomyが教える 40代を後悔せず生きる言葉 https://diamond.jp/articles/-/324713 そんなときの助けになるのが、『精神科医Tomyが教える代を後悔せず生きる言葉』ダイヤモンド社だ。 2023-08-31 04:21:00
ビジネス ダイヤモンド・オンライン - 新着記事 2分でわかる!“7S”…「仕事ができる人」の仕事術 - グロービスMBAキーワード 図解 基本フレームワーク50 https://diamond.jp/articles/-/327915 2023-08-31 04:15:00
ビジネス ダイヤモンド・オンライン - 新着記事 【直木賞作家スペシャル対談】 低迷していた歴史小説はなぜ復活したのか? - 教養としての歴史小説 https://diamond.jp/articles/-/328192 【直木賞作家スペシャル対談】低迷していた歴史小説はなぜ復活したのか教養としての歴史小説歴史小説の主人公は、過去の歴史を案内してくれる水先案内人のようなもの。 2023-08-31 04:12:00
ビジネス ダイヤモンド・オンライン - 新着記事 体の声を聞いたら深刻なアトピーが治った! 自分の体とのつながりを直せば体が癒えていく - 脳の外で考える https://diamond.jp/articles/-/327965 自分自身 2023-08-31 04:09:00
ビジネス ダイヤモンド・オンライン - 新着記事 定年後、「個人事業主」になりたい人が気をつけるべき大損ポイント - 知らないと大損する!定年前後のお金の正解 改訂版 https://diamond.jp/articles/-/328246 定年後、「個人事業主」になりたい人が気をつけるべき大損ポイント知らないと大損する定年前後のお金の正解改訂版定年前後の決断で、人生の手取りは万円以上変わるマネージャーナリストでもある税理士の板倉京氏が著し、「わかりやすい」「本当に得をした」と大人気になった書籍が年の制度改正に合わせ改訂パワーアップ「知らないと大損する定年前後のお金の正解改訂版」として発売されます。 2023-08-31 04:06:00
ビジネス ダイヤモンド・オンライン - 新着記事 「課題の分離」こそがあなたを変え、あなたを自由にする!【書籍オンライン編集部セレクション】 - 嫌われる勇気──自己啓発の源流「アドラー」の教え https://diamond.jp/articles/-/328158 嫌われる勇気 2023-08-31 04:03:00
ビジネス 東洋経済オンライン 「毎朝メモ帳に10のアイデアを書く」続けられる? 完璧主義に邪魔されて諦めがちな人への助言 | リーダーシップ・教養・資格・スキル | 東洋経済オンライン https://toyokeizai.net/articles/-/680174?utm_source=rss&utm_medium=http&utm_campaign=link_back 完璧主義 2023-08-31 04:50:00
ビジネス 東洋経済オンライン 「円安の終わりはアメリカ次第」という思い込み 円より安いのはロシア・トルコ・アルゼンチン | 市場観測 | 東洋経済オンライン https://toyokeizai.net/articles/-/698309?utm_source=rss&utm_medium=http&utm_campaign=link_back 思い込み 2023-08-31 04:40:00
ビジネス 東洋経済オンライン また見たい「最上川の車窓」、山形ご当地鉄道事情 長期運休路線も…ローカル線で旅する名作の地 | トラベル最前線 | 東洋経済オンライン https://toyokeizai.net/articles/-/697870?utm_source=rss&utm_medium=http&utm_campaign=link_back 東洋経済オンライン 2023-08-31 04: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件)