投稿時間:2022-08-18 21:36:56 RSSフィード2022-08-18 21:00 分まとめ(34件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
js JavaScriptタグが付けられた新着投稿 - Qiita JavaScriptのPromiseについて part3 https://qiita.com/hu-yu/items/6dcc403a97833a8b7492 avascriptinfoasyncawaitas 2022-08-18 20:24:21
Docker dockerタグが付けられた新着投稿 - Qiita Super! Build a simple Nuxt.js environment. https://qiita.com/masakazu_hirano/items/b87f0b6894e382d8a031 development 2022-08-18 20:53:42
Docker dockerタグが付けられた新着投稿 - Qiita 超!シンプルな Nuxt.js の環境を構築する。 https://qiita.com/masakazu_hirano/items/871e6a7b3f97c1b9e57f dockernodejsdocke 2022-08-18 20:53:02
Docker dockerタグが付けられた新着投稿 - Qiita 図でわかるcurl [URL] | bashの意味 https://qiita.com/taniiicom/items/f15f9645dce138f55b6c cfhttpsblog 2022-08-18 20:14:07
技術ブログ Developers.IO การวิเคราะห์ Log ของ ELB ด้วย SQL ใน Amazon Athena https://dev.classmethod.jp/articles/elb-log-analysis-with-sql-in-amazon-athena/ การวิเคราะห์Log ของELB ด้วยSQL ในAmazon AthenaPop จากบริษัทClassmethod Thailand ครับครั้งนี้ผมจะมาแนะนำวิธีการวิเคราะห์Log ของELB ด้วยSQL ในAmazon 2022-08-18 11:27:24
技術ブログ Developers.IO การตั้งค่าสำหรับจำกัดการเข้าถึง SSH ใน Elastic Beanstalk https://dev.classmethod.jp/articles/restrict-ssh-access-in-elastic-beanstalk/ การตั้งค่าสำหรับจำกัดการเข้าถึงSSH ในElastic BeanstalkPOP จากบริษัทClassmethod Thailand ครับครั้งนี้ผมจะมาแนะนำวิธีการตั้งค่าสำหรับจำกัดการเข้าถึงSSH ในElast 2022-08-18 11:11:36
技術ブログ Developers.IO Terraform ベストプラクティスを整理してみました。 https://dev.classmethod.jp/articles/terraform-bset-practice-jp/ bestpractices 2022-08-18 11:05:33
海外TECH MakeUseOf Get a Razer Viper Ultimate With Your New Gaming Chair https://www.makeuseof.com/razer-enki-iskur-viper-deal/ iskur 2022-08-18 11:35:14
海外TECH MakeUseOf You Need to Update Your iPhone or Mac Right Now. Here’s Why... https://www.makeuseof.com/update-your-iphone-or-mac-right/ right 2022-08-18 11:20:14
海外TECH DEV Community Introduction to Event-Driven Architecture https://dev.to/elva_group/introduction-to-event-driven-architecture-6ki Introduction to Event Driven ArchitectureMany organizations are choosing to build more event driven application architectures This enables a subscriber or target services to automatically perform work in response to events triggered by publishers or source services This event driven pattern allows teams to operate more independently releasing new features faster and making their applications more scalable In this blog post I will write about how an event driven architecture compares to an API driven architecture and also what benefits as well as downsides you can expect from an event driven architecture API driven and Event driven architecture comparisonMost people working within technology know or have heard of API driven architecture to get a better understanding of how an Event driven architecture works and what distinguishes the two I will compare the two and highlight their different characteristics To clarify what an event driven application is you can think of it as a system that reacts to events from other things such as within your application With this approach you will focus on how your system interacts with its surroundings as transmission of events In essence your application receives events that act as inputs and create events that act like outputs The below table briefly compares how the different architectures differ API drivenEvent drivenSynchronousAsynchronousRequest ResponseSubscribe to event notificationDirected to a targetHappened in the past“Do this “This has been done Many applications work together through an API driven request response architecture so when you call your API the API responds with the desired output This is a synchronous architecture When you call your API you wait for the response and you cannot move forward until that response comes back If you would mimic this API driven request response pattern to a scenario in real life it could be something similar to the below In an asynchronous event driven architecture the service surfaces the event and then moves forward The trade off you have to deal with here is that there is no direct response to pass back from the target service besides confirming that the service received the event This is however not a problem if you do not need that direct coupling between the request and response meaning that you necessarily do not need to know more than that the event is received Similar to the above if you would mimic an event driven communication pattern to a scenario in real life it could be something similar to this Event driven architecture and API driven architecture also differ in how they store a given state In most cases for an API driven architecture you only have one component that stores a piece of data and then other components ask for that data when needed When comparing this to event driven architecture every component stores all the data it needs and listens to update events for that data In API driven architecture the component that would store the data is also responsible for updating it In an event driven architecture all the component has to do is to make sure that new events are raised on the updates This makes event driven architecture much more loosely coupled What is an event So to build event driven architectures you will need events of course So what is an event An event is something that already has happened It could be that a VPC has been created or an object being put in an S bucket or a payment successfully processed When an event has happened you cannot change it just as events that can happen in real life For example if there is an event raised when a payment is completed there can be another event when you get a refund Events can be triggered by anything databases compute services object storage etc Events in AWS are JSON objects that tell you what happened at a point in time in your application or infrastructure In an event driven application each component raises an event when anything changes and then other components can listen to this event and choose what to do with it Below is an example of what an event can look like version id f f er d tvfc detail type OrderCreated source awesomeapp orders account time T Z region eu west detail metadata data total amount quantity customer id e d cf d grfd orderId f a cc c fefd userId edfa r e e fbeea In this OrderCreated Event we have some information our downstream services could subscribe to For example if you would have a packaging system you would probably be interested to know any of the provided properties in the data section You can also choose to filter out parts of information in this event that might be interesting for other services that you develop Benefits of an event driven architectureDecoupling and failing independentlyEvents are received by the event router to which your different services are subscribed they are only aware of the event router and can operate independently If one of your services fails the rest will keep running AgilityThis somewhat goes hand in hand with decoupling but as the event router receives the events and targets its subscribers you can easily add a new subscriber without any of the existing subscribers being aware of it This makes it easier to add new services move them around and develop without impacting other services ResponsivenessSince your services will start working on their task as soon as possible and not wait for other services in your landscape event driven architecture can receive great response times Easier to auditAs your event router will be the central location in which you receive your events which later can be routed somewhere else it s also easier to audit your application and define policies of what s allowed Understanding business needsWhen building applications many organizations usually work together with other teams to gather requirements for what the application or feature is supposed to do Developers then translate those requirements into code This sounds easy but this is where things sometimes fail the understanding of what s expected from the business stakeholders is not how developers understand it When working with events it is much easier for everyone in an organization to understand the logic You define the events in an application and that becomes your product requirements when this happens the application should do this When that event occurs anyone interested in that event can take action Organizations can easily describe their business problems and represent them in the form of events Drawbacks of an event driven architectureDifficulty in understanding what s going onWhen designing loose dependencies between different services that use an event driven architecture you will need to observe the events and how the system behaves investigating various flows that have been triggered as a result of events consumption and their processing This can make it difficult to understand what s going on in the system by just reading the code Eventual consistencyBecause your application now relies on eventual consistency meaning that if no new updates are made to a given data item eventually all accesses to that item will return the last updated value Due to this it does not commonly support ACID atomicity consistency isolation durability transactions When dealing with duplications or out of sequence events your code is also prone to get more complicated No direct response of valuesAn event driven application is asynchronous which means that the consumer services do not wait for a response from other services before moving on with other work This is a scalability and flexibility benefit of event driven architectures but can also be a downside When developing a synchronous type of architecture for your application it is usually simpler to pass return values or results of a workflow to the consumer compared to the asynchronous type of architecture Debugging your servicesDebugging event driven applications or any microservices for that matter often requires a different approach than you d take with a monolith When your different services are passing events around it gets a lot harder to reproduce the same state of your services when an error occurs Your log files metrics and traces will most likely be located in different places which makes it difficult to debug across services Proper tooling and correctly stamping out transaction IDs are key in troubleshooting your application ConclusionIn this post we have touched upon how an event driven architecture works and how it compares to an API driven architecture We have also explained its benefits and how event driven scenarios happen in real life to better understand its capabilities We have also outlined the benefits and the drawbacks of building event driven applications So is event driven architecture the silver bullet way of building applications that you always wished for No but it is the best you can get for the right use cases It can be a powerful way of building your microservices as it helps to address some of the inherent challenges in building complex systems But as with a lot of other things this way of building does also have downsides and complications that might not just work for your architecture as we ve mentioned in this post You have to decide whether you can live with the drawbacks to using the advantages based on your project s needs and requirements Elva is a serverless first consulting company that can help you transform or begin your AWS journey for the future 2022-08-18 11:27:03
海外TECH DEV Community Appwrite OSS Fund Sponsors Lazygit https://dev.to/appwrite/appwrite-oss-fund-sponsors-lazygit-2no9 Appwrite OSS Fund Sponsors LazygitHi readers welcoming you back to the Appwrite OSS Fund series where we celebrate open source maintainers What Is OSS Fund On the th of May the Appwrite team launched the OSS Fund an initiative to support open source project maintainers Being an open source company we wanted to give back to the community and help as many people as we can The OSS Fund is an initiative that is very close to our heart Hear what our Founder and CEO has to say The Appwrite Story Announcing the Appwrite OSS Fund Appwrite Appwrite provides web and mobile developers with a set of easy to use and integrate REST APIs to manage their core backend needs appwrite io Announcing The Fourth ProjectAfter careful considerations from the committee we are thrilled to announce the fourth project Appwrite appwrite Announcing the fourth sponsored project of the Appwrite OSS Fund Lazygit OSS Fund is an initiative by Appwrite to support maintainers like DuffieldJesse Applications are still open get funded or spread the word appwrite io oss fund PM Aug What Is Lazygit Lazygit is a terminal UI for git which is a tool that nearly all developers find themselves using these days Lazygit is a fast user friendly alternative to standalone git GUI applications like Sourcetree Meet The MaintainerJesse Duffield is the creator and maintainer of Lazygit living in Melbourne Australia He considers himself to be a typical introverted programmer spending much of his time working on Lazygit and learning Rust Apart from that he enjoys playing table tennis and writing random stuff on his blog How Did The Idea Of Lazygit Come Up As an early in career developer Jesse s experience with git was not very pleasant He says Adding a file by typing git status dragging my cursor over the file I wanted to add and then typing git add and pasting from my clipboard was such a laborious experience that I figured surely there should be some tool to reduce it down to only a couple of keystrokes This was the beginning of Lazygit The Journey So FarJesse started out with a small ruby program which presented the changes files in your worktree and allowed you to stage them But there s more to git than just staging file At the same time there was a requirement in his job to learn Go he used this opportunity to write a terminal UI for git in Go He came up with a modest set of features for an MVP Minimum Viable Product and got to work Jesse was proud of what he had created and posted it on reddit and a few other places to virtually zero responses After posting about it a couple of weekends in a row he also posted to Hacker News expecting it to be similarly buried and didn t even check back on the post until he got an email asking him what license the repo had His post had reached the front page That was the beginning of a very rewarding multi year grind to continually improve the project and make a positive impact in the world of developer productivity ️Ending NotesJesse wants to thank Appwrite and everyone else who donated to the project as he continues to build If this story resonates with you or your friend tell them about OSS Fund as applications are still open Appwrite OSS Fund Appwrite provides web and mobile developers with a set of easy to use and integrate REST APIs to manage their core backend needs appwrite io For questions reach out to us on TwitterDiscord 2022-08-18 11:25:19
海外TECH DEV Community How I run code on twitter https://dev.to/prasant/how-i-run-code-on-twitter-3h79 How I run code on twitterEver ran code right on twitter No right Now you can Imagine writing code in twitter and someone runs the code for you and reply with output No it s not possible that a human will reply you with the output every time Here my twitter bot coderunnerbot comes handy It will reply you with the output of your code every time you mention it in your tweet containing the code and use the command run Still not sure how to use it Here is howJust mention coderunnerbot in your tweet followed by the command run followed by the code you want to run in markdown format coderunnerbot will reply you with the output of your code Example Prasant kumar decodeprasant coderunnerbot run pyfor i in range print f This is i PM Aug What else can coderunner bot do It can also render your html css js codeMention coderunnerbot in your tweet followed by the command render followed by the code you want to render in markdown format Example Prasant kumar decodeprasant coderunnerbot render html lt h id t gt lt h gt css t font size rem body background eee jssetInterval gt document getElementById t innerHTML new Date toLocaleString AM Aug Still confused Here is the guide on how to use the bot Thanks for reading 2022-08-18 11:20:43
海外TECH DEV Community Request ACM certificate with DNS validation in Go https://dev.to/mohsenkamrani/request-acm-certificate-with-dns-validation-in-go-1omp Request ACM certificate with DNS validation in GoI ve been dealing with AWS SDK a lot in building and I ve found it challenging quite often particularly because of poor documentation One of the issues I had to resolve was requesting a TLS certificate from AWS ACM and validating it with DNS validation If you re in a similar situation you can use this snippet func requestCertificate domainName hostedZoneId string string error cfg amp aws Config Region aws String config Region svc acm New session New cfg input amp acm RequestCertificateInput DomainName aws String domainName IdempotencyToken aws String strings Replace domainName ValidationMethod aws String DNS SubjectAlternativeNames string aws String domainName DomainValidationOptions acm DomainValidationOption DomainName aws String domainName ValidationDomain aws String domainName result err svc RequestCertificate input if err nil return err time Sleep time Second This MUST be long enough o w the validation options won t be available dcIn amp acm DescribeCertificateInput CertificateArn result CertificateArn c err svc DescribeCertificate dcIn if err nil return err if c Certificate DomainValidationOptions nil errMsg DomainValidationOptions does not exists logrus Error errMsg return errors New errMsg fmt Println DomainValidationOptions c Certificate DomainValidationOptions gt Log at the bottom for dvo range c Certificate DomainValidationOptions vRecordName dvo ResourceRecord Name gt this is nil and causes panic vRecordValue dvo ResourceRecord Value createRouteRecord vRecordName vRecordValue hostedZoneId return result CertificateArn nil func createRouteRecord domain value hostedZoneId string error cfg amp aws Config Region aws String config Region if config Configs App RunLocally creds credentials NewStaticCredentials config Configs Secrets AwsAccessKeyId config Configs Secrets AwsSecretAccessKey cfg aws NewConfig WithRegion config Configs Upload SRegion WithCredentials creds svc route New session New cfg resourceRecordSet amp route ResourceRecordSet Name aws String domain Type aws String CNAME ResourceRecords route ResourceRecord Value aws String value TTL aws Int upsert route Change Action aws String UPSERT ResourceRecordSet resourceRecordSet Put it into a pretty envelope with a stamp for route zoneId and change ticket params route ChangeResourceRecordSetsInput ChangeBatch amp route ChangeBatch Changes upsert HostedZoneId aws String hostedZoneId Post it err svc ChangeResourceRecordSets amp params if err nil logrus Error err Error return err You can find the code here 2022-08-18 11:03:11
Apple AppleInsider - Frontpage News Finding a perfectly sized Apple Watch band may get easier in the future https://appleinsider.com/articles/22/08/18/finding-a-perfectly-sized-apple-watch-band-may-get-easier-in-the-future?utm_medium=rss Finding a perfectly sized Apple Watch band may get easier in the futureThere s got to be a better way to find the right Apple Watch band size for your wrist than trying out countless ones or printing out paper guides ーand Apple thinks it has the answer The Apple of today is very different from when it used to stick to Steve Jobs s famous quadrant of laptop desktop consumer and professional computers And perhaps the single clearest indicator of that is the single most confusing choice buyers have to make ーwhich Apple Watch band to get Apple s online store has seemingly countless combinations of Watch Series Watch types and Watch bands and that s probably never going to go away But there is one thing that Apple can improve and that s the confusion over which size band you need for your wrist Read more 2022-08-18 11:53:14
Apple AppleInsider - Frontpage News Pixelmator Photo switches to subscription for new users https://appleinsider.com/articles/22/08/18/pixelmator-photo-switches-to-subscription-for-new-users?utm_medium=rss Pixelmator Photo switches to subscription for new usersThe iPhone and iPad image editor Pixelmator Photo is changing to a subscription app for new users with an optional lifetime purchase The forthcoming Pixelmator Photo for MacThe company s popular and powerful Mac image editor Pixelmator Pro is continuing as a single purchase app but its iOS and iPadOS companion Pixelmator Photo is becoming a subscription app Current users continue as they are with no requirement to subscribe and a one time purchase option will still be available Read more 2022-08-18 11:04:43
海外TECH Engadget Embracer snaps up the rights to 'The Lord of the Rings' and 'The Hobbit' https://www.engadget.com/embracer-snaps-up-rights-lord-of-the-rings-the-hobbit-114524134.html?src=rss Embracer snaps up the rights to x The Lord of the Rings x and x The Hobbit x Embracer the mega game publisher that s been snapping up new properties left and right has made a deal to acquire the intellectual property catalogue and worldwide rights to various JRR Tolkien related media and merch To be precise it will own the rights to quot motion pictures video games board games merchandising theme parks and stage productions quot based on the The Lord of the Rings trilogy and The Hobbit if the deal pushes through It will also own the rights tied to any future literary work related to LOTR and The Hobbit that s authorized by the Tolkien Estate This isn t the first Tolkien related purchase Embracer has made Back in it bought the board game publisher Asmodee which has published over a dozen LOTR board games over the past years And if the acquisition goes through Embracer will work with Amazon on The Lord of the Rings Rings of Power series that will start streaming on September nd In addition to starting the process of acquiring Middle earth Enterprises ーthat s the team that currently owns the IP rights to Tolkien related merch ーEmbracer has also announced that it s purchasing more game studios The biggest name in its latest list of acquisitions is Tripwire Interactive which is known for the co op survival horror Killing Floor and the third person shark sim Maneater Embracer founded in by Swedish entrepreneur Lars Wingefors has been quietly buying up game studios over the past few years We called it the quot biggest games publisher you ve never heard of quot though it s recently been gaining recognition as it continues to add more and more developers under its umbrella Back in May it entered a deal to acquire several studios with a catalogue of IPs that include quot Tomb Raider Deus Ex Thief Legacy of Kain and more than back catalogue games from Square Enix Holdings quot That deal will cost Embracer million ーthe company didn t reveal how much it will pay to acquire the rights to Tolkien related media 2022-08-18 11:45:24
海外TECH Engadget The Morning After: Airbnb tests anti-party tech https://www.engadget.com/the-morning-after-airbnb-tests-anti-party-tech-111629387.html?src=rss The Morning After Airbnb tests anti party techAirbnb which announced a permanent ban on parties at host properties back in June is testing anti party technology in the US and Canada Not that these tools are real world party crashing gadgets The tools focus on when the customer books a property looking at several factors to detect potentially high risk reservations They consider elements such as how long the prospective guest has had an Airbnb account how far away the listing is from where they re based and their history of positive reviews It may for instance flag a planned stay of one or two nights over a weekend in the guest s home city In Australia where Airbnb first tested the tools it says it reduced unauthorized parties by percent ーMatThe biggest stories you might have missed Call of Duty Modern Warfare II pre order customers can play the story a week earlyKlipsch s tiny T wireless earbuds arrive as a bespoke modelArchetype Rabea is an all in one virtual guitar rig that s also a synth Hades leaves Game Pass on August stISS spacewalk interrupted by suit malfunctionWhat you ll need to survive the California wildfires this summerUpdate your home s emergency kit now ReutersClimate change has transformed the American West into a tinderbox Temperatures since the start of the century have averaged two degrees Fahrenheit higher than any other point on record since A significant part of California is going to be affected ーcoastal cities urban wildland interfaces and out in the middle of rural anywhere So here s some gear and techniques to help with this summer s fire season Continue reading Netflix with ads might not have offline viewingThe tier s subscribers won t be able to download the Netflix app s code suggests Netflix s upcoming ad supported tier might not be the best streaming option for commuters and other viewers who watch on the go Developer Steve Moser has discovered text in the code of the service s iPhone app that says Downloads available on all plans except Netflix with ads In short no offline viewing The streaming service told Techcrunch We are still in the early days of deciding how to launch a lower priced ad supported option and no decisions have been made Continue reading Australia s top court rules Google isn t a publisherThe company could have been held liable for linking to defamatory websites Google has prevailed in its long running battle over potentially defamatory web links Australia s High Court has ruled Google s search result link merely facilitated access to an allegedly defamatory story ーGoogle didn t play a part in writing or distributing the content The decision could have a wide ranging impact on internet firms operating in Australia Continue reading The best laptops for college studentsOur favorite machines for classes on campus online and everywhere in between EngadgetWhether you re heading to a physical campus taking classes online or a mix of both a laptop is sure to be the control center for your studies Getting a new machine can help you stay on top of your schedule and handle your furious multitasking across dozens of tabs devoted to research while you write your essays Given we re still dealing with ongoing inflation and the global chip shortage you might be concerned about rising prices or what might be in stock The good news is companies are still making a ton of new laptops and there are plenty of models for you to consider Continue reading 2022-08-18 11:16:29
金融 金融庁ホームページ アジア地域ファンド・パスポート第11回合同委員会 バーチャル会合に係るプレスリリースを公表しました。 https://www.fsa.go.jp/inter/etc/20220817.html 委員会 2022-08-18 12:00:00
海外ニュース Japan Times latest articles Brewer Asahi set to raise prices to battle increase in costs https://www.japantimes.co.jp/news/2022/08/18/business/corporate-business/asahi-price-hike/ japanese 2022-08-18 20:52:57
海外ニュース Japan Times latest articles Japan’s bid to get young people to drink more sparks online backlash https://www.japantimes.co.jp/news/2022/08/18/national/japan-drinking-campaign-backlash/ Japan s bid to get young people to drink more sparks online backlashThe tax agency s Sake Viva idea competition which is seeking business plans to help revitalize the liquor industry was launched in July and gained traction 2022-08-18 20:38:44
ニュース BBC News - Home Sanna Marin: Finland PM partying video causes backlash https://www.bbc.co.uk/news/world-europe-62588480?at_medium=RSS&at_campaign=KARANGA marin 2022-08-18 11:13:16
ニュース BBC News - Home A-level results 2022: How were grades decided? https://www.bbc.co.uk/news/education-58026976?at_medium=RSS&at_campaign=KARANGA grades 2022-08-18 11:31:52
ニュース BBC News - Home Students relive results 'rollercoaster' https://www.bbc.co.uk/news/uk-northern-ireland-62589749?at_medium=RSS&at_campaign=KARANGA londonderry 2022-08-18 11:08:30
北海道 北海道新聞 宗谷管内97人感染 留萌は53人 新型コロナ https://www.hokkaido-np.co.jp/article/719300/ 宗谷管内 2022-08-18 20:34:00
北海道 北海道新聞 問題グマ特定迅速化へ 道がAIで個体識別に着手 https://www.hokkaido-np.co.jp/article/719299/ 取り組み 2022-08-18 20:33:17
北海道 北海道新聞 維新代表選、吉村氏は馬場氏支持 一般党員に影響も https://www.hokkaido-np.co.jp/article/719291/ 吉村洋文 2022-08-18 20:24:27
北海道 北海道新聞 聖光学院10―5九州学院 聖光学院が打ち勝つ https://www.hokkaido-np.co.jp/article/719296/ 九州学院 2022-08-18 20:21:00
北海道 北海道新聞 対向車からコンクリ塊投げ付け 茨城県警が捜査 https://www.hokkaido-np.co.jp/article/719290/ 茨城県境町 2022-08-18 20:12:00
北海道 北海道新聞 区役所職員名乗る男に100万円だまし取られる 札幌市南区の60代男性 https://www.hokkaido-np.co.jp/article/719289/ 札幌市南区 2022-08-18 20:08:00
北海道 北海道新聞 みんなで選ぶ最高の道産米酒 審査員600人募集 https://www.hokkaido-np.co.jp/article/719288/ 道産 2022-08-18 20:05:00
北海道 北海道新聞 中国「EEZ見解受け入れず」 軍事演習巡り日本に https://www.hokkaido-np.co.jp/article/719287/ 記者会見 2022-08-18 20:02:00
北海道 北海道新聞 日勝峠「週内の復旧目指す」 室蘭開建 https://www.hokkaido-np.co.jp/article/719284/ 通行止め 2022-08-18 20:01:22
IT 週刊アスキー HTC Japan、9月1日に新スマホを発表か? https://weekly.ascii.jp/elem/000/004/102/4102177/ htcjapan 2022-08-18 20:30:00
GCP Cloud Blog Helping European education providers navigate privacy assessments https://cloud.google.com/blog/products/identity-security/helping-european-education-providers-navigate-privacy-assessments/ Helping European education providers navigate privacy assessmentsEvery student and educator deserves access to learning tools that are private and secure Google Workspace for Education and Chromebooks have positively transformed teaching and learning while creating safe learning environments for more than million students and educators around the world Our education products are built with data protection at their core enabling school administrators to demonstrate their privacy compliance when using our services  Before using the products and services of technology providers like Google schools in Europe may be required by the EU s General Data Protection Regulation GDPR or similar laws to conduct Data Protection Impact Assessments DPIAs A school using Google Workspace for Education is considered a controller of the personal data that it and its students submit store send or receive via those Core Services Under the GDPR a controller is responsible for assessing whether a DPIA is required and completing one as appropriate Navigating the complex DPIA requirements under the GDPR can be challenging for many of our customers and while only customers as controllers can complete DPIAs we are here to help them meet these compliance obligations Our Cloud DPIA Resource Center outlines the obligations related to DPIAs that customers may have under the GDPR and provides information about Google Workspace for Education that our customers and their lawyers can use as a starting point for assessing and meeting these legal obligations  What every parent and teacher should know about Google Workspace for EducationFor Google Workspace for Education core services like Gmail Classroom Calendar Groups Drive Docs and similar products Google only processes data including personal data provided by customers and their end users in accordance with each customer s documented instructions Data in these core services is never used for advertising purposes and no ads are shown in core services  Below are a few examples of how those core services can benefit students and educators  Google Calendar and Groups help schools streamline their administration by managing personal and team calendars and creating groups Google Docs and Drive enable classmates to collaborate in real time  Google Classroom allows educators to securely and privately provide feedback to students saving time for both Google Classroom also allows educators to factor in grading trends when planning future lessons  When using Google Workspace for Education core services schools are in control of their content from start to finish and the domain administrator of the school s system can directly manage this data using our privacy and security settings Domain administrators have flexibility and autonomy to change default settings and use enable advanced security upgrade options to meet their data protection requirements There are equivalent controls in Chrome which would guarantee Google does not have access to the data Administrators can encrypt Chrome Sync data with a custom passphrase to which Google doesn t have access or even turn off Chrome Sync entirely so that no sync data is sent to Google We share the same goals as the schools that use our products keeping educators and students safe while supporting learning As schools evaluate their technology needs and undertake risk assessments we ll work with them to help answer any questions they may have along the way Google has cooperated with numerous customers across Europe who conduct DPIAs and we regularly engage with customers regulators policymakers and other stakeholders to provide transparency into our operations policies and practices this is core to who we are and encapsulates our ongoing commitment to privacy compliance In one recent example of this type of collaboration the Dutch government conducted a DPIA into Google Workspace for Education to facilitate cloud adoption by schools in the Netherlands As a result of that engagement Google announced our intention to offer new contractual privacy commitments for service data that align with the commitments we offer for customer data Once those new commitments become generally available we will process service data as a processor under customers instructions except for limited processing that we will continue to undertake as a controller We are confident that these changes will address the requirements of our customers and regulators in Europe  And you may be aware of the Danish DPA s recent decision on the use of Google Workspace for Education and Chromebooks by the local municipality of Helsingør Although this decision affects only Helsingør municipality and does not impose a country wide ban on the use of Google Workspace for Education in Denmark we know this issue raised questions in many European countries and has lead to some misconceptions on the privacy and security of the use of Google Workspace for Education and Chromebooks in schools The Danish DPA has clearly communicated including in the national media that the underlying reason for their decision is not a deficiency of privacy security or GDPR compliance in Google Workspace for Education  Google has worked with Helsingør Municipality to answer questions review technical settings in their Workspace for Education Admin Console and share best practices from other European customers who have undertaken a data protection impact assessment Our sophisticated encryption technology which is not currently matched by any other cloud provider can also guarantee that Google personnel cannot decrypt customer data without their permission   At Google we recognise the utmost importance of schools assessing the risks that apply to their data when using any technology platform or online service to process student data We hope that our Cloud DPIA Resource Center helps our customers complete these assessments for Google Workspace for Education in compliance with the GDPR and we ll continue to provide the tools resources and support our customers need to ensure appropriate protection of student data For more information about what data we collect and how it is used please see the Google Workspace for Education Privacy Notice  According to the GDPR the controller determines the purposes and means of processing of personal data  For example billing and account management capacity planning and forecast modeling detecting preventing and responding to security risks and technical issues 2022-08-18 11:29: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件)