投稿時間:2023-02-10 04:32:30 RSSフィード2023-02-10 04:00 分まとめ(34件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
AWS AWS Wing, J Trust Royal Bank, and EZECOM accelerate Cambodia’s digital advancement with AWS https://www.youtube.com/watch?v=UIqEGQZMcJw Wing J Trust Royal Bank and EZECOM accelerate Cambodia s digital advancement with AWSCustomer Name Headline Wing J Trust Royal Bank and EZECOM accelerate Cambodia s digital advancement with AWSSubhead Wing J Trust Royal Bank and EZECOM collaborate with AWS to provide Cambodians with easy and affordable access to ecommerce finance and technology Summary Wing J Trust Royal Bank and EZECOM are part of the Royal Group of Companies Cambodia s dynamic and diversified business conglomerate The businesses engaged with AWS to launch an online commerce platform transform the bank s operations and provide best in class cloud solutions to Cambodian companies By working with AWS Wing J Trust Royal Bank and EZECOM accelerate their digital capabilities and continue to build a digital economy in Cambodia 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 AWS AmazonWebServices CloudComputing 2023-02-09 18:44:53
python Pythonタグが付けられた新着投稿 - Qiita AWS SAMとHugging Face Transformersでサーバーレスな推論APIを作る https://qiita.com/oddgai/items/0d86e13014f898b6f811 awssam 2023-02-10 03:50:04
AWS AWSタグが付けられた新着投稿 - Qiita AWS SAMとHugging Face Transformersでサーバーレスな推論APIを作る https://qiita.com/oddgai/items/0d86e13014f898b6f811 awssam 2023-02-10 03:50:04
海外TECH Ars Technica Android’s upcoming “app cloning” feature will make multiple accounts easy https://arstechnica.com/?p=1916443 duplicate 2023-02-09 18:36:41
海外TECH Ars Technica Redwood gets $2 billion commitment from DoE for recycled batteries https://arstechnica.com/?p=1916461 anode 2023-02-09 18:08:25
海外TECH MakeUseOf What Is a Wide-Angle Lens and When Should You Use One? https://www.makeuseof.com/what-is-wide-angle-lens/ angle 2023-02-09 18:30:16
海外TECH MakeUseOf How to Disable Windows 11's Tracking Features https://www.makeuseof.com/disable-windows-11-tracking-features/ windows 2023-02-09 18:15:16
海外TECH DEV Community 100% Code Coverage is a Lie 🎯 https://dev.to/this-is-learning/100-code-coverage-is-a-lie-1i1a Code Coverage is a Lie On a project I finally hit Code Coverage what could go wrong now I tested ALL lines of my code there are no bugs Well not really If your only goal is having high coverage you re probably doing more harm than good wasting time on near to useless tests just to see the green coverage report And bugs might still be there Imagine adding tests for simple getters and setters or an empty constructor with no logic Do they increase the coverage Yes Do they add value Nope The goal of tests is to ensure that the code works as expected not to increase the coverage If you re not testing the business logic you re not testing the code Many projects have to meet certain coverage thresholds which might make sense if you see it as an enforcement tool to ensure tests are written but it doesn t have to be the goal or the only thing that matters Sure if you validate that certain lines are tested it s better than not having them tested at all but as long as edge cases are not covered that coverage metric isn t worth much Those reports should be used instead as a metric to indicate which parts of the code might need more testing Once identified forget about the and write robust tests on the business logic including possible edge cases Beware Code Coverage is a tool not a goal If you re curious to hear more about my opinion on Code Coverage I recorded a video and you can find it on YouTube As a bonus content to further explain the concept there s a joke on this tweet that makes it really easy to understand Code coverage is not enough and edge cases are not enough still You need to test the business logic not the code Coverage will come naturally What do you think about code coverage Do you like having coverage thresholds in projects How high Let s discuss in the comments Thanks for reading this article I hope you found it interesting I recently launched my Discord server to talk about Open Source and Web Development feel free to join Do you like my content You might consider subscribing to my YouTube channel It means a lot to me ️You can find it here Feel free to follow me to get notified when new articles are out Leonardo MontiniFollow I talk about Open Source GitHub and Web Development I also run a YouTube channel called DevLeonardo see you there 2023-02-09 18:20:00
海外TECH DEV Community Optimizing Functional React Components https://dev.to/bytebodger/optimizing-functional-react-components-4poi Optimizing Functional React ComponentsI ve been writing functional React components for several years now And while I feel that my code usually stands up to peer scrutiny I ve only recently become aware that there s a lot I could be doing that would be far more efficient I m not talking about optimizing the way that I write code e g writing fewer lines of code I m talking about optimizing the way that the code runs Nearly every day I encounter functional components many of which were written by me that could honestly run in a much more efficient manner But they don t because they were written in a very basic style with little concern for optimization What do I mean by inefficient For the purposes of this article I m not talking about general inefficiencies that you may find in any code e g nested loops Nor am I talking about things that may specifically be considered inefficient in JavaScript code e g unnecessary DOM manipulations Instead I m talking about cases where the React team has given us the tools to optimize our code but we re simply not using them Consider the following basic example export const MyComponent gt const clickCounter setClickCounter useState const onClick event gt increment clickCounter and process the onClick event const onMouseOver event gt do some mouseover stuff const postClick gt check clickCounter and potentially do some post click processing const preClick gt check clickCounter and potentially do some pre click processing return lt div gt lt h onMouseOver event gt onMouseOver event style color green gt My Basic Component lt h gt lt p style textAlign right gt lt MyButton onClick onClick postClick postClick preClick preClick style fontSize bold gt Click here lt MyButton gt lt p gt lt div gt This is about as basic as React gets I have a simple component lt MyComponent gt that s generating some simple JSX That JSX in turn calls another custom component lt MyButton gt that presumably provides some sort of button wrapper functionality The child component lt MyButton gt allows you to pass in various callback functions based on whether you want something to be done pre click on click or post click It also accepts a style prop so you can style the button On the surface this component doesn t seem to be too egregious But there are many built in features of the library that we re simply not leveraging Here are some of the questions you should be thinking when you look at this component This component accepts no props and seems to generate no side effects So why isn t it memo ized Why are we using a state variable to track an internal value clickCounter that has no impact on the display Why are we using objects to denote style attributes knowing that those objects will be seen every time the function is invoked as completely new objects Why are we allowing the helper functions to be re defined every single time this component is called Why are we creating a new function definition inside the mouseover event More to come I m not going to tackle all of these issues in this article Instead I m going to publish a mini series that explains when and why to use memo useMemo useCallback and useRef I m doing this because quite frankly in my past code I haven t been using those features nearly enough 2023-02-09 18:12:21
Apple AppleInsider - Frontpage News New DJI Mini 2 SE can fly up to 31 minutes while shooting video https://appleinsider.com/articles/23/02/09/new-dji-mini-2-se-can-fly-up-to-31-minutes-while-shooting-video?utm_medium=rss New DJI Mini SE can fly up to minutes while shooting videoThe newest drone from DJI is the Mini SE an affordable entry to the company s drone lineup that can fit in the palm of a hand The new DJI Mini SE droneThe Mini SE is an ultraportable regulation friendly drone that weighs less than eight ounces and is exempt from drone laws in several regions worldwide Its inch CMOS sensor can film videos at K resolution and capture photos at megapixels Read more 2023-02-09 18:39:18
Apple AppleInsider - Frontpage News Moment launches new 1.55x anamorphic mobile lens for iPhone https://appleinsider.com/articles/23/02/09/moment-launches-new-155x-anamorphic-mobile-lens-for-iphone?utm_medium=rss Moment launches new x anamorphic mobile lens for iPhoneOn Thursday Moment released its latest mobile lens the x anamorphic which will give you lovely horizontal flares and a cinematic ultra wide POV in iPhone photos and videos x anamorphic mobile lensThe new x anamorphic joins the company s existing x anamorphic and the rest of its mobile lens lineup The x can comparatively fit more into frame than the x and provides more of the desired flare and distortion Read more 2023-02-09 18:27:08
海外TECH Engadget Flipboard brings its notes feature to iOS and Android https://www.engadget.com/flipboard-notes-ios-android-184244751.html?src=rss Flipboard brings its notes feature to iOS and AndroidFlipboard s iOS and Android apps now include the notes feature that the company rolled out on the web in December The update brings more social elements to the Flipboard mobile apps The company says notes are a simple way to start conversations share ideas and perhaps build micro communities around a shared interest or theme With notes creators can add original content to shared magazines such as commentary images links and video embeds They have the option to mention other users in notes and comments to bring them into the fold To start a note tap on the create i e pencil icon in a magazine Flipboard suggests that notes really sing in group magazines as the feature enables all contributors to add their perspectives and kick off conversations Magazine owners and contributors will all get a notification when someone in the group adds a note or comment Moreover notes added to followed magazines may pop up in users For You feeds 2023-02-09 18:42:44
Cisco Cisco Blog Rise Above Your Competition With Cisco SD-WAN Analytics https://blogs.cisco.com/networking/rise-above-your-competition-with-cisco-sd-wan-analytics Rise Above Your Competition With Cisco SD WAN AnalyticsJust like Moneyball it s the analytics and automation that enable our customers to be more competitive Give them better network visibility actionable insights and ultimately predictions that transform their operation from a reactive to a highly predictive model 2023-02-09 18:05:09
ニュース BBC News - Home Burt Bacharach, one of pop's greatest songwriters, dies aged 94 https://www.bbc.co.uk/news/entertainment-arts-64587070?at_medium=RSS&at_campaign=KARANGA prayer 2023-02-09 18:47:23
ニュース BBC News - Home MPs want inquiry into Ashford school after attack on black schoolgirl https://www.bbc.co.uk/news/uk-england-surrey-64585043?at_medium=RSS&at_campaign=KARANGA surrey 2023-02-09 18:36:49
ニュース BBC News - Home Church of England backs plans to bless gay couples https://www.bbc.co.uk/news/uk-64581421?at_medium=RSS&at_campaign=KARANGA church 2023-02-09 18:08:45
ニュース BBC News - Home MPs' pay will increase by 2.9% in April https://www.bbc.co.uk/news/uk-politics-64581869?at_medium=RSS&at_campaign=KARANGA public 2023-02-09 18:05:57
ニュース BBC News - Home Press watchdog investigating Jeremy Clarkson's Meghan column https://www.bbc.co.uk/news/uk-64589605?at_medium=RSS&at_campaign=KARANGA clarkson 2023-02-09 18:30:37
ニュース BBC News - Home Trans prisoners to be placed based on birth gender in Scotland https://www.bbc.co.uk/news/uk-scotland-64586523?at_medium=RSS&at_campaign=KARANGA bryson 2023-02-09 18:42:52
ニュース BBC News - Home Rihanna: Super Bowl half-time show to mark singer's live return https://www.bbc.co.uk/news/entertainment-arts-64545100?at_medium=RSS&at_campaign=KARANGA arizona 2023-02-09 18:52:22
ニュース BBC News - Home European Super League: New proposal would be open competition, say organisers https://www.bbc.co.uk/sport/football/64578730?at_medium=RSS&at_campaign=KARANGA European Super League New proposal would be open competition say organisersA new look European Super League would be a competition with no permanent members and based on sporting performance says A chief executive Bernd Reichart 2023-02-09 18:06:24
ビジネス ダイヤモンド・オンライン - 新着記事 同性婚は「嫌だから」反対?差別撤廃に及び腰のツケが岸田政権・自民党に - News&Analysis https://diamond.jp/articles/-/317480 newsampampanalysis 2023-02-10 03:55:00
ビジネス ダイヤモンド・オンライン - 新着記事 戦後最大の経済犯罪「イトマン事件」で暗躍し、ただ一人生き残った男の真相 - ニュースな本 https://diamond.jp/articles/-/316567 経済犯罪 2023-02-10 03:50:00
ビジネス ダイヤモンド・オンライン - 新着記事 同性婚差別の荒井発言が開いた、自民党のLGBTQ巡る大問題 - 永田町ライヴ! https://diamond.jp/articles/-/317435 lgbtq 2023-02-10 03:45:00
ビジネス ダイヤモンド・オンライン - 新着記事 回転ずしテロ、自己破産しても「賠償責任逃れ」できない可能性を弁護士が指摘 - 弁護士ドットコム発 https://diamond.jp/articles/-/317513 2023-02-10 03:40:00
ビジネス ダイヤモンド・オンライン - 新着記事 シリアの孤立、地震救援の妨げに - WSJ PickUp https://diamond.jp/articles/-/317479 wsjpickup 2023-02-10 03:35:00
ビジネス ダイヤモンド・オンライン - 新着記事 マイクロソフトのAI導入、グーグルにはもろ刃 - WSJ PickUp https://diamond.jp/articles/-/317478 wsjpickup 2023-02-10 03:30:00
ビジネス ダイヤモンド・オンライン - 新着記事 定年後「抜け殻」になる危険度チェックリスト、サラリーマン思考から脱却を - ニュースな本 https://diamond.jp/articles/-/316935 脱却 2023-02-10 03:25:00
ビジネス ダイヤモンド・オンライン - 新着記事 日本の賃金低迷は「21世紀の重商主義」の表れといえる理由 - ニュースな本 https://diamond.jp/articles/-/317477 日本の賃金低迷は「世紀の重商主義」の表れといえる理由ニュースな本グローバル化の進展とともに、「世紀の資本」は凄まじい規模と速度で国境を越え、暴利をむさぼっています。 2023-02-10 03:20:00
ビジネス ダイヤモンド・オンライン - 新着記事 就活を有利に!「資格」で企業と自分をつなぐストーリーを語れ! - 自分の価値の見つけ方・伝え方 https://diamond.jp/articles/-/317334 就活を有利に「資格」で企業と自分をつなぐストーリーを語れ自分の価値の見つけ方・伝え方本格的な就活の季節を前に、コロナ禍での学びを強いられる学生たちからは、「面接でアピールできるガクチカがない」という不安も聞かれる。 2023-02-10 03:15:00
ビジネス ダイヤモンド・オンライン - 新着記事 デザインドリブンのイノベーションに「デザインを理解する力」は必要か - デザイン経営の輪郭 https://diamond.jp/articles/-/317380 その基盤となるのが「デザインディスコース」である。 2023-02-10 03:10:00
ビジネス ダイヤモンド・オンライン - 新着記事 ミドルリーダーの心身を蝕む「不健全な完璧主義」とは - 世界のウェルビーイングサーベイを横断せよ https://diamond.jp/articles/-/316944 完璧主義 2023-02-10 03:05:00
海外TECH reddit [Analysis] Kevin Durant has now joined the team that had the best record in the NBA the previous season twice in his career. https://www.reddit.com/r/nba/comments/10y1e66/analysis_kevin_durant_has_now_joined_the_team/ Analysis Kevin Durant has now joined the team that had the best record in the NBA the previous season twice in his career This was interesting when I was researching it It s typically associated with quot bus rider quot behavior but can also indicate an intense desire to win at all costs I personally think that KD is riding the bus But I m willing to accept that he s also just a winner Your thoughts submitted by u grodges to r nba link comments 2023-02-09 18:02:04
GCP Cloud Blog What’s new with Google Cloud https://cloud.google.com/blog/topics/inside-google-cloud/whats-new-google-cloud/ What s new with Google CloudWant to know the latest from Google Cloud Find it here in one handy location Check back regularly for our newest updates announcements resources events learning opportunities and more  Tip  Not sure where to find what you re looking for on the Google Cloud blog Start here  Google Cloud blog Full list of topics links and resources Week of Feb Feb Immersive Stream for XRleverages Google Cloud GPUs to host render and stream high quality photorealistic experiences to millions of mobile devices around the world and is now generally available Read more here Reliable and consistent data presents an invaluable opportunity for organizations to innovate make critical business decisions and create differentiated customer experiences  But poor data quality can lead to inefficient processes and possible financial losses Today we announce new Dataplex features automatic data quality AutoDQ and data profiling available in public preview AutoDQ offers automated rule recommendations built in reporting and serveless execution to construct high quality data  Data profiling delivers richer insight into the data by identifying its common statistical characteristics Learn more Cloud Workstations now supports Customer Managed Encryption Keys CMEK which provides user encryption control over Cloud Workstation Persistent Disks Read more Google Cloud Deploy now supports Cloud Run targets in General Availability Read more Week of Jan Feb Oden Technologies uses BigQuery to provide real time visibility efficiency recommendations and resiliency in the face of network disruptions in manufacturing systems As part of the Built with BigQuery program this blog post describes the use cases challenges solution and solution architecture in great detail Manage table and column level access permissions using attribute based policies in Dataplex Dataplex attribute store provides a unified place where you can create and organize a Data Class hierarchy to classify your distributed data and assign behaviors such as Table ACLs and Column ACLs to the classified data classes Dataplex will propagate IAM Roles to tables across multiple Google Cloud projects  according to the attribute s assigned to them and a single merged policy tag to columns according to the attribute s attached to them  Read more Lytics is a next generation composableCDP that enables companies to deploy a scalable CDP around their existing data warehouse lakes As part of the Built with BigQuery program for ISVs Lytics leverages Analytics Hub to launch secure data sharing and enrichment solution for media and advertisers This blog post goes over Lytics Conductor on Google Cloud and its architecture in great detail Now available in public preview Dataplex business glossary offers users a cloud native way to maintain and manage business terms and definitions for data governance establishing consistent business language improving trust in data and enabling self serve use of data Learn more here Security Command Center SCC Google Cloud s native security and risk management solution is now available via self service to protect individual projects from cyber attacks It s never been easier to secure your Google Cloud resources with SCC Read our blog to learn more To get started today go to Security Command Center in the Google Cloud console for your projects Global External HTTP S Load Balancer and Cloud CDN now support advanced traffic management using flexible pattern matching in public preview This allows you to use wildcards anywhere in your path matcher You can use this to customize origin routing for different types of traffic request and response behaviors and caching policies In addition you can now use results from your pattern matching to rewrite the path that is sent to the origin Run large pods on GKE Autopilot with the Balanced compute class When you need computing resources on the larger end of the spectrum we re excited that the Balanced compute class which supports Pod resource sizes up to vCPU and GiB is now GA Week of Jan Jan Starting with Anthos version Google supports each Anthos minor version for months after the initial release of the minor version or until the release of the third subsequent minor version whichever is longer We plan to have Anthos minor release three times a year around the months of April August and December in with a monthly patch release for example z in version x y z for supported minor versions For more information read here Anthos Policy Controller enables the enforcement of fully programmable policies for your clusters across the environments We are thrilled to announce the launch of our new built in Policy Controller Dashboard a powerful tool that makes it easy to manage and monitor the policy guardrails applied to your Fleet of clusters New policy bundles are available to help audit your cluster resources against kubernetes standards industry standards or Google recommended best practices  The easiest way to get started with Anthos Policy Controller is to just install Policy controller and try applying a policy bundle to audit your fleet of clusters against a standard such as CIS benchmark Dataproc is an important service in any data lake modernization effort Many customers begin their journey to the cloud by migrating their Hadoop workloads to Dataproc and continue to modernize their solutions by incorporating the full suite of Google Cloud s data offerings Check out this guide that demonstrates how you can optimize Dataproc job stability performance and cost effectiveness Eventarc adds support for new direct events from the following Google services in Preview API Gateway Apigee Registry BeyondCorp Certificate Manager Cloud Data Fusion Cloud Functions Cloud Memorystore for Memcached Database Migration Datastream Eventarc Workflows This brings the total pre integrated events offered in Eventarc to over events from Google services and third party SaaS vendors  mFit release adds support for JBoss and Apache workloads by including fit analysis and framework analytics for these workload types in the assessment report See the release notes for important bug fixes and enhancements Google Cloud Deploy Google Cloud Deploy now supports Skaffold version  Release notesCloud Workstations Labels can now be applied to Cloud Workstations resources  Release notes Cloud Build Cloud Build repositories nd gen lets you easily create and manage repository connections not only through Cloud Console but also through gcloud and the Cloud Build API Release notesWeek of Jan Jan Cloud CDN now supports private origin authentication for Amazon Simple Storage Service Amazon S buckets and compatible object stores in Preview This capability improves security by allowing only trusted connections to access the content on your private origins and preventing users from directly accessing it Week of Jan Jan Revionics partnered with Google Cloud to build a data driven pricing platform for speed scale and automation with BigQuery Looker and more As part of the Built with BigQuery program this blog post describes the use cases problems solved solution architecture and key outcomes of hosting Revionics product Platform Built for Change on Google Cloud Comprehensive guide for designing reliable infrastructure for your workloads in Google Cloud The guide combines industry leading reliability best practices with the knowledge and deep expertise of reliability engineers across Google Understand the platform level reliability capabilities of Google Cloud the building blocks of reliability in Google Cloud and how these building blocks affect the availability of your cloud resources Review guidelines for assessing the reliability requirements of your cloud workloads Compare architectural options for deploying distributed and redundant resources across Google Cloud locations and learn how to manage traffic and load for distributed deployments Read the full blog here GPU Pods on GKE Autopilot are now generally available Customers can now run ML training inference video encoding and all other workloads that need a GPU with the convenience of GKE Autopilot s fully managed Kubernetes environment Kubernetes v is now generally available on GKE GKE customers can now take advantage of the many new features in this exciting release This release continues Google Cloud s goal of making Kubernetes releases available to Google customers within days of the Kubernetes OSS release Event driven transfer for Cloud Storage Customers have told us they need asynchronous scalable service to replicate data between Cloud Storage buckets for a variety of use cases including aggregating data in a single bucket for data processing and analysis keeping buckets across projects regions continents in sync etc Google Cloud now offers Preview support for event driven transfer serverless real time replication capability to move data from AWS S to Cloud Storage and copy data between multiple Cloud Storage buckets Read the full blog here Pub Sub Lite now offers export subscriptions to Pub Sub This new subscription type writes Lite messages directly to Pub Sub no code development or Dataflow jobs needed Great for connecting disparate data pipelines and migration from Lite to Pub Sub See here for documentation 2023-02-09 20:00: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件)