投稿時間:2023-03-18 04:37:08 RSSフィード2023-03-18 04:00 分まとめ(40件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
AWS AWS Compute Blog Architecting for data residency with AWS Outposts rack and landing zone guardrails https://aws.amazon.com/blogs/compute/architecting-for-data-residency-with-aws-outposts-rack-and-landing-zone-guardrails/ Architecting for data residency with AWS Outposts rack and landing zone guardrailsThis blog post was written by Abeer Naffa Sr Solutions Architect Solutions Builder AWS David Filiatrault Principal Security Consultant AWS and Jared Thompson Hybrid Edge SA Specialist AWS In this post we will explore how organizations can use AWS Control Tower landing zone and AWS Organizations custom guardrails to enable compliance with data residency requirements … 2023-03-17 18:24:42
AWS AWS Machine Learning Blog Intelligently search your organization’s Microsoft Teams data source with the Amazon Kendra connector for Microsoft Teams https://aws.amazon.com/blogs/machine-learning/intelligently-search-your-organizations-microsoft-teams-data-source-with-the-amazon-kendra-connector-for-microsoft-teams/ Intelligently search your organization s Microsoft Teams data source with the Amazon Kendra connector for Microsoft TeamsOrganizations use messaging platforms like Microsoft Teams to bring the right people together to securely communicate with each other and collaborate to get work done Microsoft Teams captures invaluable organizational knowledge in the form of the information that flows through it as users collaborate However making this knowledge easily and securely available to users can … 2023-03-17 18:49:41
海外TECH MakeUseOf 8 Essentials to Keep in Mind When Choosing a Display for Your Raspberry Pi https://www.makeuseof.com/raspberry-pi-display-essential-factors-when-choosing/ Essentials to Keep in Mind When Choosing a Display for Your Raspberry PiChoosing the right display for your Raspberry Pi depends on multiple factors Here are some of the most important ones to consider 2023-03-17 18:31:16
海外TECH MakeUseOf 4 Fixes to Try if Windows Won't Let You Make Administrative Level Changes https://www.makeuseof.com/windows-wont-make-administrative-changes-fixes/ administrator 2023-03-17 18:15:15
海外TECH MakeUseOf How Does Windscribe's Free VPN Compare to Its Premium Service? https://www.makeuseof.com/windscribes-free-vpn-compare-to-premium/ How Does Windscribe x s Free VPN Compare to Its Premium Service No one wants to spend out on a costly VPN service if a free plan is just as good But is Windscribe s paid for VPN far superior to its free version 2023-03-17 18:01:16
海外TECH DEV Community How to Load Unlimited Free Ethers to Metamask Wallet https://dev.to/daltonic/how-to-load-unlimited-free-ethers-to-metamask-wallet-86k How to Load Unlimited Free Ethers to Metamask Wallet IntroductionDo you want to test your Ethereum smart contracts without having to worry about running out of ethers We ll show you how to add as many free Ethers as you like to your Metamask wallet in this guide By using this technique you can have a plentiful supply of ethers available for use in testing and development You only need NodeJs the Chrome extension for Metamask and a few easy steps Don t miss out on valuable insights into the world of Web development By subscribing to my channel you ll have access to a wide range of educational videos that can help take your skills to the next level And if you re interested in connecting with me personally be sure to check out the books courses and services I offer Join me on this exciting journey of Web development and let s unlock its full potential together PrerequisitesTo follow this tutorial and load free ethers into your Metamask you will need the following packages NodeJsMetamaskChrome BrowserYou can watch the video tutorial with the YouTube video below Now let s take a look at the steps and methods you will need to load unlimited free ethers to your Metamask wallet Hardhat MethodBecause of its flexibility extensibility and speed many web developers and web professionals alike have adopted Hardhat as the go to framework for developing applications on the Ethereum network Here are the steps to load Ethers to Metamask using Hardhat STEP Setting Up Project StructureCreate a project named freeTestEthers this could be any JavaScript based project such as NodeJs ReactJs VueJs or even a NextJs project For this example we will do a NodeJs project Next open the project folder on the terminal or simply navigate to that directory and run the following commands cd freeTestEthersnpm init yThe above command will initiate the folder as a nodeJs project See the image below STEP Creating Hardhat ProjectInstall the Hardhat packages that enable you to run a blockchain server on the terminal run the following commands npm install hardhatAfter the installation run the hardhat command below npx hardhatNow follow the promptings as can be seen in the image below to complete the installation STEP Running Hardhat ServerOn completion of the installation again run this command to spin up the Hardhat blockchain server npx hardhat nodeThe above command should spin up a server looking like the one in the image above Please observe the difference between the accounts and their private keys We will later use the private keys to import Ethers to Metamask STEP Accessing MetamaskWith Metamask already installed open your browser and visit the following link which will open up your Metamask extension interface in full It should look like the image below chrome extension nkbihfbeogaeaoehlefnkodbefgpgknn home html STEP Configuring NetworkWe are now to tell Metamask to use the Hardhat server running on step of this section Metamask normally comes with a Localhost network by default which has Hardhat configured so we wouldn t need to set up the network from scratch Head to the networks page of Metamask and ensure that your setup is on the same page as mine Did you notice the network configuration in the image above Network Name Refers to the alias you prefer giving to your blockchain network New RPC URL Points to the HTTP endpoint where the blockchain service can be accessed from it comprises the host and port of the blockchain server Chain Id Specifies a unique identification number for a particular blockchain network for the Hardhat server it is always Currency Symbol Indicates the kind of cryptocurrency used in a particular blockchain network STEP Importing AccountsFrom step copy the first private key for the account zero as can be seen in the following image Now ensure that you select Localhost as your preferred network and click on the “import account button as can be seen in the image below Congratulations you have been able to import a new account using its private key now compare how through the private key account address is the same as the one in the image below You can now repeat this process to import more accounts from your Hardhat server With this one time process implemented anytime you spin up your Hardhat blockchain server your account will be updated with a fresh ETH balance You can now use all these Ethers for your Hardhat development processes Take the first step towards becoming a highly sought after smart contract developer by enrolling in my courses on NFTs Minting and Marketplace Enroll now and let s embark on this exciting journey together Ganache MethodTruffle is one of the most comprehensive suites of tools for smart contract development For a blockchain server they have Ganache With Ganache you don t need to install it on a specific project you just need to set it up globally one time on your Local machine Here are the steps to load Ethers to Metamask using Ganache STEP Installing Ganache ServerTo Install Ganache globally on your machine run the following command on your terminal npm install ganache global orsudo npm install ganache globalAfter the installation you should see a result similar to the image below STEP Running Ganache ServerOn completion of the installation run the command below to spin up the Ganache blockchain server ganache dA server that resembles the one in the image above should be created using the aforementioned command Please pay attention to how the accounts and their private keys differ The private keys will eventually be used to import Ethers into Metamask just as we did with Hardhat STEP Configuring NetworkOnce more we must instruct Metamask to connect to the Ganache server that is active in this section s step This time a brand new network will be added from scratch Verify that your configuration is on the same page as mine on Metamask s networks page Now it should be known that the only difference between Hardhat and Ganache servers is their chain Id While Hardhat has a chain id Ganache has Ensure that you click the save button to add it to your network list STEP Importing AccountsFrom step copy the first private key for the account zero as can be seen in the following image Now ensure that you select Localhost as your preferred network and click on the “import account button as can be seen in the image below Congratulations you have been able to import a new account using its private key now compare how through the private key account address is the same as the one in the image below You can import accounts into your Metamask wallet in this manner Doing this procedure now will allow you to import more Ganache server accounts After completing this one time procedure every time you power up a Hardhat blockchain server your account will be updated with a new balance of ETH All of these Ethers are now available for usage in your Hardhat development procedures Don t miss out on the opportunity to become a sought after smart contract developer Get your hands on a copy of my book Capturing Smart Contract Development and gain the skills and knowledge you need to excel in this exciting field And while you re at it be sure to subscribe to my channel to stay up to date with the latest web development videos ConclusionIn conclusion this guide offers two methods the Hardhat and Ganache methods to add unlimited free Ethers to a Metamask wallet for testing and development purposes Both methods require the installation of NodeJs the Chrome extension for Metamask and the use of either the Hardhat or Ganache framework By following the steps outlined in the guide users can easily load Ethers onto their Metamask wallet and have a plentiful supply available for testing and developing Ethereum smart contracts That s it for this tutorial thanks for tuning in and see you at the next tutorial About the AuthorGospel Darlington is a full stack blockchain developer with years of experience in the software development industry By combining Software Development writing and teaching he demonstrates how to build decentralized applications on EVM compatible blockchain networks For more information about him kindly visit and follow his page on Twitter Github LinkedIn or his website 2023-03-17 18:52:30
海外TECH Engadget This insertable 3D printer will repair tissue damage from the inside https://www.engadget.com/this-insertable-3d-printer-will-repair-tissue-damage-from-the-inside-185147733.html?src=rss This insertable D printer will repair tissue damage from the insideResearchers at the University of New South Wales Sydney have developed a flexible D bioprinter that can layer organic material directly onto organs or tissue Unlike other bioprinting approaches this system would only be minimally invasive perhaps helping to avoid major surgeries or the removal of organs It sounds like the future ーat least in theory ーbut the research team warns it s still five to seven years away from human testing The printer dubbed FDB has a soft robotic arm that can assemble biomaterials with living cells onto damaged internal organs or tissues Its snake like flexible body would enter the body through the mouth or anus with a pilot surgeon guiding it toward the injured area using hand gestures In addition it has jets that can spray water onto the target area and its printing nozzle can double as an electric scalpel The team hopes its multifunctional approach could someday be an all in one tool incising cleaning and printing for minimally invasive operations The FDB s robotic arm uses three soft fabric bellow actuators using a hydraulic system composed of “DC motor driven syringes that pump water to the actuators as summarized by IEEE Spectrum Its arm and flexible printing head can each move in three degrees of freedom DOFs similar to desktop D printers In addition it includes a flexible miniature camera to let the operator view the task in real time The research team ran its first lab tests on the device using non biomaterials chocolate and liquid silicone They later tested it on a pig s kidney before finally moving onto biomaterials printed onto a glass surface in an artificial colon “We saw the cells grow every day and increase by four times on day seven the last day of the experiment said Thanh Nho Do co leader of the team and Senior Lecturer at UNSW s Graduate School of Biomedical Engineering “The results show the FDB has strong potential to be developed into an all in one endoscopic tool for endoscopic submucosal dissection procedures The team believes the device is brimming with potential but further testing will be necessary to bring it into the real world The next steps would include studying its use on animals and eventually humans Do believes that s about five to seven years away But according to Ibrahim Ozbolat professor of engineering science and mechanics at Pennsylvania State University “commercialization can only be a matter of time This article originally appeared on Engadget at 2023-03-17 18:51:47
海外科学 NYT > Science New Data Links Pandemic’s Origins to Raccoon Dogs at Wuhan Market https://www.nytimes.com/2023/03/16/science/covid-wuhan-market-raccoon-dogs-lab-leak.html New Data Links Pandemic s Origins to Raccoon Dogs at Wuhan MarketGenetic samples from the market were recently uploaded to an international database and then removed after scientists asked China about them 2023-03-17 18:25:03
海外科学 NYT > Science Facing Extinction, but Available for Selfies in Japan’s Animal Cafes https://www.nytimes.com/2023/03/17/science/animal-cafes-japan-endangered.html Facing Extinction but Available for Selfies in Japan s Animal CafesCritically endangered species and ones banned from international trade are among the hundreds of types birds reptiles and mammals that researchers identified at animal cafes 2023-03-17 18:08:58
ニュース BBC News - Home Credit Suisse shares hit as investor fears reignite https://www.bbc.co.uk/news/business-64986520?at_medium=RSS&at_campaign=KARANGA america 2023-03-17 18:28:32
ニュース BBC News - Home Kyle Walker indecent exposure allegation dealt with, police say https://www.bbc.co.uk/news/uk-england-manchester-64993973?at_medium=RSS&at_campaign=KARANGA allegations 2023-03-17 18:21:00
ニュース BBC News - Home St Patrick's Day: Varadkar meets Biden at White House https://www.bbc.co.uk/news/uk-northern-ireland-64986566?at_medium=RSS&at_campaign=KARANGA president 2023-03-17 18:38:50
ニュース BBC News - Home Jurassic Park actor Sam Neill reveals 'ferocious' cancer diagnosis https://www.bbc.co.uk/news/entertainment-arts-64969344?at_medium=RSS&at_campaign=KARANGA memoir 2023-03-17 18:15:14
ニュース BBC News - Home Formula 1: Lewis Hamilton could leave in 'a couple of years' - Wolff https://www.bbc.co.uk/sport/formula1/64992935?at_medium=RSS&at_campaign=KARANGA Formula Lewis Hamilton could leave in x a couple of years x WolffLewis Hamilton will have to consider leaving Mercedes if they cannot deliver a competitive car in the next couple of years his team boss says 2023-03-17 18:27:57
ビジネス ダイヤモンド・オンライン - 新着記事 「不幸な老後」になる人に共通する“間違ったお金の使い方”とは? - DIE WITH ZERO https://diamond.jp/articles/-/319417 diewithzero 2023-03-18 03:53:00
ビジネス ダイヤモンド・オンライン - 新着記事 【お金を増やす】 投資信託に代わって“今後伸びそうな資産運用術” - 個人投資家もマネできる 世界の富裕層がお金を増やしている方法 https://diamond.jp/articles/-/315822 米国の富裕層の間では、米国以外の海外資産を組み入れるグローバル投資の動きが、以前にも増して加速しているという。 2023-03-18 03:51:00
ビジネス ダイヤモンド・オンライン - 新着記事 土を好んで食べる少女。彼女が地面の下に見つけた「新しい世界」へのトビラとは? - マザーツリー https://diamond.jp/articles/-/319574 土を好んで食べる少女。 2023-03-18 03:49:00
ビジネス ダイヤモンド・オンライン - 新着記事 【精神科医が教える】 運を味方にする人、敵にする人の“決定的な差” - 精神科医Tomyが教える 心の執着の手放し方 https://diamond.jp/articles/-/317642 【精神科医が教える】運を味方にする人、敵にする人の“決定的な差精神科医Tomyが教える心の執着の手放し方【大好評シリーズ万部突破】誰しも悩みや不安は尽きない。 2023-03-18 03:47:00
ビジネス ダイヤモンド・オンライン - 新着記事 プレゼントをもらったとき、二流は「うれしいです」と言う。では一流は? - おもろい話し方 https://diamond.jp/articles/-/319540 話し方 2023-03-18 03:45:00
ビジネス ダイヤモンド・オンライン - 新着記事 100%目標達成「できる人」と「できない人」の決定的なシンプルな違い - 時間最短化、成果最大化の法則 https://diamond.jp/articles/-/318096 目標達成「できる人」と「できない人」の決定的なシンプルな違い時間最短化、成果最大化の法則シリーズ万部突破【がっちりマンデー】で「ニトリ」似鳥会長「食べチョク」秋元代表が「年に読んだオススメ本選」に選抜【日経新聞掲載】有隣堂横浜駅西口店「週間総合」ベスト入り。 2023-03-18 03:43:00
ビジネス ダイヤモンド・オンライン - 新着記事 SF沼にハマった人気書評家がすすめる本「出生率が低下した国で起こる最悪のこと」とは? - 「これから何が起こるのか」を知るための教養 SF超入門 https://diamond.jp/articles/-/319577 SF沼にハマった人気書評家がすすめる本「出生率が低下した国で起こる最悪のこと」とは「これから何が起こるのか」を知るための教養SF超入門新型コロナウィルスの流行、ウクライナへの軍事侵攻、ChatGPTなどの新しいAI、干ばつや地震などの自然災害……日々伝えられる暗く、目まぐるしいニュースに「これから年後、自分の人生はどううなるのか」と漠然とした不安を覚える人は多いはず。 2023-03-18 03:41:00
ビジネス ダイヤモンド・オンライン - 新着記事 頭のいい人が断る時「冷たい」と思われても絶対言わないこと - 超完璧な伝え方 https://diamond.jp/articles/-/319671 頭のいい人が断る時「冷たい」と思われても絶対言わないこと超完璧な伝え方「自分の考えていることが、うまく人に伝えられない」「他人とのコミュニケーションに苦手意識がある」と悩む方は多くいます。 2023-03-18 03:39:00
ビジネス ダイヤモンド・オンライン - 新着記事 「朝ご飯抜き」によって体に起こる、健康への悪影響とは? - 糖質制限はやらなくていい https://diamond.jp/articles/-/318913 「朝ご飯抜き」によって体に起こる、健康への悪影響とは糖質制限はやらなくていい「日食では、どうしても糖質オーバーになる」「やせるためには糖質制限が必要」…。 2023-03-18 03:37:00
ビジネス ダイヤモンド・オンライン - 新着記事 【人気YouTuberが教える】 日本人が初対面で英会話をするときの「鉄板フレーズ」(1) - バカでも英語がペラペラ! 超★勉強法 https://diamond.jp/articles/-/318274 【人気YouTuberが教える】日本人が初対面で英会話をするときの「鉄板フレーズ」バカでも英語がペラペラ超勉強法【大反響発売前発売即大増刷】新潟の片田舎で生まれ育ち、勉強はからっきし苦手。 2023-03-18 03:35:00
ビジネス ダイヤモンド・オンライン - 新着記事 【まんが】「嫌いな人」に無関心になる一番正しい対処法<予約の取れないカウンセラーが教える> - あなたはもう、自分のために生きていい https://diamond.jp/articles/-/319354 twitter 2023-03-18 03:33:00
ビジネス ダイヤモンド・オンライン - 新着記事 メールたった1通で「仕事ができる人かどうか」がバレる。その差とは? - 気づかいの壁 https://diamond.jp/articles/-/318472 その差とは何か「気がつくだけの人」で終わらず、「気がきく人」に変われる、とっておきのコツをご紹介する著書『気づかいの壁』。 2023-03-18 03:31:00
ビジネス ダイヤモンド・オンライン - 新着記事 口数は少ないのにコミュ力が高い人は「なにを振られても」対応できる。その秘訣とは? - 1秒で答えをつくる力 お笑い芸人が学ぶ「切り返し」のプロになる48の技術 https://diamond.jp/articles/-/319561 2023-03-18 03:29:00
ビジネス ダイヤモンド・オンライン - 新着記事 国際刑事裁判所、プーチン氏に逮捕状 子どもの強制移送巡り - WSJ発 https://diamond.jp/articles/-/319762 国際刑事裁判所 2023-03-18 03:28:00
ビジネス ダイヤモンド・オンライン - 新着記事 【精神科医が語る】「老い」を乗り越えるために必要なたった1つのこととは? - こころの葛藤はすべて私の味方だ。 https://diamond.jp/articles/-/319406 精神科医 2023-03-18 03:27:00
ビジネス ダイヤモンド・オンライン - 新着記事 「たばこやお酒をやめられない」と悩む人を救う「大切な考え方」 - 健康になる技術 大全 https://diamond.jp/articles/-/319724 本連載の「健康になる技術」とは、健康でいるために必要なことを実践するスキルです。 2023-03-18 03:25:00
ビジネス ダイヤモンド・オンライン - 新着記事 自分らしく生きるために、僕が手放したこと - 等身大の僕で生きるしかないので https://diamond.jp/articles/-/319737 自分らしく生きるために、僕が手放したこと等身大の僕で生きるしかないので「見た目は変で、しゃべりも下手、お笑い芸人としての才能もない」と思いこみ、コンプレックスのかたまりだったスリムクラブ・内間政成さんは、そんな自分を人に知られないように、自分の本心を隠し、見栄を張って、いつわりの人生を送ってきました。 2023-03-18 03:23:00
ビジネス ダイヤモンド・オンライン - 新着記事 努力に「精神論」を持ち込む人が意外とあっさり“挫折”するワケ - 良書発見 https://diamond.jp/articles/-/318306 努力に「精神論」を持ち込む人が意外とあっさり“挫折するワケ良書発見新しく何かを「習慣」にするのは、とても難しい。 2023-03-18 03:21:00
ビジネス ダイヤモンド・オンライン - 新着記事 【マンガ】『世界一受けたい授業』で話題! 体が硬い人は絶対やってみて!! トップトレーナーのストレッチ生活 - いつでも、どこでも、1回20秒で硬い体が超ラクになる! スキマ★ストレッチ https://diamond.jp/articles/-/317690 【マンガ】『世界一受けたい授業』で話題体が硬い人は絶対やってみてトップトレーナーのストレッチ生活いつでも、どこでも、回秒で硬い体が超ラクになるスキマストレッチ【大好評Amazon楽天ベストセラー第位】長引くコロナ禍で、体を動かす機会がメッキリ減ってしまった人は多いはず。 2023-03-18 03:19:00
ビジネス ダイヤモンド・オンライン - 新着記事 「いつも同じ人と同じ話ばかり」している人が「頭を衰えさせない」方法 - ぜんぶ、すてれば https://diamond.jp/articles/-/319290 2023-03-18 03:17:00
ビジネス ダイヤモンド・オンライン - 新着記事 【中学受験のカリスマが教える】分かりやすいノートの3つの特徴 - 中学受験必勝ノート術 https://diamond.jp/articles/-/318898 【中学受験のカリスマが教える】分かりやすいノートのつの特徴中学受験必勝ノート術大手塾では月から新年度が始まりましたね。 2023-03-18 03:15:00
ビジネス ダイヤモンド・オンライン - 新着記事 40代のいま、今やっておかないと後悔すべきこと - 40代からは「稼ぎ口」を2つにしなさい https://diamond.jp/articles/-/319732 新刊『代からは「稼ぎ口」をつにしなさい年収アップと自由が手に入る働き方』では、余すことなく珠玉のメソッドを公開しています。 2023-03-18 03:13:00
ビジネス ダイヤモンド・オンライン - 新着記事 「失敗」をしても「評価を上げる人」は、どこが“普通の人”と決定的に違うのか? - ディープ・スキル https://diamond.jp/articles/-/319391 「失敗」をしても「評価を上げる人」は、どこが“普通の人と決定的に違うのかディープ・スキルいま話題の「ディープ・スキル」とは何かビジネスパーソンは、人と組織を動かすことができなければ、仕事を成し遂げることができません。 2023-03-18 03:11:00
ビジネス ダイヤモンド・オンライン - 新着記事 【株式投資必修講座 ステップ 3】成長株を見つけるためにチェックしたい、3つの要素とは? - 株の投資大全 https://diamond.jp/articles/-/318942 そんな方に参考になる書籍『株の投資大全ー成長株をどう見極め、いつ買ったらいいのか』小泉秀希著、ひふみ株式戦略部監修が月日に発刊された。 2023-03-18 03:09:00
ビジネス ダイヤモンド・オンライン - 新着記事 独学したい人にとって「ウィキペディア」が最高のツールである理由 - 独学大全 https://diamond.jp/articles/-/319437 理由 2023-03-18 03:07:00
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 March A new era for AI and Google Workspace  Google Workspace is using AI to become even more helpful starting with new capabilities in Docs and Gmail to write and refine content Learn more Building the most open and innovative AI ecosystem  In addition to the news this week on AI products Google Cloud has also announced new partnerships programs and resources This includes bringing bringing the best of Google s infrastructure AI products and foundation models to partners at every layer of the AI stack chipmakers companies building foundation models and AI platforms technology partners enabling companies to develop and deploy machine learning ML models app builders solving customer use cases with generative AI and global services and consulting firms that help enterprise customers implement all of this technology at scale Learn more From Microbrows to Microservices  Ulta Beauty is building their digital store of the future but to maintain control over their new modernized application they turned to Anthos and GKE Google Cloud s managed container services to provide an eCommerce experience as beautiful as their guests Read our blog to see how a newly minted Cloud Architect learnt Kubernetes and Google Cloud to provide the best possible architecture for his developers Learn more Now generally available understand and trust your data with Dataplex data lineage a fully managed Dataplex capability that helps you understand how data is sourced and transformed within the organization Dataplex data lineage automatically tracks data movement across BigQuery BigLake Cloud Data Fusion Preview and Cloud Composer Preview eliminating operational hassles around manual curation of lineage metadata Learn more here Rapidly expand the reach of Spanner databases with read only replicas and zero downtime moves Configurable read only replicas let you add read only replicas to any Spanner instance to deliver low latency reads to clients in any geography Alongside Spanner s zero downtime instance move service you have the freedom to move your production Spanner instances from any configuration to another on the fly with zero downtime whether it s regional multi regional or a custom configuration with configurable read only replicas Learn more here Week of March Automatically blocking project SSH keys in Dataflow is now GA This service option allows Dataflow users to prevent their Dataflow worker VMs from accepting SSH keys that are stored in project metadata and results in improved security Getting started is easy enable the block project ssh keys service option while submitting your Dataflow job Celebrate International Women s Day Learn about the leaders driving impact at Google Cloud and creating pathways for other women in their industries Read more Google Cloud Deploy now supports Parallel Deployment to GKE and Cloud Run workloads This feature is in Preview  Read more Sumitovant doubles medical research output in one year using LookerSumitovant is a leading biopharma research company that has doubled their research output in one year alone By leveraging modern cloud data technologies Sumitovant supports their globally distributed workforce of scientists to develop next generation therapies using Google Cloud s Looker for trusted self service data research To learn more about Looker check out Week of Feb Mar Add geospatial intelligence to your Retail use cases by leveraging the CARTO platform on top of your data in BigQueryLocation data will add a new dimension to your Retail use cases like site selection geomarketing and logistics and supply chain optimization Read more about the solution and various customer implementations in the CARTO for Retail Reference Guide and see a demonstration in this blog Google Cloud Deploy support for deployment verification is now GA  Read more or Try the DemoWeek of Feb Feb Logs for Network Load Balancing and logs for Internal TCP UDP Load Balancingare now GA Logs are aggregated per connection and exported in near real time providing useful information such as tuples of the connection received bytes and sent bytes for troubleshooting and monitoring the pass through Google Cloud Load Balancers Further customers can include additional optional fields such as annotations for client side and server side GCE and GKE resources to obtain richer telemetry The newly published Anthos hybrid cloud architecture reference design guideprovides opinionated guidance to deploy Anthos in a hybrid environment to address some common challenges that you might encounter Check out the architecture reference design guidehere to accelerate your journey to hybrid cloud and containerization Week of Feb Feb Deploy PyTorch models on Vertex AI in a few clicks with prebuilt PyTorch serving containers which means less code no need to write Dockerfiles and faster time to production Confidential GKE Nodes on Compute Optimized CD VMs are now GA  Confidential GKE Nodes help to increase the security of your GKE clusters by leveraging hardware to ensure your data is encrypted in memory helping to defend against accidental data leakage malicious administrators and “curious neighbors  Getting started is easy as your existing GKE workloads can run confidentially with no code changes required Announcing Google s Data Cloud amp AI Summit March th Can your data work smarter How can you use AI to unlock new opportunities Register for Google Data Cloud amp AI Summit a digital event for data and IT leaders data professionals developers and more to explore the latest breakthroughs  Join us on Wednesday March to gain expert insights new solutions and strategies to reveal opportunities hiding in your company s data Find out how organizations are using Google Cloud data and AI solutions to transform customer experiences boost revenue and reduce costs  Register today for this no cost digital event Running SAP workloads on Google Cloud Upgrade to our newly released Agent for SAP to gain increased visibility into your infrastructure and application performance The new agent consolidates several of our existing agents for SAP workloads which means less time spent on installation and updates and more time for making data driven decisions In addition there is new optional functionality that powers exciting products like Workload Manager a way to automatically scan your SAP workloads against best practices Learn how to install or upgrade the agent here Leverege uses BigQuery as a key component of its data and analytics pipeline to deliver innovative IoT solutions at scale As part of the Built with BigQuery program this blog post goes into detail about Leverege IoT Stack that runs on Google Cloud to power business critical enterprise IoT solutions at scale  Download white paper Three Actions Enterprise IT Leaders Can Take to Improve Software Supply Chain Security to learn how and why high profile software supply chain attacks like SolarWinds and Logj happened the key lessons learned from these attacks as well as actions you can take today to prevent similar attacks from happening to your organization 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 Learn how to use NetApp Cloud Volumes Service as datastores for Google Cloud VMware Engine for expanding storage capacity Read moreWeek 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-03-17 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件)