投稿時間:2022-11-02 04:31:27 RSSフィード2022-11-02 04:00 分まとめ(38件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
AWS AWS Desktop and Application Streaming Blog Seamless Active Directory domain logon architecture with Amazon AppStream 2.0 https://aws.amazon.com/blogs/desktop-and-application-streaming/seamless-active-directory-domain-logon-architecture-with-amazon-appstream-2-0/ Seamless Active Directory domain logon architecture with Amazon AppStream Amazon AppStream now supports certificate based authentication CBA CBA enables you to authenticate users with user certificates when they launch their Active Directory domain joined AppStream sessions In this blog I outline the benefits of CBA The blog also provides a high level view of the architecture of CBA with AppStream It also shows the … 2022-11-01 18:28:06
AWS AWS Game Tech Blog Vela Games Cuts Game Build Times by 60% Using Infrastructure on AWS https://aws.amazon.com/blogs/gametech/vela-games-cuts-game-build-times-by-60-using-infrastructure-on-aws/ Vela Games Cuts Game Build Times by Using Infrastructure on AWSVela Games Vela is using the power of the cloud to develop its first game faster By using scalable infrastructure on Amazon Web Services AWS Vela can do more with less freeing up time and resources to focus on creating a fantastic gaming experience for players Vela powers its build farms with simple high performance shared … 2022-11-01 18:52:49
AWS AWS Security Blog Export historical Security Hub findings to an S3 bucket to enable complex analytics https://aws.amazon.com/blogs/security/export-historical-security-hub-findings-to-an-s3-bucket-to-enable-complex-analytics/ Export historical Security Hub findings to an S bucket to enable complex analyticsAWS Security Hub is a cloud security posture management service that you can use to perform security best practice checks aggregate alerts and automate remediation Security Hub has out of the box integrations with many AWS services and over partner products Security Hub centralizes findings across your AWS accounts and supported AWS Regions into a single delegated … 2022-11-01 18:58:06
AWS AWS Carnegie Mellon University work with AWS and JMA on their campus private network https://www.youtube.com/watch?v=4oovcNs10Wg Carnegie Mellon University work with AWS and JMA on their campus private networkHear from Carnegie Mellon University and JMA wireless on the implementation of a campus private network with AWS Learn more at Subscribe More AWS videos More AWS events videos ABOUT AWSAmazon Web Services AWS is the world s most comprehensive and broadly adopted cloud platform offering over fully featured services from data centers globally Millions of customers ーincluding the fastest growing startups largest enterprises and leading government agencies ーare using AWS to lower costs become more agile and innovate faster edgecomputing edge edgeapplications CMU AWS AmazonWebServices CloudComputing 2022-11-01 18:44:33
AWS AWS JMA Wireless and AWS working together on use cases for 5G | Amazon Web Services https://www.youtube.com/watch?v=P8eAvWhfoUw JMA Wireless and AWS working together on use cases for G Amazon Web ServicesJMA Wireless and AWS deploy private network to meet differening campus requirements Learn more at Subscribe More AWS videos More AWS events videos ABOUT AWSAmazon Web Services AWS is the world s most comprehensive and broadly adopted cloud platform offering over fully featured services from data centers globally Millions of customers ーincluding the fastest growing startups largest enterprises and leading government agencies ーare using AWS to lower costs become more agile and innovate faster edgecomputing edge edgeapplications JMA privatenetwork AWS AmazonWebServices CloudComputing 2022-11-01 18:44:30
AWS AWS Security Blog Export historical Security Hub findings to an S3 bucket to enable complex analytics https://aws.amazon.com/blogs/security/export-historical-security-hub-findings-to-an-s3-bucket-to-enable-complex-analytics/ Export historical Security Hub findings to an S bucket to enable complex analyticsAWS Security Hub is a cloud security posture management service that you can use to perform security best practice checks aggregate alerts and automate remediation Security Hub has out of the box integrations with many AWS services and over partner products Security Hub centralizes findings across your AWS accounts and supported AWS Regions into a single delegated … 2022-11-01 18:58:06
GCP gcpタグが付けられた新着投稿 - Qiita 【Google CloudNext '22】GAが発表されたCDNの自動圧縮機能の紹介と所感 https://qiita.com/hirosait/items/1b33826a412bfbb69c9c batch 2022-11-02 03:50:34
海外TECH Ars Technica Pantone wants $15/month for the privilege of using its colors in Photoshop https://arstechnica.com/?p=1894166 photoshopchanges 2022-11-01 18:27:08
海外TECH Ars Technica OpenSSL 3 patch, once Heartbleed-level “critical,” arrives as a lesser “high” https://arstechnica.com/?p=1894214 arrives 2022-11-01 18:05:11
海外TECH MakeUseOf How to Reset the Local Security Policy to Default in Windows 11 https://www.makeuseof.com/windows-11-reset-local-security-policy/ settings 2022-11-01 18:16:14
海外TECH DEV Community API Mocking: Essential and Redundant https://dev.to/codenameone/api-mocking-essential-and-redundant-10fa API Mocking Essential and RedundantI love contradictions where both states of truth can work at the same time Case in point this tweet about mocking from the other week If you use mocks you are not testing My answer was Mocks help assert limited fixed functionality and they do it FAST Which is what unit tests are about Mocks are an essential part of a wider quality strategy Otherwise you will spend your time in integration test churn No they are not enough But they do test It would seem we are both saying the exact opposite but in fact that isn t necessarily the case I get what Maxi is saying here and his point is very valid Mocks are problematic The Problems with MocksMocks hide external dependencies on the real API and as a result they don t test them This limits the scope of the test to a very narrow hard coded set It relies on internal implementation details such as the dependencies to implement the test that means the test will probably fail if the implementation changes even though the contract doesn t change e g let s look at an example public int countUserCities return db executeInt “select count “city from users We can mock the db function executeInt since the returned result will be bad But this will break if we change the original API call to something like this public int countUserCities return db count “city users This covers nothing A far better approach is to add fake data to a temporary database which is exceedingly easy to do thanks to projects such as Testcontainers We can spin up containers dynamically and “properly check the method with a database similar to the one we have in production This performs the proper check it will fail for bugs like a typo in the query and doesn t rely on internal implementation Unfortunately this approach is problematic Loading a fresh database takes time Even with containers Doing it for every suite can become a problem as the scope of testing grows That s why we separate the unit and integration tests Performance matters The Performance ProblemYou know what s the worst type of testing The ones you don t run and end up deleting Testing frequently is crucial continuous testing lets us fail quickly during development A quick failure means our developer mode is still fresh on the change that triggered the failure You don t need git bisect you can fix things almost instantly For this to work properly we need to run testing cycles all the time If it takes a while to go through a testing workflow and requires some configuration e g docker etc which might collide with CPU architecture too e g M Mac then we might have a problem We mock external dependencies for the unit test so performance will improve But we can t give up on the full call to the actual API because the mocking has issues However these can run in the CI process we don t need to run them all the time Does this breed duplication yes It sucks and I don t like it Unfortunately there s no other way I m aware of at this time I tried to think about a way around this with code that would act as a unit test in one execution and as an integration test invoking the real counterpart when running in CI But I couldn t come up with something workable that didn t make things worse Because of this I think it s important to check coverage of integration tests only The unit test coverage is interesting but not as crucial as the integration coverage I m not in favor of coverage But it is an important statistic to monitor What Should We Mock I gave the database example but I m not in favor of mocking databases For Java I typically use a light in memory database which works well with most cases Fakers accept CSV formats to fill up the database and can even come up with their own fake data This is better than mocking and lets us get close to integration test quality with unit test performance However we can t constantly connect to Web Service dependencies without mocking In that sense I think it s a good idea to mock everything that s outside of our control In that point we face the choice of where to mock We can use mock servers that include coded requests and responses This makes sense when working with an integration test Not so much for a unit test but we can do it if the server is stateless and local I d prefer mocking the call to the API endpoints in this case though It will be faster than the actual API but it could still cause problems Over mocking is the process of applying mocks too liberally to too many API calls A developer might engage in that in order to increase the coveted coverage metric This further strengthens my claim that coverage shouldn t apply to unit tests as it might lead to such a situation Behavior shouldn t be mocked for most local resources accessed by a framework FinallyI love mocking It made the development of some features possible Without it I couldn t properly check plugins APIs servers etc However like all good sweets Too much of a good thing can corrupt our code It s also a small part of a balanced meal stretching the metaphors but it works We can just build functional tests and call it the day we can t just rely on mocking On the contrary they aren t the real badge of quality we seek Integration testing occupies that spot When we have coverage there we have important valuable coverage Mocking is wonderful for narrowing down problems and avoiding regressions When I need to check that a fix is still in place mocked testing is the perfect tool Development of such components is problematic and fragile But that s a good thing we want that code to be tied to the implementation a bit Some operations would be difficult to cover without proper mocking When testing the entire system that might be reasonable to expect but not for functional testing In these cases we need a fast response and the actual API might not be enough 2022-11-01 18:42:38
海外TECH DEV Community The 7 Best React Component Libraries to Use in 2022 https://dev.to/amrtcrypto/the-7-best-react-component-libraries-to-use-in-2022-11la The Best React Component Libraries to Use in In this article I will be sharing with you awesome React UI libraries that you should check out tremorTremor is a low level opinionated UI component library to build dashboards It offers components such as charts layouts or input elements covering the essential parts of a dashboard or analytical interface Our approach provides great flexibility between beautiful defaults and fast customization The best way to get started is to check out our templates called Blocks for getting a feeling of how components are used and combined planbyPlanby is a component for a quick implementation of EPG live streaming timelines schedules music events timelines and many more ideas React DnDReact DnD is a library that uses the HTML drag and drop API to create complex drag and drop interfaces It is built on top of the modern API making it easier to use and more powerful Advanced CropperThis react cropper library gives you the possibility to create croppers that exactly suited for your website design Don t limit yourself Rotate zoom transitions autozoom and many other features included React ReflexRe F ex is a React flex based layout component library which I created because none of the components I found out there could satisfy my requirements TawilandTailwind CSS works by scanning all of your HTML files JavaScript components and any other templates for class names generating the corresponding styles and then writing them to a static CSS file React QueryToss out that granular state management manual refetching and endless bowls of async spaghetti code TanStack Query gives you declarative always up to date auto managed queries and mutations ーFeel free to reach out to me Twitter ‍Instagram Email 2022-11-01 18:10:27
Apple AppleInsider - Frontpage News iPhone 14 Pro review from Halide says the camera is a huge leap https://appleinsider.com/articles/22/11/01/iphone-14-pro-review-from-halide-says-the-camera-is-a-huge-leap?utm_medium=rss iPhone Pro review from Halide says the camera is a huge leapLux the makers of the popular camera app Halide have published their annual review of the iPhone s camera testing the iPhone Pro and its new capabilities iPhone Pro cameraSebastiaan de With examined every aspect of the front and rear cameras on Apple s new Pro iPhones Each one comes with improvements to software processing image quality and sensors Read more 2022-11-01 18:20:08
Apple AppleInsider - Frontpage News Deals: $354 off M1 Max MacBook Pro 14-inch 32GB RAM, plus $70 off AppleCare https://appleinsider.com/articles/22/11/01/deals-354-off-m1-max-macbook-pro-14-inch-32gb-ram-plus-70-off-applecare?utm_medium=rss Deals off M Max MacBook Pro inch GB RAM plus off AppleCareIn stock and ready to ship this best of the web MacBook Pro deal knocks off a top selling configuration in addition to off three years of AppleCare Save on a premium MacBook Pro inch The cash discount is valid with promo code APINSIDER at Apple Authorized Reseller Adorama According to our inch MacBook Pro Price Guide this is the lowest price available on the premium configuration in Space Gray that packs a punch with Apple s M Max chip featuring a core CPU and core GPU Read more 2022-11-01 18:04:26
海外TECH Engadget Iconic ASCII sim 'Dwarf Fortress' will hit Steam and Itch on December 6th with major upgrades https://www.engadget.com/dwarf-fortress-steam-and-itch-release-date-183016431.html?src=rss Iconic ASCII sim x Dwarf Fortress x will hit Steam and Itch on December th with major upgradesIt s been a long long time coming but the legendary civilization management sim Dwarf Fortress at last has a Steam and Itch io release date It will be available on both storefronts on December th for While that might seem steep for a game that has already been around for years and is available for free elsewhere the latest version has some major upgrades For one thing you won t need to deal with Dwarf Fortress famously primitive visuals anymore The ASCII graphics have been upgraded to a pixel art tileset Other new features include a fresh soundtrack and sound effects a revamped user interface and menus a tutorial for newcomers and other quality of life improvements All of these are designed to help make the game more approachable Tarn and Zach Adams have been working on the game for years at their studio Bay They teamed up with publisher Kitfox Games of Boyfriend Dungeon fame for this upgraded version which has an official title of Slaves to Armok God of Blood Chapter II Dwarf Fortress The main Fortress mode and the Legends mode will be available at the outset with the original game s Adventure and Arena modes arriving later Even then Bay is far from done as the studio has plans for major changes for the map system as well as procedurally generated myths and magic systems There s no end in sight for the project according to a press release If all of that seems too fancy for you there s still the option to download the original version of Dwarf Fortress from Bay s website in all its ASCII glory at no cost Until now fans have supported Bay and the game s development through donations 2022-11-01 18:30:16
海外TECH Engadget Elon Musk says Twitter Blue will cost $8 and be required for verification https://www.engadget.com/twitter-blue-price-increasing-8-per-month-180319987.html?src=rss Elon Musk says Twitter Blue will cost and be required for verificationTwitter is increasing the price of its subscription service Moving forward Twitter Blue will cost per month in the US with pricing in other countries adjusted for the purchasing power of consumers in those markets Twitter owner and CEO Elon Musk announced today The jump from Blue s current per month fee amounts to a percent price increase nbsp At the same time Twitter plans to add new perks to the service As a subscriber you ll see fewer ads and have the ability to post longer videos and audio ーwhich Twitter had tested prior to Musk s takeover It will also give you priority in replies mentions and Twitter s search feature perks Musk claims are essential to reducing the amount of spam on the platform Twitter s current lords amp peasants system for who has or doesn t have a blue checkmark is bullshit Musk said all but confirming verification will be tied to Twitter Blue subscriptions Lastly Twitter Blue will include the ability to bypass paywalls ーthough that will come later and will depend on Twitter forging the necessary publisher partnerships nbsp Twitter s current lords amp peasants system for who has or doesn t have a blue checkmark is bullshit Power to the people Blue for month ーElon Musk elonmusk November Tuesday s announcement comes after days of speculation on how Twitter could change under Musk s ownership On Sunday two separate reports said the Tesla and SpaceX CEO was considering increasing the price of Twitter Blue to as much as per month and making the subscription a requirement for verification Musk appeared to reconsider pricing after a tweet from author Stephen King criticizing the plan went viral We need to pay the bills somehow Musk said Twitter cannot rely entirely on advertisers How about nbsp nbsp nbsp nbsp nbsp nbsp Musk claimed the changes to Twitter Blue would also give the company a way to support content creators On Monday the owner of Nibellion one of Twitter s most prolific and popular gaming news accounts said he was abandoning the platform citing Musk s takeover of the company and the difficulty he encountered monetizing his work nbsp “I have miscalculated the value of my Twitter activity and realize that it is nothing worth supporting by itself for the vast majority of people Nibel said It is not me who is popular but it is that work that is useful It is not valuable by itself but a comfortable timesaver and I get that now Accounts like Nibel are the lifeblood of Twitter While they only represent about percent of the user base they account for more than percent of tweets you see on the platform nbsp Tweaks to Twitter Blue are likely only the start of the changes Musk has planned for Twitter According to The New York Times Musk has ordered company wide layoffs that could affect as much as percent of Twitter s person workforce He is also reportedly considering bringing back Vine the company s long defunct short form video service In the meantime Musk did not say when the changes to Twitter Blue would begin rolling out nbsp 2022-11-01 18:03:19
海外TECH CodeProject Latest Articles LINQ and performance https://www.codeproject.com/Articles/5345621/LINQ-and-performance environments 2022-11-01 18:28:00
海外科学 NYT > Science What Do Middle Schools Teach About Climate Change? Not Much. https://www.nytimes.com/2022/11/01/climate/middle-school-education-climate-change.html What Do Middle Schools Teach About Climate Change Not Much Around the United States middle school science standards have minimal references to climate change and teachers on average spend just a few hours a year teaching it 2022-11-01 18:19:11
海外科学 BBC News - Science & Environment Boris Johnson confirms he is attending COP27 in Egypt https://www.bbc.co.uk/news/uk-politics-63478120?at_medium=RSS&at_campaign=KARANGA climate 2022-11-01 18:23:28
ニュース BBC News - Home UK is compassionate, says PM after Suella Braverman invasion row https://www.bbc.co.uk/news/uk-politics-63475511?at_medium=RSS&at_campaign=KARANGA migrant 2022-11-01 18:49:58
ニュース BBC News - Home NUS president dismissed over anti-Semitism claims https://www.bbc.co.uk/news/education-63477692?at_medium=RSS&at_campaign=KARANGA conduct 2022-11-01 18:01:51
ニュース BBC News - Home Boris Johnson confirms he is attending COP27 in Egypt https://www.bbc.co.uk/news/uk-politics-63478120?at_medium=RSS&at_campaign=KARANGA climate 2022-11-01 18:23:28
ニュース BBC News - Home Sarina Wiegman 'will not comment' on Hannah Hampton's absence from England squad https://www.bbc.co.uk/sport/football/63475311?at_medium=RSS&at_campaign=KARANGA Sarina Wiegman x will not comment x on Hannah Hampton x s absence from England squadEngland manager Sarina Wiegman says she would not like to comment on the reasons why goalkeeper Hannah Hampton has been left out of the squad again 2022-11-01 18:24:21
ニュース BBC News - Home Rugby League World Cup: England get tournament under way with thumping 72-4 win over Brazil https://www.bbc.co.uk/sport/rugby-league/63476167?at_medium=RSS&at_campaign=KARANGA Rugby League World Cup England get tournament under way with thumping win over BrazilEngland get their Rugby League World Cup campaign under way with a thumping win over Brazil in a carnival atmosphere at Headingley 2022-11-01 18:51:08
ニュース BBC News - Home Paris Masters: Novak Djokovic beats Maxime Cressy in two sets https://www.bbc.co.uk/sport/tennis/63468990?at_medium=RSS&at_campaign=KARANGA cressy 2022-11-01 18:58:34
ニュース BBC News - Home South Korea Halloween crush: Who were the victims? https://www.bbc.co.uk/news/world-asia-63456066?at_medium=RSS&at_campaign=KARANGA korea 2022-11-01 18:36:20
ニュース BBC News - Home South Korea: How the Halloween tragedy unfolded https://www.bbc.co.uk/news/world-63448040?at_medium=RSS&at_campaign=KARANGA itaewon 2022-11-01 18:03:00
ビジネス ダイヤモンド・オンライン - 新着記事 6年後の腰痛を予防するために、BMI25以上の人は「10%減」を目安に! - カラダご医見番 https://diamond.jp/articles/-/312100 体格指数 2022-11-02 03:55:00
ビジネス ダイヤモンド・オンライン - 新着記事 米市場は今後どう動くか? 業界の大物に聞く - WSJ PickUp https://diamond.jp/articles/-/312221 wsjpickup 2022-11-02 03:50:00
ビジネス ダイヤモンド・オンライン - 新着記事 金利上昇でFRBの損失拡大 - WSJ PickUp https://diamond.jp/articles/-/312222 wsjpickup 2022-11-02 03:45:00
ビジネス ダイヤモンド・オンライン - 新着記事 【社説】ハーバード大の人種差別は永遠に? - WSJ PickUp https://diamond.jp/articles/-/312223 wsjpickup 2022-11-02 03:40:00
ビジネス ダイヤモンド・オンライン - 新着記事 新入試導入の「お茶大附属中」、半世紀近い自主研究の歴史 - 中学受験のキーパーソン https://diamond.jp/articles/-/311510 中学受験 2022-11-02 03:35:00
ビジネス ダイヤモンド・オンライン - 新着記事 “複業”で人と組織を成長させる会社の“たった1つのルール”とは? - HRオンライン https://diamond.jp/articles/-/311906 2022-11-02 03:30:00
ビジネス ダイヤモンド・オンライン - 新着記事 【『世界一受けたい授業』で話題】 内臓脂肪を落とし「高血圧」「高血糖」を解消する “正論にして王道の方法” - 10年後、後悔しない体のつくり方 https://diamond.jp/articles/-/307712 2022-11-02 03:25:00
ビジネス ダイヤモンド・オンライン - 新着記事 【マンガでわかる】『世界一受けたい授業』で話題! 体がゴリゴリに硬い人は絶対やってみて! 首が超スッキリする簡単ストレッチ - いつでも、どこでも、1回20秒で硬い体が超ラクになる! スキマ★ストレッチ https://diamond.jp/articles/-/308381 2022-11-02 03:20:00
ビジネス ダイヤモンド・オンライン - 新着記事 試験直前でも合格! 英単語の「最強効率」暗記法とは? - 逆転合格90日プログラム https://diamond.jp/articles/-/312236 逆転 2022-11-02 03:13:00
ビジネス ダイヤモンド・オンライン - 新着記事 【売れるチャンスをみすみす見逃すな!】円安の今だからこそ、不安対策を見直せ! - 「A4」1枚チラシで今すぐ売上をあげるすごい方法 https://diamond.jp/articles/-/311695 2022-11-02 03:05:00
ビジネス ダイヤモンド・オンライン - 新着記事 「何食べたい?」と聞かれると困る! 気のきいた返答【11月】 - 旬のカレンダー https://diamond.jp/articles/-/312187 「何食べたい」と聞かれると困る気のきいた返答【月】旬のカレンダー多くの人が悩む、「何食べたい」。 2022-11-02 03:03: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件)