投稿時間:2022-07-09 03:21:22 RSSフィード2022-07-09 03:00 分まとめ(28件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
IT InfoQ Presentation: Authorization at Netflix Scale https://www.infoq.com/presentations/authorization-scalability/?utm_campaign=infoq_content&utm_source=infoq&utm_medium=feed&utm_term=global Presentation Authorization at Netflix ScaleTravis Nelson discusses Netflix approach to scaling and shares techniques for distributed caching and isolating failure domains By Travis Nelson 2022-07-08 17:25:00
AWS AWS Partner Network (APN) Blog How to Use a CIS Hardened Image to Set Up an Amazon EC2 Mac Instance https://aws.amazon.com/blogs/apn/how-to-use-a-cis-hardened-image-to-set-up-an-amazon-ec2-mac-instance/ How to Use a CIS Hardened Image to Set Up an Amazon EC Mac InstanceLearn how to set up an Amazon EC Mac instance with a hardened image provided by the Center for Internet Security CIS This will help you to mitigate common threats like malware denial of service insufficient authorization and overlapping trust boundary threats CIS is an AWS Partner and community driven nonprofit that aims to make the connected world a safer place for people businesses and governments 2022-07-08 17:32:46
AWS AWS Government, Education, and Nonprofits Blog What we learned at Amazon re:MARS 2022 for the public sector https://aws.amazon.com/blogs/publicsector/what-learned-amazon-remars-2022-public-sector/ What we learned at Amazon re MARS for the public sectorThe Amazon re MARS conference brought together thought leaders technical experts and groundbreaking companies and organizations that are transforming what s possible in machine learning ML automation robotics and space Advancements in these fields are the engines that will drive innovation for the next years Read on to learn about announcements from re MARS related to the public sector plus some of the innovative organizations and companies that were onsite to inspire guests with breakthrough technologies and ideas 2022-07-08 17:36:40
python Pythonタグが付けられた新着投稿 - Qiita OBD2とPythonでシフトポジションを取る https://qiita.com/nonono_copen/items/fa93211495a8537668c0 情報 2022-07-09 02:02:04
海外TECH Ars Technica Starlink unveils $5,000-a-month Internet for oil rigs and premium yachts https://arstechnica.com/?p=1865151 storms 2022-07-08 17:05:44
海外TECH MakeUseOf How to Deal With a Copyright Strike on YouTube https://www.makeuseof.com/copyright-strike-youtube/ ideal 2022-07-08 18:00:15
海外TECH MakeUseOf The 12 Best Vim Plugins to Improve Your Workflow https://www.makeuseof.com/best-vim-plugins/ improve 2022-07-08 17:30:14
海外TECH DEV Community What was your win this week? https://dev.to/devteam/what-was-your-win-this-week-1h13 What was your win this week Hey there Looking back on this past week what was something you were proud of accomplishing All wins count ーbig or small Examples of wins include Starting a new projectFixing a tricky bugEnjoying the outdoors or whatever else might spark joy ️Have a wonderful weekend 2022-07-08 17:35:38
海外TECH DEV Community Create a show/hide password toggle button in Reactjs. https://dev.to/thisisatefe/create-a-showhide-password-toggle-button-in-reactjs-1oi8 Create a show hide password toggle button in Reactjs Create a show hide password toggle button in Reactjs Hey if you re looking to find out how to create a show hide password toggle like this I m going to show you how you can do it in four steps The idea is to change the type of input from text to password then password to text when you click the label Step Let s start by creating an input tag with a password as the type of input Step Use the useState react hook to determine if the password in the input field should be shown using a boolean state called passwordShown As a first step let s give the initial boolean state value of false as we don t want the password input field to appear when the user tries to enter the password Users should only see them when they click on the Show Password button Step By now instead of hardcoding the password in the input tag we need to make it dynamic so that if the passwordShown boolean state is true the password will be shown and if it is false the password will not be shown Step Now Let s attach an onClick handler to a tag so that when the user clicks the link it should display the password In step I explain to you how to make the link text dynamic instead of hard coded That s all We have made a working Show Hide password toggle Thanks for reading you can also read this article on medium 2022-07-08 17:25:21
海外TECH DEV Community The jacoco-badge-generator GitHub Action is now also available as a CLI tool from PyPI https://dev.to/cicirello/the-jacoco-badge-generator-github-action-is-now-also-available-as-a-cli-tool-from-pypi-3ma0 The jacoco badge generator GitHub Action is now also available as a CLI tool from PyPIThe jacoco badge generator began its life as a GitHub Action for use in GitHub workflows to do the following parse a JaCoCo coverage report generate coverage badges as SVGs entirely within GitHub Actions optionally generate Shields JSON badge endpoints rather than direct badge generation and optionally to perform pull request checks to fail workflow runs if coverage or branches coverage is below a user configurable threshold or if coverage or branches coverage decreased relative to prior run It is suitable for use with Java projects as well as projects with any other JVM language supported by JaCoCo such as Kotlin The badges can be configured in a variety of ways such as color scheme e g mapping from coverage ranges to colors and label text e g defaults are coverage and branches but for a multi module project you might want something like coverage module name and branches module name At the request of multiple users the jacoco badge generator can now also be used as a command line utility outside of GitHub Actions such as executing it from a local build script For this CLI use case it can now be installed locally from PyPI using pip The jacoco badge generator is implemented in Python Within GitHub Actions it is a container Action relying on Docker to ensure a compatible Python version is available within the workflow As a CLI tool Docker is not needed but you must have a compatible version of Python installed It has been tested with Python and it may or may not work with earlier versions The remainder of this post is organized as follows GitHub Actions usage examplesCLI utility installation and usage examples Learn moreSupport the projectThe GitHub repository includes the source code as well as more detailed documentation including additional examples cicirello jacoco badge generator Coverage badges and pull request coverage checks from JaCoCo reports in GitHub Actions jacoco badge generatorCheck out all of our GitHub Actions AboutGitHub Actions Command Line UtilityBuild Status SecuritySource Info The jacoco badge generator can be used in one of two ways as a GitHub Action or as a command lineutility e g such as part of a local build script The jacoco badge generator parses a jacoco csvfrom a JaCoCo coverage report computes coverage percentagesfrom JaCoCo s Instructions and Branches counters andgenerates badges for one or both of these user configurable to provide an easyto read visual summary of the code coverage of your test cases The default behavior directlygenerates the badges internally with no external calls but the action also provides an optionto instead generate Shields JSON endpoints It supportsboth the basic case of a single jacoco csv as well as multi module projects in whichcase the action can produce coverage badges from the combination of the… View on GitHub GitHub Actions usage examplesIn addition to the GitHub repository embedded above there is also a template repository with a few runnable GitHub workflows cicirello examples jacoco badge generator Sample Java project with runnable workflows demonstrating the cicirello jacoco badge generator GitHub Action Runnable Workflows Demonstrating the cicirello jacoco badge generator GitHub ActionThe purpose of this repository includes providing a simple example of configuring the jacoco maven plugin providing a simple example of running jacoco in GitHub Actions as part of a build andproviding runnable example workflows using thecicirello jacoco badge generator GitHubAction Why is this Repository a Template I made this repository a template to make it easy for someoneto use it to get started on a new project To use this to start anew project click the Use this Template button Depending onwhich starter workflow you want to use you might want to selectthe option to include all branches If you are not sure thenfor now include all branches You can always delete unneededbranches afterwards You are also free to fork this repository if you want e gif you want to contribute to it with a pull request or… View on GitHubThe following example workflows demonstrate how to use some of the functionality See the GitHub repository for complete documentation Example All defaultsThis first example GitHub workflow uses all of the default inputs and also assumes the JaCoCo report is in Maven s default location The default behavior only generates the coverage badge and does not generate the branches coverage badge The jacoco badge generator doesn t commit the badge so there is an additional step in this workflow to do that name buildon push branches main jobs build runs on ubuntu latest steps uses actions checkout v name Set up the Java JDK uses actions setup java v with java version distribution adopt name Build with Maven and run tests run mvn B test name Generate JaCoCo Badge id jacoco uses cicirello jacoco badge generator v name Log coverage percentage to the workflow log run echo coverage steps jacoco outputs coverage echo branch coverage steps jacoco outputs branches name Commit and push the badge if it changed uses EndBug add and commit v with default author github actions message commit badge add svg Example Both coverage and branches coverage badgesIf you want badges for both instructions coverage and branches coverage replace the jacoco badge generator step with name Generate JaCoCo Badge id jacoco uses cicirello jacoco badge generator v with generate branches badge true Example Changing the color theme and coverage intervalsIf you want to change the colors used and the coverage intervals for each color you can use the colors and intervals inputs In the following example green is used if coverage is at least percent yellow if coverage is less than but at least percent orange is used if coverage is less than percent but at least percent and red is used if coverage is less than percent This example also generates both badges Colors can be specified as either SVG named colors as in this example or as digit or digit hex colors name Generate JaCoCo Badge id jacoco uses cicirello jacoco badge generator v with generate branches badge true colors green yellow orange red intervals Example Shields JSON endpoints instead of SVG badgesIf you d rather generate JSON instead of SVG badges that you can then pass to Shields custom endpoint you can use the following step name Generate JaCoCo Badge id jacoco uses cicirello jacoco badge generator v with generate coverage badge false generate coverage endpoint true generate branches endpoint true Example Gradle rather than MavenAll of the above examples assume that you are running the tests with Maven If you are using Gradle you can replace the Maven step and the jacoco badge generator step with something like the following which runs the tests and JaCoCo with Gradle rather than Maven and which passes Gradle s location of the JaCoCo report to the jacoco badge generator name Run Tests run gradlew test name Run Test Coverage run gradlew jacocoTestReport name Generate JaCoCo Badge id jacoco uses cicirello jacoco badge generator v with jacoco csv file build reports jacoco test jacocoTestReport csv CLI utility installation and usage examplesThe PyPI package page is found at jacoco badge generator ·PyPI JaCoCo coverage badges SVG format and coverage checks e g decreasing coverage and minimum coverage pypi org Installing the CLI utility from PyPITo install from PyPi Unix and MacOS python m pip install jacoco badge generatorTo install from PyPi Windows py m pip install jacoco badge generator CLI examplesHere are a few example cases All of the examples assume the Python executable is python such as on Unix and MacOS On Windows just change python to py All of the examples assume that you have already generated the JaCoCo report and also assume that you are running the command from the root of your project All defaultsGenerates only the instructions coverage badge and assumes the report is in Maven s default location python m jacoco badge generator Generating instructions coverage and branches coverage badgespython m jacoco badge generator generate branches badge true Changing Colors and Coverage IntervalsIf you want to change the colors used and the coverage intervals for each color you can use the colors and intervals options In the following example green is used if coverage is at least percent yellow if coverage is less than but at least percent orange is used if coverage is less than percent but at least percent and red is used if coverage is less than percent Colors can be specified as either SVG named colors as in this example or as digit or digit hex colors python m jacoco badge generator colors green yellow orange red intervals Generating Shields JSON endpoints instead of badgesIf you want to generate Shields JSON endpoints instead of badges you needto disable generating the coverage badge and enable the JSON endpoints python m jacoco badge generator generate coverage badge false generate coverage endpoint true generate branches endpoint true Gradle location of JaCoCo reportThe utility by default assumes that the JaCoCo report is the Maven default of target site jacoco jacoco csv If it is somewhere else there is an optionto specify its location Here is an example with Gradle s standard location and name of the JaCoCo csv report python m jacoco badge generator jacoco csv file build reports jacoco test jacocoTestReport csv Learn moreYou can find additional information about the jacoco badge generator and other GitHub Actions that I ve implemented on the following website actions cicirello org Here is an earlier DEV post about the jacoco badge generator including an example GitHub workflow that also comments the coverage percentage on pull requests JaCoCo coverage badges PR coverage checks and PR coverage comments from GitHub Actions Vincent A Cicirello・Nov ・ min read actionshackathon github java githubactions Support the projectYou can support the project in a number of ways Starring If you find this utility useful consider starring the GitHub repository Sharing with Others Consider sharing it with others whoyou feel might find it useful Reporting Issues If you find a bug or have a suggestion fora new feature please report it via the Issue Tracker Contributing Code If there is an open issue that you thinkyou can help with submit a pull request Sponsoring You can also consider sponsoring via one of the following GitHubLiberapayKo Fi 2022-07-08 17:24:40
海外TECH Engadget NASA reveals details about James Webb Space Telescope's first full-color images https://www.engadget.com/nasa-james-webb-space-telescope-first-targets-images-data-172517196.html?src=rss NASA reveals details about James Webb Space Telescope x s first full color imagesIt s only a few days until NASA and its partners on the James Webb Space Telescope project reveal the first full color images and spectroscopic data captured by the observatory The agency has shed a little more light on what to expect by revealing the JWST s initial list of cosmic targets One of them is the Carina Nebula which is around light years away NASA says it s one of the biggest and brightest nebulae in the sky and it includes stars that are several times larger than the Sun Another nebula the telescope captured images from is the Southern Ring That s roughly light years from Earth and is a planetary nebula ーit s an expanding cloud of gas that surrounds a dying star Closer to home is the gas planet WASP b which is almost light years away and has around half the mass of Jupiter NASA will provide a look at the planet s light spectrum data Much further from here is Stephan s Quintet which is around million light years away in the Pegasus constellation This is the first compact galaxy group that was discovered all the way back in It comprises five galaxies four of which quot are locked in a cosmic dance of repeated close encounters quot NASA said Also on Tuesday NASA the European Space Agency and Canadian Space Agency will reveal imagery for SMACS quot Massive foreground galaxy clusters magnify and distort the light of objects behind them permitting a deep field view into both the extremely distant and intrinsically faint galaxy populations quot NASA explained A committee of experts from NASA ESA CSA and the Space Telescope Science Institute spent five years determining the first targets for Webb s instruments The full color images and spectroscopic data that JSWT captured will be revealed on July th at AM ET You ll be able to view them on NASA s website This marks an important step for JWST as it marks the official beginning of the observatory s general science operations The aim is to provide us with more detailed images and information about the earliest stars and galaxies as well as potentially habitable exoplanets After launch in December it took several months for the JWST to reach its destination and prepare for full operation We re very close to finding out just what the observatory is capable of 2022-07-08 17:25:17
海外科学 NYT > Science Robot Might Recreate the Elgin Marbles of Greece https://www.nytimes.com/2022/07/08/science/elgin-marbles-3d-print.html Robot Might Recreate the Elgin Marbles of GreeceThe British Museum has staunchly refused to return the Parthenon Marbles to Greece A team of archaeologists are working on a technological solution to the dispute 2022-07-08 17:44:24
海外TECH WIRED 21 Best Early Amazon Prime Day Deals https://www.wired.com/story/early-amazon-prime-day-deals-and-tips-2022-3/ event 2022-07-08 17:19:00
ニュース BBC News - Home Ex-Chancellor Rishi Sunak launches bid to be Conservative leader https://www.bbc.co.uk/news/uk-politics-62099272?at_medium=RSS&at_campaign=KARANGA boris 2022-07-08 17:02:33
ニュース BBC News - Home Wimbledon: Novak Djokovic beats Cameron Norrie to reach final https://www.bbc.co.uk/sport/tennis/62098557?at_medium=RSS&at_campaign=KARANGA Wimbledon Novak Djokovic beats Cameron Norrie to reach finalBritain s Cameron Norrie is unable to capitalise on a confident start as Novak Djokovic fights back to reach the Wimbledon men s singles final 2022-07-08 17:48:30
ニュース BBC News - Home Who is Rishi Sunak? https://www.bbc.co.uk/news/business-51490893?at_medium=RSS&at_campaign=KARANGA minister 2022-07-08 17:07:27
ニュース BBC News - Home Euro 2022: Aitana Bonmati's header gives Spain the lead against Finland https://www.bbc.co.uk/sport/av/football/62101100?at_medium=RSS&at_campaign=KARANGA Euro Aitana Bonmati x s header gives Spain the lead against FinlandWatch Aitana Bonmati give Spain the lead against Finland with a terrific header in their Euro opening match at Stadium MK 2022-07-08 17:04:08
ビジネス ダイヤモンド・オンライン - 新着記事 【歴史的】アメリカを象徴する会社の信じられない崩壊 - GE帝国盛衰史 https://diamond.jp/articles/-/306110 世界最大 2022-07-09 02:55:00
ビジネス ダイヤモンド・オンライン - 新着記事 【92歳の現役総務課長が教える】 何歳になっても失わない心の問題 - 92歳 総務課長の教え https://diamond.jp/articles/-/305993 【歳の現役総務課長が教える】何歳になっても失わない心の問題歳総務課長の教え「仕事がおもしろくない」「上司にうんざり」「もう会社を辞めたい」そんな思いが少しでもあるなら参考にしたいのが、歳にして、現役総務課長としてバリバリ働いている玉置泰子さんの著書『歳総務課長の教え』だ。 2022-07-09 02:50:00
ビジネス ダイヤモンド・オンライン - 新着記事 大人が「ゼロから哲学を学ぶ」なら最初に読みたい3冊 - 独学大全 https://diamond.jp/articles/-/289667 読書 2022-07-09 02:45:00
ビジネス ダイヤモンド・オンライン - 新着記事 決裁者のタイプに合わせて「プレゼン資料」を“微妙”に変えるコツ - 完全版 社内プレゼンの資料作成術 https://diamond.jp/articles/-/305907 2022-07-09 02:40:00
ビジネス ダイヤモンド・オンライン - 新着記事 「成果をうまくアピールするリーダー」と 「自慢ばかりで人望を失うリーダー」の決定的な差 - ありのままの自分で人がついてくる リーダーの習慣 https://diamond.jp/articles/-/306148 行動 2022-07-09 02:35:00
ビジネス ダイヤモンド・オンライン - 新着記事 【マンガ】投資で儲けている人は「下げ相場」「暴落」にどう対処する?意外な答え - サイコロジー・オブ・マネー https://diamond.jp/articles/-/306029 答え 2022-07-09 02:30:00
ビジネス ダイヤモンド・オンライン - 新着記事 【ハーヴァード大学研究者が発見】「地球の運動」に隠された「科学的な驚き」とは? - 「ネコひねり問題」を超一流の科学者たちが全力で考えてみた https://diamond.jp/articles/-/306106 【ハーヴァード大学研究者が発見】「地球の運動」に隠された「科学的な驚き」とは「ネコひねり問題」を超一流の科学者たちが全力で考えてみた猫はなぜ高いところから落ちても足から着地できるのか科学者は何百年も昔から、猫の宙返りに心惹かれ、物理、光学、数学、神経科学、ロボティクスなどのアプローチからその驚くべき謎を探究してきた。 2022-07-09 02:25:00
ビジネス ダイヤモンド・オンライン - 新着記事 【サンジャポで話題!金融界の鬼才】人間関係で「リターンのみ考える人」と「リスクを考える人」に生まれる差 - 東大金融研究会のお金超講義 https://diamond.jp/articles/-/306182 【サンジャポで話題金融界の鬼才】人間関係で「リターンのみ考える人」と「リスクを考える人」に生まれる差東大金融研究会のお金超講義年月に発足した東大金融研究会。 2022-07-09 02:20:00
ビジネス ダイヤモンド・オンライン - 新着記事 【ブログで5億円稼いだ男が語る】ブログ文章術の極意 - ブログで5億円稼いだ方法 https://diamond.jp/articles/-/306049 極意 2022-07-09 02:15:00
ビジネス ダイヤモンド・オンライン - 新着記事 スポティファイを生み出し、スタートアップ不毛の地から激変したスウェーデンに日本が学べることとは? - スタートアップ投資のセオリー https://diamond.jp/articles/-/306176 2022-07-09 02:10:00
ビジネス ダイヤモンド・オンライン - 新着記事 社会貢献しながらお金を稼ぐ!クラウドファンディングのススメ - 40代からは「稼ぎ口」を2つにしなさい https://diamond.jp/articles/-/306185 新刊『代からは「稼ぎ口」をつにしなさい年収アップと自由が手に入る働き方』では、余すことなく珠玉のメソッドを公開しています。 2022-07-09 02:05:00

コメント

このブログの人気の投稿

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

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

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