投稿時間:2023-09-02 04:19:42 RSSフィード2023-09-02 04:00 分まとめ(23件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
AWS AWS for SAP Building SAP Business Applications using AWS Services https://aws.amazon.com/blogs/awsforsap/building-sap-business-applications-using-aws-services/ Building SAP Business Applications using AWS ServicesIntroduction To modernize their SAP landscape many AWS customers are leveraging the breadth and depth of AWS services to develop new applications and functionalities in accordance with SAP s “clean core approach This simplifies future upgrades and extensibility thus allowing them to innovate at a rapid pace using AWS services To meet business demands faster and … 2023-09-01 18:30:12
AWS AWS AWS Security Hub integration with AWS Control Tower | Amazon Web Services https://www.youtube.com/watch?v=Ev3giJRpHWw AWS Security Hub integration with AWS Control Tower Amazon Web ServicesAWS Security Hub integrates with AWS Control Tower allowing you to pair AWS Security Hub detective controls with AWS Control Tower proactive or preventive controls and manage them together using AWS Control Tower AWS Security Hub controls are mapped to related control objectives in the AWS Control Tower control library providing you with a holistic view of the controls required to meet a specific control objective This combination of over detective controls from AWS Security Hub with the AWS Control Tower built in automations for multi account environments gives you a strong baseline of governance and off the shelf controls required to scale your business using new AWS workloads and services This combination of controls also helps you monitor whether your multi account AWS environment is secure and managed in accordance with best practices such as the AWS Foundational Security Best Practices standard Learn more about AWS Security Hub 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 AWSSecurityHub CSPM CloudSecurityPostureManagement AWSControlTower DetectiveControls BuiltinAutomations AWSSecurityServicesFeatureDemos AWS AmazonWebServices CloudComputing 2023-09-01 18:31:03
python Pythonタグが付けられた新着投稿 - Qiita openCVのimshowをちょっとだけ使いやすくする https://qiita.com/dengax/items/604f5b343ea01612f155 imshow 2023-09-02 03:48:36
海外TECH Ars Technica Hacker gains admin control of Sourcegraph and gives free access to the masses https://arstechnica.com/?p=1965211 available 2023-09-01 18:17:54
海外TECH MakeUseOf How to Get the Best Out of Your Steam Deck When Docked https://www.makeuseof.com/steam-deck-docked-best-performance-settings/ dockedstruggling 2023-09-01 18:00:26
海外TECH DEV Community Nobody knows how to estimate software projects https://dev.to/0ro/nobody-knows-how-to-estimate-software-projects-2c94 Nobody knows how to estimate software projectsDisclaimer This article is a joke Only me and God know how to estimate software projects And I am not sure about God The Great UnknownLet s imagine you are a Tech Lead and recently you were asked to estimate a software project You were given a list of features and asked to estimate how long it would take to implement each feature and the entire project You were given a couple of days for it A couple of days Really Estimate the entire project It cannot be enough Even for the best of us Even if you have done it before many times But how much time do you need A week A month It always will not be precise anyway So maybe a couple of days is a good option at least you will not waste a lot of time on it And be sure your managers will tell you Don t worry no need to dive deep into details we just need a rough estimate and nothing more you will manage to do it come on buddy And of course they lie They will use your estimation to plan the project to plan the budget to plan the team to plan the deadlines to plan the marketing to plan the sales and to plan the future of the company And they will use it to blame you later when you will not be able to deliver the project on time The Burden of ResponsibilityThe customer needs to know how much it will cost to implement the project It is a good reason right They need to prepare money for their amazing start up or maybe find investors who will pay for it And the amount of money they will ask depends on you So it is a big responsibility including the fact that only you know how you came up with the numbers Usually customers ask for estimates from several companies and then they will choose someone It is not always the cheapest one there are a lot of factors that influence the decision but the price is one of the most important factors And here is the catch On your side if you will give a price that is too high for the customer you will usually lose because the project is not on you If you give a price that is too low you will usually win the battlefield but you will lose this war later when you are working on the project every night On the customer side if you provide them with a budget that is too low they will not be able to implement the project and they will lose If you provide them with a budget that is too high they will lose because they will not be able to find investors The Illusion of TechniqueSo how to estimate the project There are a lot of techniques and maybe you know some of them There are countless methods expert judgment story points bottom up estimate three point estimating you name it They all promise to unveil the magic number But guess what None of them have the Midas touch You might meticulously break down the project into user stories assign story points and create impressive Gantt charts You might consult with your team and reach a consensus You might even throw in some past project data for good measure Yet when the deadline day arrives you re either ahead of schedule with nothing left to do or drowning in an ocean of bugs and scope changes ConclusionIn the wild world of software project estimation one thing is clear it s an art not a science It s a complex dance of uncertainty expectations and a dash of wishful thinking So next time you re asked to estimate a software project remember to take it all with a grain of humor and a pinch of humility After all in the ever evolving realm of software development the only constant is the unpredictability of estimation 2023-09-01 18:31:39
海外TECH DEV Community Announcing Appwrite’s New .NET SDK https://dev.to/appwrite/announcing-appwrites-new-net-sdk-5028 Announcing Appwrite s New NET SDKWith the launch of Appwrite we re excited to share that we now have a NET SDK available to build with Appwrite This is a server side SDK that targets NET Standard supporting a wide range of SDK versions across NET NET Core and NET Framework Steps to InstallCurrently the SDK is distributed through the NuGet Package Manager You can use the Command Line to install the package in your project using the following commands Package ManagerInstall Package Appwrite Version or NET CLIdotnet add package Appwrite version Please make sure to add a reference to the package in your project s csproj file if it isn t present already lt PackageReference Include Appwrite Version gt Getting Started with the SDK Initializing the SDKOnce you have installed the package you can import the package in your code and set your Appwrite credentials to start making API calls using Appwrite var client new Client SetEndpoint SetProject ffad SetKey cddb Consuming Appwrite Services will feature examples Once your SDK is initialized you can start consuming the various APIs offered by Appwrite Here are some examples Create a Userusing Appwrite using Appwrite Services using Appwrite Models var users new Users client var user await users Create userId ID Unique email email example com password password name name Add a Document To Your Database Collectionusing Appwrite using Appwrite Services using Appwrite Models var databases new Databases client var document await databases CreateDocument databaseId DATABASE ID collectionId COLLECTION ID documentId DOCUMENT ID data object Upload a Fileusing Appwrite using Appwrite Services using Appwrite Models var storage new Storage client var file await storage CreateFile bucketId BUCKET ID fileId FILE ID file new File path to files image jpg Trigger a Function Executionusing Appwrite using Appwrite Services using Appwrite Models var functions new Functions client var execution await functions CreateExecution functionId FUNCTION ID Error HandlingThe Appwrite NET SDK throws an AppwriteException object which includes Message Code and Response properties You can handle any errors by catching AppwriteException and presenting the Message to the user or using the error types provided by Appwrite to decide the right type of error and display custom error messages Below is an example using Appwrite using Appwrite Services using Appwrite Models var users new Users client try var user await users Create userId ID Unique email email example com password password name name catch AppwriteException e Console WriteLine e Message How to Contribute and Share FeedbackIn case you discover any bugs issues want to share suggestions or make contributions to the NET SDK please visit Appwrite s SDK Generator repository on GitHub All contributions including those by people with commit access must go through a pull request and be approved by an Appwrite core team member before merging This is to ensure a proper review of all the contributions You can learn more by visiting the repo s Contribution Guide Next StepsWe hope you will try the NET SDK in your upcoming projects and share any thoughts and concerns you have with us Here are some resources you can use to learn more about Appwrite and start building projects  Appwrite DocsGetting Started for Server SDKs Guide Discord Community Appwrite YouTube Channel 2023-09-01 18:14:12
海外TECH Engadget Elon Musk's X will use public data to train AI models https://www.engadget.com/elon-musks-x-will-use-public-data-to-train-ai-models-184924197.html?src=rss Elon Musk x s X will use public data to train AI modelsThe artist formerly known as Twitter has been in some hot water this week after Bloomberg found that the social media site would start collecting biometric details along with job and education data from users Now a newly released privacy policy indicates that X will use this data along with other collected personal information to train AI models as originally spotted by Alex Ivanovs at Stackdiary The privacy policy clearly indicates that the company plans to use information it collects along with any publicly available data to help train machine learning algorithms “We may use the information we collect and publicly available information to help train our machine learning or artificial intelligence models for the purposes outlined in this policy the privacy posting reads Musk has confirmed the change but notes that only publicly available information will be collected and not “DMs or anything private X no longer has a press arm so there s no real way to get ahold of anyone for more concrete information as to what data and information will be scooped up and what exactly it ll be used for nbsp X doesn t have any public AI ambitions but owner Elon Musk does He recently launched a company called wait for it xAI that aims “to understand the true nature of the universe so maybe your biometric data and related information will be used to further that lofty and totally achievable goal Stackdiary points to text on the xAI homepage that says it “will work closely with X to “make progress towards our mission There s another option for where this data is headed Musk recently announced ambitions to compete with Linkedin stating that the employment site was “cringe and that X s version would be “cool So that would explain the collection of job and education histories from its user base Finally there s a third option X isn t exactly raking in the advertising dollars so selling user data would be an easy way to make some coin However there s no evidence to point to that aside from it being a standard practice in the social media world In the past Twitter primarily used collected user data to benefit itself and not third parties This article originally appeared on Engadget at 2023-09-01 18:49:24
海外TECH Engadget Xbox Series S is now available in Carbon Black with 1TB of storage https://www.engadget.com/xbox-series-s-is-now-available-in-carbon-black-with-1tb-of-storage-180602071.html?src=rss Xbox Series S is now available in Carbon Black with TB of storageThere s a new Xbox console available Microsoft just launched a new version of the digital only Xbox Series S in a bold “Carbon Black color with twice the available storage TB compared to the standard GB that ships with other SKUs It costs features the same matte finish as the more expensive Series X and ships with an official Xbox Wireless Controller The new console is available at just about every brick and mortar and digital retailer after originally being teased at the Summer Games Fest back in June The big news here is the extra hard drive space The Series S doesn t accept physical media so the hard drive is your only option Prior versions were locked in at GB and well you know how that goes That s enough for around three or four AAA games For instance the recently released Bethesda RPG Starfield clocks in at GB Assuming an average size of around GB the new Series S should accommodate seven or eight high profile games plus plenty of smaller sized indie titles You ll still have to delete older games to make room for newer ones eventually or get an external drive but you can worry about that later The just released Series S refresh also boasts a relatively eco friendly design with many components made from post consumer recycled PCR resins This follows a trend originally started back in with Series S consoles Modern Xbox naming conventions can get a bit confusing for average consumers so what exactly is the Series S and how does it differ from the Series X Both are next gen consoles but the Series S is the lower powered cousin to the Series X in addition to lacking a dedicated disc drive However the Series X costs and the Series S costs to depending on the available hard drive space Modern games run on both consoles but the Series S is designed for lower resolutions of p or p while the Series X is decidedly a K console This article originally appeared on Engadget at 2023-09-01 18:06:02
海外TECH CodeProject Latest Articles Editor3D: A Windows.Forms Render Control with interactive 3D Editor in C# https://www.codeproject.com/Articles/5293980/Editor3D-A-Windows-Forms-Render-Control-with-inter editor 2023-09-01 18:42:00
海外TECH WIRED The 47 Best Shows on Netflix Right Now https://www.wired.com/story/netflix-best-shows-this-week/ ragnarok 2023-09-01 19:00:00
ニュース BBC News - Home Proud Boy Dominic Pezzola who stormed US Capitol jailed for 10 years https://www.bbc.co.uk/news/world-us-canada-66689547?at_medium=RSS&at_campaign=KARANGA disgrace 2023-09-01 18:22:54
ニュース BBC News - Home England v New Zealand: Watch Harry Brook's impressive batting display https://www.bbc.co.uk/sport/av/cricket/66690532?at_medium=RSS&at_campaign=KARANGA zealand 2023-09-01 18:44:33
ニュース BBC News - Home Essex: 50 schools fitted with crumbling concrete, says council https://www.bbc.co.uk/news/uk-england-essex-66678434?at_medium=RSS&at_campaign=KARANGA buildings 2023-09-01 18:04:20
ニュース BBC News - Home School closures: BBC correspondent explains why this concrete is dangerous https://www.bbc.co.uk/news/uk-england-66689463?at_medium=RSS&at_campaign=KARANGA closures 2023-09-01 18:31:03
ニュース BBC News - Home Scale of risk in Scottish schools not yet known https://www.bbc.co.uk/news/uk-scotland-66682341?at_medium=RSS&at_campaign=KARANGA confirms 2023-09-01 18:22:14
ビジネス ダイヤモンド・オンライン - 新着記事 ゼロからイチを生みだす発想力の身につけ方 - 1分間瞬読ドリル https://diamond.jp/articles/-/328571 2023-09-02 03:56:00
ビジネス ダイヤモンド・オンライン - 新着記事 【制限時間10秒】「87×84=」を暗算できる?【おみやげ算で計算できる理由の解説付き】 - 小学生がたった1日で19×19までかんぺきに暗算できる本 https://diamond.jp/articles/-/328420 計算 2023-09-02 03:53:00
ビジネス ダイヤモンド・オンライン - 新着記事 「インボイスに登録したけど、やっぱりやめたい」手続・期限を徹底解説! - 【インボイス対応版】ひとり社長の経理の基本 https://diamond.jp/articles/-/328579 絶対 2023-09-02 03:50:00
ビジネス ダイヤモンド・オンライン - 新着記事 【経営者必読】年間110万円以上を節税できる「生前贈与の裏ワザ」、2024年の新ルール対応版! - ぶっちゃけ相続【増補改訂版】 https://diamond.jp/articles/-/328548 新ルール 2023-09-02 03:47:00
ビジネス ダイヤモンド・オンライン - 新着記事 世界的経営学者が発見した、成功に直結する思考法「エフェクチュエーション」とは? - エフェクチュエーション https://diamond.jp/articles/-/328541 経営学者 2023-09-02 03:44:00
ビジネス ダイヤモンド・オンライン - 新着記事 【まんが】「いい子症候群」かも…。大人になっても「いい子」がやめられない人が抱える深刻なリスクと、克服のヒント<心理カウンセラーが教える> - あなたはもう、自分のために生きていい https://diamond.jp/articles/-/328540 twitter 2023-09-02 03:41:00
GCP Cloud Blog All 161 things we announced at Google Cloud Next ‘23 – a recap https://cloud.google.com/blog/topics/google-cloud-next/next-2023-wrap-up/ All things we announced at Google Cloud Next a recapThis week we hosted Google Cloud Next in San Francisco It was great to be back together in person with the Google Cloud community and ecosystem Highlights included the opening keynote packed with breakthrough product announcements and customer stories which you can also watch in just minutes  Also check out the fun and inspirational developer keynote complete with an original song and cool demos We hosted educational breakout sessions and thousands of developers were buzzing around our Innovators Hive On top of that we loved having partners integrated throughout Next from the show floor to the sessions to the evening parties throughout the week APPROVED NEXT ALIVECOVERAGE jpgImages from Google Cloud Next NEXT ALIVECOVERAGE jpgImages from Google Cloud Next NEXT ALIVECOVERAGE jpgImages from Google Cloud Next NEXT ALIVECOVERAGE jpgImages from Google Cloud Next Generative AI was a big focus throughout particularly the many new offerings across Vertex AI and Duet AI highlighting all the new ways to cloud The new way to cloudOpening video for Google Cloud Next KeynoteToo much happened this week to share it all here but we ve pulled together a summary of all of the announcements so you can feel like you were there Read on for the complete list of announcements  Data and AI CloudAI platforms and tools  Duet AI in Google Cloud is now in preview with new capabilities and general availability coming later this year Vertex AI Search and Conversation formerly Enterprise Search on Generative AI App Builder and Conversational AI on Generative AI App Builder are both generally available to make it fast and easy to build generative chatbots and custom search engines New multi turn search in Vertex AI Search supports follow up questions without starting the interaction over  In addition we built out the Vertex AI platform We added new models to Vertex AI Model Garden including Meta s Llama and Code Llama and Technology Innovation Institute s Falcon LLM and pre announced Anthropic s Claude   The PaLM foundation model now supports languages and token context windows that make it possible to process long documents in prompts The Codey chat and code generation model offers up to a quality improvement in major supported languages for code generation and code chat   The Imagen image generation model features improved visual appeal image editing captioning a new tuning feature to align images to guidelines with or fewer samples and visual questions and answering as well as digital watermarking functionality powered by Google DeepMind SynthID   Adapter tuning in Vertex AI is generally available for PaLM for text Reinforcement Learning with Human Feedback RLHF is now in public preview   New Vertex AI Extensions let models take actions and retrieve specific information in real time and act on behalf of users across Google and third party applications like Datastax MongoDB and Redis New Vertex AI data connectors help ingest data from enterprise and third party applications like Salesforce Confluence and JIRA  Grounding in Vertex AI roots generative outputs in your enterprise data to increase confidence in your generative AI search and conversational applications   Vertex AI now supports Ray an open source unified compute framework to scale AI and Python workloads   We announced Colab Enterprise a managed service in public preview that combines the ease of use of Google s Colab notebooks with enterprise level security and compliance support capabilities   Next month we ll make Med PaLM our medically tuned version of PaLM available as a preview to more customersin the healthcare and life sciences industry And to enhance MLOps for generative AI we announced Automatic Metrics in Vertex AI lets you evaluate a model based on a defined task and “ground truth dataset Automatic Side by Side in Vertex AI uses a large model to evaluate the output of multiple models being tested helping to augment human evaluation at scale   A new generation of Vertex AI Feature Store now built on BigQuery helps you avoid data duplication and preserve data access policies  Data analyticsWe announced a wealth of features across our data analytics offerings Duet AI is in preview across a variety of products in the data analytics portfolio such as Looker BigQuery and Dataplex    BigQuery Studio in preview is a single interface for data engineering analytics and predictive analysis to simplify end to end data workflows We announced enhanced support for open source formats like Hudi and Delta Lake within BigLake and added performance acceleration for Apache Iceberg    BigLake can now be your single lakehouse with cross cloud materialized views and cross cloud joins in BigQuery Omni Spark integration on Google Distributed Cloud extends the power of fast analytical query processings to on premises to support data residency requirements   New governance capabilities in Dataplex for data lineage quality and metadata management help users understand what data to analyze and train ML models on trusted data sources to help improve accuracy    BigQuery data clean rooms can help you understand your Google and YouTube campaign performance Now you can access Vertex AI foundation models including PaLM directly from BigQuery   New model inference in BigQuery lets you run model inferences across formats like TensorFlow ONNX and XGBoost and new capabilities for real time inference can identify patterns and automatically generate alerts   For model tuning we added vector and semantic search in BigQuery   You can automatically synchronize vector embeddings in BigQuery with Vertex AI Feature Store for model grounding   Now you can access thousands of datasets from hundreds of providers including Acxiom Bloomberg Equifax Nielsen and Zoominfo directly in BigQuery  DatabasesTransactional and operational databases are the lifeblood of the organization    AlloyDB AI is available in preview via downloadable AlloyDB Omni to help you build enterprise gen AI applications everywhere   AlloyDB Omni the downloadable edition that runs on Google Cloud AWS Azure on premises and on your laptop is moving from technology preview to public preview   Duet AI in Database Migration Service provides AI assisted code conversion to automate the last mile conversion of Oracle database code to PostgreSQL Sign up for the preview  Duet AI in Cloud Spanner is in preview to help with generating code to structure modify or query your data using natural language   Support for Oracle in Database Migration Service with Cloud SQL for PostgreSQL as the target is now GA  Cloud Spanner Data Boost now GA lets you to analyze your Spanner data via services such as BigQuery Spark on Dataproc or Dataflow with virtually no impact on your transactional workloads Support for auto generated keys in Cloud Spanner allows schema authors to push down critical identity logic into the database   A new BigQuery Export to Bigtable Reverse ETL feature in preview lets you serve analytical insights from your applications without having to touch any ETL tools   The fully managed Memorystore for Redis Cluster is available in preview This is an easy to use open source compatible Redis Cluster service that provides up to times more throughput than Memorystore for Redis with microseconds latencies The new Google Cloud Ready for Cloud SQL program recognizes partner solutions that have met integration requirements with Cloud SQL The Bigtable change streams feature allows you to capture data changes to a Bigtable table as the changes happen letting you stream them for processing or analysis and is now GA Cloud Bigtable request priorities in private preview let you execute large workloads that are not time sensitive e g analytical queries as low priority jobs on a Bigtable cluster thus minimizing the impact of batch processing on serving workloads   You can now create a copy of a Cloud Bigtable backup and store it in any project or region where you have a Bigtable instance and retain your backups for up to days Business IntelligenceWe extended our Looker business intelligence ecosystem and showed that the future of Looker is powered by AI Duet AI in Looker is now in preview   The Looker semantic layer is now open to Tableau in preview and to Microsoft Power BI in general availability Looker Studio users now have native access to the Alteryx Designer Cloud for data preparation and enhanced cloud connectivity starting with Microsoft Excel and CSV files from storage platforms including Sharepoint and OneDrive An integration with Looker partner Sisu Data will be generally available later this quarter helping customers determine the root cause of changes spot data outliers and identify next steps for analysis Dev CloudGoogle Cloud s Dev Cloud covers all our infrastructure ーcompute network storage regions etc ーas well as platforms and developer tools ComputeWe talked about chips that are optimized for AI workloads  A VMs based on NVIDIA H GPUs and delivered as a GPU supercomputer will be generally available next month The new Google Cloud TPU ve in preview has up to x higher training performance per dollar and up to x inference performance per dollar for LLMs and generative AI models compared to Cloud TPU v   New Multislice technology in preview lets you scale AI models beyond the boundaries of physical TPU pods with tens of thousands of Cloud TPU ve or TPU v chips   Support for Cloud TPUs in GKE is now available for Cloud TPU ve and Cloud TPU v   Support for AI inference on Cloud TPUs is in preview We enhanced our general purpose Compute Engine families with new models and features The Arm based CA powered by AmpereOne processors will be in preview next month   A preview of AMD based CD VMs is coming next month and will offer the largest instance sizes in our general purpose portfolio with up to vCPUs and TB of DDR memory   We unveiled Titanium a system of purpose built custom silicon and multiple tiers of offloads that enables offerings like Hyperdisk and our rd generation C VMs C VMs support for Hyperdisk Extreme is now in preview and supports K IOPS The SSD based Hyperdisk Balanced is now in preview with up to x the performance of previous generation Persistent Disk SSD   Hyperdisk Storage Pools is now in preview allowing customers to provision capacity and performance in aggregate Pools and then thinly provision Hyperdisk volumes from those pools Our VMs have new uptime SLAs a uptime SLA for memory optimized VMs and up from for all other VM families   Future reservations now in preview is a new Compute Engine feature that allows you to reserve compute capacity for a future date   C is now certified for SAP Workload Manager has new capabilities for securing and deploying SAP workloads in preview In preview in October we ll offer a new VMware Engine node with TB RAM and options from vCPUs and up to TB storage for Google Cloud VMware Engine as well as three new storage options NetApp Volumes Filestore and Storage only VSAN nodes  Networking We announced Cross Cloud Network an open and programmable global cloud networking platform    Private Service Connect now supports different Google and partner managed services   The Cloud Firewall Plus tier is in preview a cloud first next generation firewall or NGFW The new Network Service Integration Manager simplifies the setup and operation of partner NGFWs from Checkpoint Cisco Fortinet and Palo Alto Networks    VPC Spokes support in Network Connectivity Center in preview lets you scale VPC connectivity providing reachability between a large number of VPC spokes   The internal Application Load Balancer now supports global access which allows private clients from any Google Cloud region to access internal load balancers residing in any other Google Cloud region and global backends which allow internal Application Load Balancers to health check and send traffic to globally distributed backend services   New Service Extensions callouts for Cloud Load Balancers let you customize services such as specialized monitoring logging traffic steering or authentication A new automation solution toolkit for the Google Cloud Load Balancers global frontend lets you integrate and automate products including Cloud Armor Cloud Load Balancing and Cloud CDN into popular CI CD platforms   Cloud Application Load Balancers now support cross project service referencing   New mTLS client side authentication is available for global external Application Load Balancers Auto deployment for Cloud Armor Adaptive Protection is now generally available Palo Alto Networks is integrating its Prisma Access natively in Google Cloud Broadcom is integrating its Secure Web Gateway natively in Google Cloud   The Titanium Network Adapter part of our Titanium system of offloads and available in A C and H VMs delivers up to twice the throughput and three times the packet processing speed of prior VM generations Hybrid and multi cloudWe added capabilities and features to our Google Distributed Cloud family GDC Edge and GDC Hosted  GDC Hosted now offers pre trained models for speech translation optical character recognition OCR and Workbench   Vertex Prediction and Vertex Pipelines are coming to GDC Hosted in preview in Q as is Document Translation API service    Database Service for GDC Hosted will now support AlloyDB Omni as a new managed database engine in preview    GDC Edge will support Dataproc in preview in Q   The new GDC hardware stack features the th Gen IntelXeonScalable Processors and high performance network fabrics with up to Gbps throughput   We introduced new hardware configurations for GDC Edge that are ruggedized and optimized for retail stores and restaurants GDC Hosted now offers support for new guest operating systems customer managed VM images a package repository for VM runtime configuration simplified networking backup and restore tooling a CLI and streamlined APIs   The new GKE Enterprise will be included in all Google Distributed Cloud deployments at no additional cost ElasticSearch MongoDB Enterprise Advanced and SAP on Google Distributed Cloud are available through Google Cloud Marketplace Boundary proxy on GDC Edge in preview provides visibility and auditability by inspecting and logging all management traffic between Google Cloud and GDC Edge in preview   New Bastion host on GDC Edge in preview enables you to easily view and control Google Cloud s access to GDC Edge for troubleshooting purposes supporting you with operational sovereignty and compliance requirements Now you can automatically create and provide the resource mapping for all your managed keys with key tracking on GDC Hosted in preview   BYO certificate on GDC Hosted enables you to upload certificates issued by a third party certificate authority in preview With new survivability mode on GDC Edge you can continue on prem operations on GDC Edge even if you lose connectivity to Google Cloud now in preview  Platforms  GKE Enterprise a new premium edition of our flagship container orchestration platform lets platform teams can manage large Kubernetes deployments across multiple clusters and multiple teams around the world all from a single management console   GKE now supports Cloud TPU ve A VMs with NVIDIA H GPUs and Google Cloud Storage FUSE on GKE GA   Duet AI in GKE preview provides generative AI assistance specifically trained on GKE documentation to help platform teams cut down on time it takes to learn and operate Kubernetes  Developer experienceWe took our commitment to an exceptional developer experience up a notch  Jump Start Solutions application and infrastructure solutions are now GA  Application Integration ーa no code integration platform as a service iPaaS designed to empower you to weave together your applications ーis now GA   We partnered with GitLab to offer a secure DevOps solution with integrated source management artifact management CI CD and enhanced security features    Duet AI is available console wide including in GKE Cloud Run and Cloud operations suite It will also be available in Apigee API Management and Application Integration in preview for trusted testers here Migration and Management We ve revamped re RaMPed our Rapid Migration Program including the new Cloud Capability Assessment CCA for RaMP online assessment and a detailed new migration planning dashboard  Migration Center a unified migration service within Google Cloud console is now GA and includes the new SAP Cost Estimator  Google Cloud VMware Engine is now available in regions most recently in Turin Italy europe wst Santiago southamerica west and Delhi asia south   The new flexible ve node platform powered by rd Generation IntelXeonScalable Processors formerly named Ice Lake and next generation VMware Engine networking are now available for Google Cloud VMware Engine  Event driven transfer in Storage Transfer Service is now GA   Storage Transfer Service now offers support for transferring data from on premises Hadoop Distributed File Systems HDFS sources to Cloud Storage currently available to trusted testers    SAP Security Validation now available in public preview for Google Cloud Workload Manager provides SAP specific infrastructure and application level security checks   Workload Manager s Guided Deployment Automation service is now available in public preview and generates custom automation code to modernize to S HANA Geo and sustainability The Google Maps Platform team introduced a suite of Environment APIs for solar air quality and pollen Security Cloud Duet AI in Mandiant Threat Intelligence in preview helps surface the most prevalent tactics techniques and procedures TTPs used by threat actors against organizations by summarizing our frontline threat intelligence Duet AI in Chronicle Security Operations in preview aids in threat detection investigation and response for cyber defenders by simplifying search complex data analysis and threat detection engineering   Duet AI in Security Command Center in preview offers near instant analysis of security findings and possible attack paths  Mandiant Hunt for Chronicle now in preview provides continual threat hunting by Mandiant experts on Chronicle data   Agentless vulnerability scanning powered by Tenable has been integrated into Security Command Center to detect operating system software and network vulnerabilities on Compute Engine virtual machines now in preview Security Command Center now allows organizations to design their own customized posture findings GA and threat detectors in preview Confidential Computing running on th Gen Intel Xeon Scalable CPUs with TDX technology is now in private preview We expanded the coverage footprint of our Sensitive Data Protection offerings with enhanced integration for Dataplex and Dialogflow now GA and in preview for Cloud SQL Assured Workloads Japan Regions is now in preview offering customers controlled environments that enforce data residency in our Japanese regions options for local control of encryption keys and administrative access transparency The official Google Cloud Certified Professional Cloud Security Engineer Exam Guide is now available  Collaboration Cloud Google Workspace  Duet AI for Google Workspace is generally available and you can get started with a no cost trial   Duet AI for Google Workspace can create a whole new presentation in Slides complete with text charts and images based on your relevant content in Drive and Gmail    Duet AI in Google Meet helps you look and sound your best with new AI powered enhancements including studio look studio lighting and studio sound as well as dynamic tiles and automatic face detection so remote attendees can see everyone in a meeting room with each in person attendee getting their own video tile with their name Duet AI in Google Meet can capture notes action items and video snippets in real time with the “take notes for me feature and send a recap to attendees after the meeting It can even catch latecomers up with “summary so far or attend a meeting in your place with “attend for me We re enhancing smart reply in Gmail with Duet AI allowing you to draft longer personalized replies with a single tap The enhanced Google Chat experience is available with powerful new features including Duet AI in Google Chat To help you keep up with messaging we re bringing direct messages and spaces together into a unified conversation list with a chronological home view mentions and starred conversations with intelligent prioritization of your messages based on your communication patterns coming early next year Google Chat will soon support up to participants in a single space to help build thriving communities even in the largest organizations Huddles in Chat are a new way for teams to communicate in real time using quick to join audio and video conversations powered by Google Meet With huddles instead of jumping out of the conversation into a meeting the meeting integrates directly and smoothly into the Chat experience   More third party and Google Workspace apps are supported in Chat including an updated Google Drive app that lets you respond to comments and sharing requests as well as new support for Workday Loom Zoho and LumApps Mio will provide support for message interoperability with other major platforms In the lead up to Next we announced new capabilities including those powered by AI to help prevent cyber threats provide safer work with built in zero trust controls and better support for our customers digital sovereignty and compliance needs Customers  We announced the winners of our Google Cloud Customer Awards AdoreMe a direct to consumer brand uses generative AI in Google Workspace to improve customer experiences create production worthy marketing materials and speed up innovation Bayer Pharmaceuticals is working with Google Cloud to use gen AI including testing Med PaLM   Canoo a leading advanced mobility company will deploy a range of Google Cloud s AI data management and security technologies to maximize the value of the data coming from its electric vehicles  CAPCOM is harnessing Google Cloud s infrastructure to support its global player base for AAA game launches like Street Fighter Dun amp Bradstreet is collaborating with Google Cloud on gen AI to drive innovation across multiple applications   The Government of El Salvador announced a multi year deal with Google Cloud to digitally transform the country with Google Distributed Cloud GDC Edge as well as to establish an office presence and Center of Excellence CoE in the country The Estée Lauder Companies Inc ELC and Google Cloud announced an expansion of their strategic partnership to pioneer new uses of gen AI for online consumers Fox Sports will use Google Cloud s gen AI capabilities to quickly search footage from more than million videos and create custom video content in near real time to delight and engage its audiences  GE Appliances GEA is expanding its partnership with Google Cloud to enhance and personalize consumer experiences like recipe creation and appliance maintenance with gen AI  General Motors and Google Cloud will share new details on how the two companies are collaborating to bring conversational AI technology into millions of GM vehicles Ginkgo Bioworks which is building the leading platform for cell programming and biosecurity and Google Cloud announced a five year strategic cloud and AI partnership intended to enable Ginkgo to develop and deploy AI tools for biology and biosecurity   Hackensack Meridian Health will leverage Google Cloud s gen AI technologies to develop and deploy solutions that will help clinical staff to focus more on care improve overall decision making and better personalize the patient experience HCA Healthcare and Google Cloud will improve workflows on time consuming tasks such as clinical documentation so physicians and nurses can focus more on patient care with gen AI   Huma will use Google Cloud s gen AI to enhance its regulated disease management platform Infinitus is using Google Cloud s gen AI to streamline provider payor interactions simplify resource intensive operations and improve response times    Meditech is working with Google Cloud to empower employees and ultimately better serve its healthcare provider customers with gen AI including Med PaLM   MSCI is expanding its partnership with Google Cloud to accelerate the development of gen AI solutions for the financial services industry   Runway has chosen Google Cloud to build accelerate and manage model deployment and bring gen AI to more creatives Six Flags will use Google Cloud s gen AI to create an in park app that helps improve visitor experience and park operations in real time  Startups and Public Sector Eleven more leading generative AI startups have chosen Google Cloud to develop gen AI and bring their products to market The new Google for Startups Startup School AI is a six week in depth online AI training course that will launch in January   A new VC AMA ebook Startup Advice from VCs Lessons from the Trenches for startups contains valuable takeaways from the VC AMA Series and is available for download  Nine startups in the Startup Lounge announced new products based on Google Cloud in the Startup Lounge We announced the winners of the Google Cloud Customer Awards in Government and Education Congratulations to Federal Emergency Management Agency FEMA United States Postal Service USPS United States Air Force Research Lab AFRL State of Hawaii DHS Salk Institute for Biological Studies Hawaii Department of Transportation HDOT New York State Department of Environmental Conservation NY DEC and Minnesota Department of Public Safety MN DPS   Partners We recognized our annual Partners of the Year A new Google Cloud Generative AI Partner Initiative provides partners with AI journey maps and learning assets and separate “Services and “Build tracks for partners working with gen AI  DocuSign is working with Google Cloud to pilot how Vertex AI could be used to help generate smart contract assistants that can summarize explain and answer what s in complex contracts and other documents SAP is working with us to develop new solutions utilizing Google Cloud foundation models via Vertex AI and SAP data beginning with solutions to enhance customers sustainability initiatives and improve safety and manufacturing processes for the automotive industry   Workday s applications for Finance and HR are now live on Google Cloud and they are working with us to develop new gen AI capabilities within the flow of Workday   We forged new or expanded partnerships with data providers such as Acxiom Bloomberg CoreLogic Dun amp Bradstreet Equifax NIQ and TransUnion to provide access to their datasets from BigQuery   Technology and solutions in the new Data and AI Cloud for Supply Chain helps customers build data driven supply chains The new Industry Value Networks IVN initiative combines expertise and offerings from systems integrators SIs independent software vendors ISVs and content partners to create comprehensive differentiated repeatable and high value solutions that accelerate time to value and reduce risk for customers Next Last but not least we re excited to do it all over again but even bigger next year so please save the date Google Cloud Next will take place April in Las Vegas  That was a lot A huge thank you to our Google Cloud team customers and partners who came together to make this all happen Together we re building the new way to cloud 2023-09-01 19: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件)