投稿時間:2023-06-17 07:13:59 RSSフィード2023-06-17 07:00 分まとめ(16件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
IT InfoQ Presentation: API Evolution Without Versioning https://www.infoq.com/presentations/api-evolution-versioning/?utm_campaign=infoq_content&utm_source=infoq&utm_medium=feed&utm_term=global Presentation API Evolution Without VersioningBrandon Byars patterns of evolution in addition to versioning the tradeoffs that exist between API elegance obviousness and stability broadening the conversation from API evolution to PM By Brandon Byars 2023-06-16 21:40:00
AWS AWS Enabling single sign-on to Amazon EC2 Windows for your workforce users | Amazon Web Services https://www.youtube.com/watch?v=wqfltqcUd8U Enabling single sign on to Amazon EC Windows for your workforce users Amazon Web ServicesIn this demo learn how to enable single sign on to Amazon EC Windows for your workforce users Learn more at Subscribe More AWS videos More AWS events videos Do you have technical AWS questions Ask the community of experts on AWS re Post 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 ActiveDirectory AWS AmazonWebServices CloudComputing 2023-06-16 21:25:23
海外TECH MakeUseOf 15 Single-Line Writing Fonts for Cricut Design Space (and Where to Find Them) https://www.makeuseof.com/single-line-cricut-design-writing-fonts/ Single Line Writing Fonts for Cricut Design Space and Where to Find Them Choosing the right fonts for your design can make a huge difference and this guide will show you the best for Cricut Design Space 2023-06-16 21:30:19
海外TECH MakeUseOf 5 Online Strengths Tests You Can Take to Identify Your Strengths https://www.makeuseof.com/online-strength-tests-identify-skills/ strength 2023-06-16 21:30:19
海外TECH DEV Community How AppMap's runtime analysis finds performance and security flaws https://dev.to/appmap/how-appmaps-runtime-analysis-finds-performance-and-security-flaws-4p0k How AppMap x s runtime analysis finds performance and security flawsCover image credit Photo by Kevin Ku on UnsplashSoftware and application development is difficult Producing code that is flaw and error free is even harder sometimes finding the problems in our software can be half the battle of creating applications that are secure reliable and performant We spend an enormous amount of time and money running testing and monitoring our code trying to find the root cause of an issue that has popped up either before or after the application went live hoping that the next issue doesn t rear its ugly head in production So to prepare for the inevitable we implement tools everywhere trying everything we can to catch it when it does But what if we could reduce that overhead and give ourselves a “head start to finding issues while we are still in the development phase In this article I ll introduce runtime analysis and describe what it s good for I ll also give you a tour of how AppMap uses runtime analysis to identify hard to find issues within your application What is runtime analysis Runtime analysis is a process of analyzing code while it is running capturing how your code behaves when it is living and working with actual data Traditionally developers use static code analysis tools to examine patterns and create a model of their code and how the data flows through and application without actually executing it Usually if we want to watch processes and see what happening in our live running applications we employ Application Performance Monitoring Tools running in our production environment This option is expensive and rarely shows where the problem occurred in the source code which can make it challenging to integrate a solution back into the code Runtime analysis gives us a “best of both worlds scenario When runtime analysis is done within the development environment developers have an easy and accessible way to observe running processes analyze code patterns responsible for those processes see how and what data is affected by our coding patterns and identify potential hot spots directly in the source code of that application This in turn gives us the opportunity to resolve issues before we even submit our code for a code review Flaws vs bugsRuntime analysis identifies flaws which are different from bugs Bugs are usually the result of a logic error such as forgetting to initialize a variable or causing a race condition Flaws on the other hand are fundamental structural issues within the code They pertain to problems with code design code behavior when handling data or deeper structural aspects of code implementation Benefits of runtime analysis in the dev environmentWhile there are monitoring tools available for the production environment runtime analysis in the development environment offers three superior benefits Cost effectivenessProduction monitoring tools can be expensive especially if your application has high traffic or complex architectures Not to mention that it can be hard to tailor these tools for what you need and to leave out what you don t Early issue detectionBy analyzing your code at runtime during the development phase developers are able to identify flaws and weaknesses early on before it goes to production or is seen by a customer In a study published last year by Meta they found that finding issues during the development phase makes them more likely to get fixed and makes the fix more likely Seamless integration with the development workflowWith runtime analysis you can deploy your application to different testing environments and stages catching and addressing issues at various points in the development lifecycle This enhances code quality and reduces potential risks Using AppMap for runtime analysisAppMap performs runtime analysis within your IDE Unlike static code analysis which creates a model of your code s behavior AppMap watches your code run giving it the ability to reason about it much more accurately and definitively compared to static analysis To identify flaws AppMap sources its default list of rules from the OWASP top found on the Common Weakness Enumeration CWE forum CWE is a community developed list of software and hardware weakness types governed by high level organizations and companies with a focus on security maintainability and performance Additional rules are available for use as well and a full list of available rules and their definitions can be found in our documentation The cherry on top of this rule based runtime analysis is that it is fast With static code analyzers we have a wait time for the tool to parse code build a model and evaluate it AppMap takes a slightly different approach Since we can actually run your code we have the ability dynamically instrument your code Doing so provides additional insight into what is happening in your application where and which processes our running We flag certain events as they occur and add labels with additional information about what is actually happening in your application at the moment in time that the event occurred AppMap s Runtime Analysis Scanner then utilizes those flags and labels to identify potential issues or to spot patterns that may be problematic How to setup AppMap Runtime AnalysisAfter you install AppMap record your application and create your first AppMap LINK we will add these default rules by creating or modifying the appmap scanner yml file This extends the functionality of the scanner and allows you to include custom rules that suit your specific needs Our documentation also provides insights into how the rules are constructed which labels we use in instrumentation and how the scanner works with flags to match patterns and find flaws example appmap scanner ymlchecks rule authz before authn rule circular dependency rule deprecated crypto algorithm rule deserialization of untrusted data rule exec of untrusted command rule http rule illegal package dependency rule incompatible http client request rule insecure compare rule job not cancelled rule logout without session reset rule missing authentication rule missing content type rule n plus one query rule query from invalid package rule query from view rule rpc without circuit breaker rule save without validation rule secret in log rule slow function call rule slow httpServer request rule slow query rule too many joins rule too many updates rule unbatched materialized query rule unauthenticated encryption rule update in get request ResultsOnce a configuration has been created you get all sorts of information about what possible issues may arise in your application at runtime Example Analysis Overview When run against an example application we set our configuration to look for N queries that are causing performance issues that are difficult to find using traditional static code analysis We can see in the findings that not only did we find two N queries we found other flaws in our application of which are potential security risks In full transparency this example application was built to be deliberately insecure so those security findings aren t all that surprising but what is surprising is the wealth of information available to us about the flaws that were found Understanding runtime analysis findingsWhen we drill down into one of these findings we can see a link to the definition of the flaw with more information about it ex the number of times it occurs ex the stack trace to know how it occurred ex and how which “paths a user could take to encounter that flaw ex With these insights we are able to determine if a fix is necessary where the fix needs to happen and we can design and implement a fix before our feature ever goes into review Example FindingsThis presents us with real actionable information about just how negatively this flaw could impact the performance of our application Imagine the cost and user interruption this would cause if it was found in production or worse not found at all Runtime analysis FTW By leveraging runtime analysis in the development environment you can save on costs detect issues early and integrate the analysis into your workflow Using AppMap for your runtime analysis empowers developers to deliver better and more reliable software We love to hear what our users have to say Let us know what you think in the comments below Also check out our AppMap integration for your IDE and other AppMap related content at the links down below For an in depth look at the default rules check out this article How to ensure your web APIs are SafeLinks️Download AppMap for VSCode and JetBrains  Star AppMap on GitHub  Follow on Twitter  Join AppMap Slack  ️Read the AppMap docs   Watch AppMap Tutorials appmap    Garrett HamelinFollow I love technology and everything about it I m a former software engineer turned developer advocate because I enjoy helping others succeed and building communities of like minded people 2023-06-16 21:13:26
海外TECH Engadget Sony Bravia TV owners can soon take Zoom calls from the couch https://www.engadget.com/sony-bravia-tv-owners-can-soon-take-zoom-calls-from-the-couch-213024871.html?src=rss Sony Bravia TV owners can soon take Zoom calls from the couchSony Bravia TVs will be the first hardware to support the upcoming Zoom for TV app on Google Play Although remote work has dwindled as corporations beckon their underlings back to the office those still enjoying work from home or hybrid arrangements could soon attend virtual meetings from their living room couches It follows Apple s WWDC announcement that FaceTime is coming to Apple TV via mounted iPhones later this year Bravia TVs don t have built in webcams so you ll need to buy a Bravia Cam to make the setup work In addition to enabling Zoom calls the accessory can adjust sound and picture settings based on your location and distance from the television It also allows you to control your TV with hand gestures without picking up the remote enables a proximity alert that detects when kids sit too close as they re wont to do and adds a power saving mode that dims the screen if nobody is watching SonySony says the Zoom for TV app will be available for Bravia TVs “by early summer The company s head of Bravia product design Shusuke Tomonaga said “This partnership will make it possible for our customers to enjoy more realistic video communication on a large TV screen in the living room enabling them to be more connected with the people they care about whether they are working from home learning remotely or just catching up with friends and family This article originally appeared on Engadget at 2023-06-16 21:30:24
海外TECH Engadget Meta will lower the Quest headset's recommended age from 13 to 10 https://www.engadget.com/meta-will-lower-the-quest-headsets-recommended-age-from-13-to-10-211153535.html?src=rss Meta will lower the Quest headset x s recommended age from to Meta is expanding the audience for Quest headsets by inviting preteens into the fold The Facebook owner is lowering the age for Quest and accounts from to later this year by introducing parent controlled accounts Kids will need their parents approval to set up accounts download apps and block access to already present software Those adults can set time limits The company says it s implementing strict privacy controls Meta will provide age appropriate app store experiences like recommendations if parents volunteer their child s age It won t serve ads to kids however and parents will have the choice of whether or not data is used to refine the experience These younger users Meta Horizon profiles are private by default and will require approval for follows and active status updates Horizon Worlds will still require that users are and older Meta portrays this as a boon for education This could give kids virtual science lessons and a raft of educational games the company says Most educational titles on the store are rated for ages and older so there shouldn t be a shortage of material Whether or not there s a trouble free launch is another matter Meta s policies theoretically comply with COPPA Children s Online Privacy Protection Act which bars collecting personal data from kids under without parental consent The New York Timessources claim Meta is already discussing its plans with regulators However there are concerns about safety VR apps particularly social ones are sometimes prone to creeps harassment and similar abuse Meta can t necessarily shield young users against what happens inside third party apps There s also the question of whether or not it s healthy for children to use VR headsets in the first place As Duke University optometrist Dr Nathan Cheung explains to ZDNet these wearables can introduce eye and neck strain that may be particularly problematic for kids with smaller bodies and developing eyes There s also a lack of definitive research on how VR can affect depth perception and focusing The technology isn t definitively dangerous for kids but it s not guaranteed to be safe either This article originally appeared on Engadget at 2023-06-16 21:11:53
海外科学 NYT > Science The Sad Story Behind a Fossil’s ‘Grin’ https://www.nytimes.com/2023/06/16/science/rhynchosaurs-teeth-jaws-fossil.html The Sad Story Behind a Fossil s Grin Rhynchosaurs were dominant reptiles on Earth as dinosaurs emerged but an anatomical quirk may have contributed to a difficult old age and their eventual extinction 2023-06-16 21:17:21
海外TECH WIRED Clop Hacking Rampage Hits US Agencies and Exposes Data of Millions https://www.wired.com/story/clop-moveit-hack-us-agencies-data-theft/ Clop Hacking Rampage Hits US Agencies and Exposes Data of MillionsThe ransomware gang Clop exploited a vulnerability in a file transfer service The flaw is now patched but the damage is still coming into focus 2023-06-16 21:25:48
金融 ニュース - 保険市場TIMES エヌエヌ生命、第1回「夫が社長」妻のつぶやき川柳 受賞作品を発表 https://www.hokende.com/news/blog/entry/2023/06/17/070000 エヌエヌ生命、第回「夫が社長」妻のつぶやき川柳受賞作品を発表応募総数点から点を決定エヌエヌ生命が運営する「経営者の妻のための情報サイトつぐのわ」は月日、第回「夫が社長」妻のつぶやき川柳の受賞作品点を発表した。 2023-06-17 07:00:00
ニュース BBC News - Home King's Birthday Honours: Ian Wright, Ken Bruce and Davina McCall on list https://www.bbc.co.uk/news/uk-65914516?at_medium=RSS&at_campaign=KARANGA names 2023-06-16 21:45:43
ニュース BBC News - Home Daniel Ellsberg: Pentagon Papers whistleblower dies aged 92 https://www.bbc.co.uk/news/world-us-canada-65932944?at_medium=RSS&at_campaign=KARANGA america 2023-06-16 21:20:26
ニュース BBC News - Home Malta 0-4 England: Three Lions cruise to Euro 2024 qualifying win as Trent Alexander-Arnold impresses https://www.bbc.co.uk/sport/football/65852136?at_medium=RSS&at_campaign=KARANGA Malta England Three Lions cruise to Euro qualifying win as Trent Alexander Arnold impressesEngland continue their perfect record in Euro qualifying with a comfortable win at Malta with Trent Alexander Arnold Harry Kane and Callum Wilson on the scoresheet 2023-06-16 21:12:25
ニュース BBC News - Home King's Birthday Honours: Sarah Hunter and Ian Wright among those included https://www.bbc.co.uk/sport/65889468?at_medium=RSS&at_campaign=KARANGA King x s Birthday Honours Sarah Hunter and Ian Wright among those includedFormer England rugby union captain Sarah Hunter and ex footballer Ian Wright are among the sports personalities named in the King s Birthday Honours list 2023-06-16 21:30:37
ビジネス 東洋経済オンライン 朗報!サウナに「美容効果」はここまで期待できる 「サウナ好き="肌がきれいな人"が多い」訳は? | 健康 | 東洋経済オンライン https://toyokeizai.net/articles/-/679235?utm_source=rss&utm_medium=http&utm_campaign=link_back 東洋経済オンライン 2023-06-17 06:30:00
ニュース THE BRIDGE AIモデルの起用は老舗ファッションブランドには鬼門、中小新興ブランドには切り札に https://thebridge.jp/2023/06/ai-models-daunting-for-established-brands-game-changer-for-small-and-emerging-brands AIモデルの起用は老舗ファッションブランドには鬼門、中小新興ブランドには切り札にデニムブランドのLevisは月、AIモデル会社Lalalandaiと提携し、AIが生成したモデルを使って服を紹介すると発表したが、人間のモデルから仕事を奪うという反発を招き、リーバイスは火消しに乗り出さざるをえなかった。 2023-06-16 21:00:55

コメント

このブログの人気の投稿

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