投稿時間:2022-04-28 03:29:26 RSSフィード2022-04-28 03:00 分まとめ(33件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
AWS AWS Security Blog How to control access to AWS resources based on AWS account, OU, or organization https://aws.amazon.com/blogs/security/how-to-control-access-to-aws-resources-based-on-aws-account-ou-or-organization/ How to control access to AWS resources based on AWS account OU or organizationAWS Identity and Access Management IAM recently launched new condition keys to make it simpler to control access to your resources along your Amazon Web Services AWS organizational boundaries AWS recommends that you set up multiple accounts as your workloads grow and you can use multiple AWS accounts to isolate workloads or applications that have … 2022-04-27 17:54:12
AWS AWS Amazon SageMaker Training: Data Pre-processing Bottlenecks in Computer Vision Workloads https://www.youtube.com/watch?v=HDtfiWYYbkg Amazon SageMaker Training Data Pre processing Bottlenecks in Computer Vision WorkloadsThis presentation covers Data pre processing Bottlenecks Problem Challenge Customer use case Best practices Address CPU Bottlenecks to maximize GPU utilization Experiments Setup and Results Offloading data pre processing to GPU Identifying Bottlenecks Leveraging Amazon SageMaker Debugger Zooming into Training Job from the Experiment ResultsLearn more at Subscribe More AWS videos More AWS events videos ABOUT AWSAmazon Web Services AWS is the world s most comprehensive and broadly adopted cloud platform offering over fully featured services from data centers globally Millions of customers ーincluding the fastest growing startups largest enterprises and leading government agencies ーare using AWS to lower costs become more agile and innovate faster SageMaker ComputerVision CV Training AmazonSageMaker Debugger CPUBottleneck AWS AmazonWebServices CloudComputing 2022-04-27 17:39:24
AWS AWS - Webinar Channel Using Apache Spark on Amazon EMR with SageMaker for End-to-End ML and Data Science Workflows https://www.youtube.com/watch?v=RxRENYQBxZU Using Apache Spark on Amazon EMR with SageMaker for End to End ML and Data Science WorkflowsAmazon SageMaker Studio is the first fully integrated development environment IDE for machine learning ML It provides a single web based visual interface where you can perform all ML development steps required to prepare data as well as to build train and deploy models Analyzing transforming and preparing large amounts of data is a foundational step of any data science and ML workflow Amazon EMR is a cloud big data platform for running large scale distributed data processing jobs interactive SQL queries and machine learning ML applications using open source analytics frameworks such as Apache Spark Apache Hive and Presto In this talk we will demonstrate recent integrations between the services making it really simple for Data Scientists and Machine Learning Engineers to use distributed big data frameworks such as Spark in their machine learning workflowLearning Objectives Objective How to use a unified notebook centric experience to create and manage EMR clusters run analytics on those clusters and train and deploy SageMaker models Objective How to use a one click interface for debugging and monitoring Amazon EMR jobs through the Spark UI Objective How data workers can discover connect create and stop clusters in a multi account setup To learn more about the services featured in this talk please visit 2022-04-27 17:00:23
AWS AWS Security Blog How to control access to AWS resources based on AWS account, OU, or organization https://aws.amazon.com/blogs/security/how-to-control-access-to-aws-resources-based-on-aws-account-ou-or-organization/ How to control access to AWS resources based on AWS account OU or organizationAWS Identity and Access Management IAM recently launched new condition keys to make it simpler to control access to your resources along your Amazon Web Services AWS organizational boundaries AWS recommends that you set up multiple accounts as your workloads grow and you can use multiple AWS accounts to isolate workloads or applications that have … 2022-04-27 17:54:12
海外TECH Ars Technica Google calls the Pixel 6 “the fastest-selling Pixel ever” https://arstechnica.com/?p=1850731 google 2022-04-27 17:26:20
海外TECH Ars Technica Staring death in the face: Chimpanzees are drawn to skulls of their own species https://arstechnica.com/?p=1850383 hamlet 2022-04-27 17:17:34
海外TECH MakeUseOf Free vs. Paid VPNs: Which Should You Choose? https://www.makeuseof.com/free-vs-paid-vpns/ learn 2022-04-27 17:15:15
海外TECH MakeUseOf How to Restore Taskbar Labels in Windows 11 and 10 https://www.makeuseof.com/windows-11-10-taskbar-labels/ windows 2022-04-27 17:15:14
海外TECH DEV Community Building Your Own Google Docs Clone with Flutter https://dev.to/appwrite/building-your-own-google-docs-clone-with-flutter-1fbm Building Your Own Google Docs Clone with FlutterAppwrite has always been about providing developers with a core set of functionality needed to build any application with any stack From database interactions to authentication real time updates and more Developers are only limited by their imagination on what they can build Gordon Hayes from Fun with Flutter has taken on the challenge of building a Google Docs clone and better yet he s done it using Appwrite and Flutter Appwrite is an open source Backend As A Service that abstracts all the complexity of building a modern application by providing you with a set of REST APIs for your core backend needs Appwrite takes the heavy lifting for developers and handles user authentication and authorization databases file storage cloud functions Webhooks and much more Flutter is an open source framework by Google for building beautiful natively compiled multi platform applications from a single codebase Gordon walks you through the entire process from setting up the application to adding routes authentication creating documents real time interactions and more And it s all open source for you to take and tinker with We love seeing projects like this one and others We encourage you to build and show off your own projects during the DEV Hackathon with Appwrite Learn MoreGetting Started TutorialAppwrite GitHubAppwrite DocsDiscord CommunityIf you liked this click the ️so other people will see it Follow Brandon Roberts and Appwrite on Twitter for more updates 2022-04-27 17:39:04
海外TECH DEV Community Asynchronous Programming in C# https://dev.to/sukhrob/asynchronous-programming-in-c-5dc7 Asynchronous Programming in C Sometimes we need to download a large file or we need to build a software or game like Counter Strike or Valorant that it s functions works simultaneously or need to work at the same time For example if you are playing Valorant vs and you throwed a flashback to blind your enemy everyone are blind in the same time In this case your game does complex calculation and need to blind your enemy at the same time Without an asynchronous programming it is not gonna happen So asynchronous programming is the way of executing programming code in a thread without having to wait for IO bound or CPU bound task to finish IO bound operations could be file system accesses HTTP requests API calls or database queries CPU bound operations would be actions like encrypting a data complex calculations image or document management One of the ideas of asynchronous programming is to divide our logic into awaitable tasks so that we don t block the execution of our application We can call an asynchronous method and get a task oject that represents it In the meantime we can do some not relate and not dependant work After we execute those operations we await the asynchronous task which may already be finished or not If the execution is finished we will get result from the task and use it in the next dependant operations or start next operations It has benefits UI of our application is responsivePerformance of our application has improvedAvoid thread pool starvationBut also it has drawbacks Code will be more complex and harder to maintainIncreased memory allocation so some objects should stay longer while awaiting other code to be executed That s why you need a stronger PC to play FPS gamesIt can be harder to find bugs in code 2022-04-27 17:26:56
海外TECH DEV Community Handling Sensitive Data: A Primer https://dev.to/mbogan/handling-sensitive-data-a-primer-5ph Handling Sensitive Data A PrimerProperly securing sensitive customer data is more important than ever Consumers are increasingly insisting that their data be secured and managed properly The regulatory environment is also becoming tougher and business requirements are becoming increasingly complex The burden is placed on the company and its development teams to meet these requirements while still delighting users If that leaves you in a bind we re here to help with a quick data privacy primer First we ll help you to understand the various kinds of sensitive customer data and the regulations that apply to it Next we ll guide you in assessing your current handling of that data Finally we ll provide direction on how to properly govern that data LearnThe first task is to understand what kind of sensitive customer data you are already handling and what regulations apply to it Three factors determine which regulations apply to a given set of data The data itselfYour company s industry verticalThe location s where your business operatesFirst consider the data itself Depending on the type of data that is being stored in your system different regulations apply Let s begin with Personal Information PI This is perhaps the broadest category of regulated data referring to nearly anything that is or can be associated with a person PI is regulated by the General Data Protection Regulation GDPR the California Privacy Rights Act CRPA NY SHIELD and others Examples of this data include IP addressesGeolocation informationInternal ID numbersEthnic or racial originPersonally Identifiable Information PII is a subcategory of PI and refers to any data which could be used to distinguish or otherwise determine a person s identity Generally speaking the same regulations which apply to PI also apply to PII although with differing levels of sensitivity Examples of PII include NamesPhone numbersDriver s license or other ID numbersSocial Security Numbers SSNs are more highly regulated than other PII Biometric recordsOther categories of private consumer data tend to be industry specific For example Protected Health Information PHI refers to all “individually identifiable health information This is regulated in the US by HIPAA and is defined as any information which relates to any of the following The individual s past present or future physical or mental health or conditionThe provision of healthcare to the individualThe past present or future payment for the provision of healthcare to the individualSimilarly Nonpublic Personal Information NPI refers to the personally identifiable financial information that is provided by a consumer to a financial institution and as such is specific to financial service organizations In the US NPI is regulated by the Gramm Leach Bliley Act GLBA Finally some types of personal information are governed by location specific regulations Sensitive Personal Information SPI is defined by the CPRA This refers to data that does not directly identify an individual but may cause harm if made public Examples include ID numbers geolocation account login information and genetic information Private Information is defined by the NY SHIELD Act and applies to any data related to a resident of New York Additionally nearly every privacy regulation has some kind of location scope such as GDPR for the EU HIPAA for the US and so on This is not an exhaustive list of regulations or categories of sensitive customer data With this in mind however we can see several trends First many of these categories overlap with one another The same data can fall under the scope of multiple regulations and must be handled according to the requirements of all regulations that are relevant to your business Second the relevant regulations will heavily depend on your organization s industry vertical and the locations in which it operates Finally even within a given regulation different data can have differing levels of sensitivity With an understanding of the various types of sensitive customer data in mind we are now ready to begin an assessment process This assessment will answer the question “How is my sensitive customer data being handled now AssessBefore determining how sensitive customer data should be handled it is helpful to take some time to assess how it is currently being handled To begin compile a list of customer data that is already being handled and stored Next you should carry out two assessments a technical assessment and a policy assessmentA technical assessment tells you where the data flows through the system Begin with the moment that data enters the system and trace it through the various pieces of your application Make sure to consider the application service and data layers Additionally note any places where that data exits the system and make note of where that data goes such as another application or a business reporting tool Do this for each piece of sensitive customer data that is currently in the system As you continue to do this make note of any inconsistencies or mishandling to address later Example Tracing the flow of user PII through a systemWith a policy assessment you review current policies and controls around data governance Begin by compiling your organization s internal documentation around sensitive data and reviewing the written policies and procedures From there consider whether these policies adequately cover the types and amount of sensitive data that your company currently handles Another critical part of this assessment is determining whether these policies are being effectively executed or if actual governance has diverged from the original intent With both assessments in hand you should be able to confidently describe your organization s current handling of sensitive customer data Additionally you will have identified areas for improvement or areas that require further research Now we are ready to define what should be done about your sensitive customer data GovernTo properly govern your sensitive customer data we recommend a three step process First determine the regulations which apply to you and which subsets of data they apply to Second determine which policies need to apply to each subset of sensitive data Lastly based on the required policies design or find a technical solution to implement and reinforce those policies Proper technical governance of sensitive customer data protects sensitive data without making it unnecessarily difficult to use Rather than simply storing it side by side with the rest of your data consider isolating your sensitive data in a zero trust data privacy vault This approach allows for your sensitive data to be properly governed with its own separate controls Additionally your data privacy vault can grow along with the scope of sensitive data your organization handles allowing for scalability If you re looking to achieve compliance with data privacy regulations in days instead of weeks one of your options for a dedicated data privacy vault is Skyflow Skyflow uses a zero trust approach to storing sensitive data of all types The data is isolated encrypted and secure yet still usable in your business workflows Granular access policies are available for all data in the vault and are easily defined with the Skyflow Data Governance Engine All actions are logged and auditable Skyflow has solutions for FinTech Healthcare PII and more and it is compliant with privacy regulations worldwide Wrap upWe ve gone through a three step approach Learn Assess Govern for handling sensitive customer data in your organization First we went through the various types of sensitive data and the regulations which apply to them Next we described how you can assess how your organization handles sensitive customer data Finally we sketched out a flow for properly governing your sensitive customer data We also considered how an isolated data privacy vault such as Skyflow can help with that The landscape of sensitive data governance is continually changing as new regulations are created and existing ones are strengthened As such this process is not something that can just be done once it must be continually updated as your organization grows and as regulations change 2022-04-27 17:21:22
海外TECH DEV Community How the TypeScript Parameters Type Works https://dev.to/smpnjn/how-the-typescript-parameters-type-works-49p5 How the TypeScript Parameters Type WorksThe TypeScript Parameters Type is used take the parameters or arguments of a function and create a new type based off them It is quite useful when we know that the input of a Function conforms to a certain type and we want to replicate that In this guide let s look at how the Parameters utility type works TypeScript Custom TypesThis guide covers custom types If you re new to custom types read my guide on custom types here How the Parameters Type WorksImagine you have a function with a set number of arguments For example here is a TypeScript function with two parameters or arguments a and b const myFunction a string b string gt return a b Let s say we want to run this function One way is to pass in an array with a tuple type the three dots operator For example const myFunction a string b string gt return a b let passArray string string hello world Returns hello world myFunction passArray Here we define a tuple which is simply string string which we can pass into myFunction satisfying both the a and b arguments That works fine but what if the arguments of myFunction change This is especially likely to happen if myFunction is coming from a third party script Then we would have to not only update our function but remember to update our tuple type which we pass in We d also need to stay up to date with the package myFunction is in in case it changes Instead if we want to ensure they always match we can use Parameters to produce the same type This will create a tuple type of the arguments instead of us having to define it manually type myType Parameters lt typeof myFunction gt Equivalent to a tuple type of type myType a string b string This saves us some hassle in defining custom types since we can now pass anything of type myType into myFunction with little fear of error const myFunction a string b string gt return a b type myType Parameters lt typeof myFunction gt let myArray myType hello world myFunction myArray Typing Specific Parameters with the Parameter Utility TypeParameter types are also quite flexible and allow us to define more than just the full set of arguments For example if we wanted to only match the type of the first argument in our function myFunction we can reference that like a simple array by adding The following will match the type of a but if we wanted to match the type of b we could use type myType Parameters lt typeof myFunction gt Equivalent of string That way we could define custom types for each argument if we have to in our code For example here we define two custom types for the first and second parameters of the function and pass them both into our function const myFunction a string b string gt return a b type aType Parameters lt typeof myFunction gt type bType Parameters lt typeof myFunction gt let a aType hello let b bType world myFunction a b More fun with ParametersSince Parameters converts the type of arguments to a new type we can also pass a function directly into it The below will produce a type a string b number This is less useful than taking the parameters from a specific function but can serve purposes in certain situations type anotherType Parameters lt a string b number gt void gt 2022-04-27 17:12:28
Apple AppleInsider - Frontpage News Apple's Self Repair Program vs. Genius Bar: What it costs to fix an iPhone 13 https://appleinsider.com/articles/22/04/27/apples-self-repair-program-vs-genius-bar-what-it-costs-to-fix-an-iphone-13?utm_medium=rss Apple x s Self Repair Program vs Genius Bar What it costs to fix an iPhone iPhone users can repair their device in home with certified tools provided by Apple but it ll cost you not just money but time too Here s what you ll spend trying to fix a broken iPhone Customers can repair their iPhone at home but at a high costApple has finally opened up its Self Service Repair program where individuals can order genuine Apple parts and tools Previously a customer s only options were Apple an Apple Authorized Service Provider or non authorized repair centers Read more 2022-04-27 17:51:17
Apple AppleInsider - Frontpage News How to download Apple's iPhone repair manuals https://appleinsider.com/inside/iphone/tips/how-to-download-apples-iphone-repair-manuals?utm_medium=rss How to download Apple x s iPhone repair manualsWhether you re planning to fix your iPhone screen or you re just curious to see what the new Self Service Repair program entails you can now download Apple s instructions to get all of the details Apple has launched its promised Self Service Repair program for iPhones and if nothing else it s going to tell people just how involved repairing these devices is In practice it s unlikely that many regular consumers will go through the process of repairing their devices But even if they don t it s now possible for everyone to see what they re paying for when they take an iPhone in to be fixed It s fascinating how detailed Apple s instructions are right down to when you cannot re use a screw you ve just taken out of an iPhone Read more 2022-04-27 17:52:12
Apple AppleInsider - Frontpage News Hyper's USB4 Mobile Dock expands the Mac's connectivity on the go https://appleinsider.com/articles/22/04/27/hypers-usb4-mobile-dock-expands-the-macs-connectivity-on-the-go?utm_medium=rss Hyper x s USB Mobile Dock expands the Mac x s connectivity on the goOffering HDMI USB and DisplayPort the new Dock from Hyper allows traveling users access to a world of peripherals for their Mac or PC Hyper s new portable docking solution packs a huge variety of ports in a compact design that s meant to make this powerful yet convenient for MacBook Pro users The USB Mobile Dock supports up to two external displays at K Hz or a single K Hz monitor Its ports offer a choice of HDMI or DisplayPort though there is only one of each Read more 2022-04-27 17:10:08
海外TECH Engadget Alexa can tell you when your security camera detects a person or package https://www.engadget.com/alexa-camera-person-package-detection-announcement-ring-google-nest-175454674.html?src=rss Alexa can tell you when your security camera detects a person or packageAmazon is rolling out a feature that will allow Alexa to tell you when a supported security camera or video doorbell detects a person or a package If you activate the announcements you can receive an alert from the Alexa mobile app hear a notification from an Echo speaker and or view a live video feed on Echo Show Fire TV or a Fire tablet The feature is compatible with Alexa routines So when your camera or doorbell spots a package or a person you can automatically turn on a floodlight activate a smart lock or trigger a custom Alexa greeting It s worth noting that person and package detection are only available on Ring devices if you have a Ring Protect subscription which starts at per month Alexa person detection alerts are available starting today on all Ring video doorbells and cameras as well as third party devices that have Work with Alexa support such as some TP Link and Ecobee products Abode Iota and Outdoor cameras will be supported in the near future Amazon says the feature is even coming soon to some Google devices It ll work with the battery powered Google Nest Cam whether outdoor or indoor the wired indoor Nest Cam Nest Cam with floodlight and the battery powered Nest Doorbell As for package detection announcements those are now available for Ring Video Doorbell Pro and the model of the Ring Video Doorbell Abode Iota and Outdoor cameras will support the feature soon Amazon also announced an Object Detection Sensor API so developers can enable person or package detection Alexa announcements for other compatible cameras If you have a supported Ring device and want to use these features you ll need to switch on Smart Alerts in the Ring app and Camera Events in the Alexa app You an set up routines and custom voice announcements in the Alexa app as well 2022-04-27 17:54:54
海外TECH WIRED Right-Wing Trolls Are Trying to Break Back Into Twitter https://www.wired.com/story/elon-musk-twitter-trolls extremist 2022-04-27 17:35:01
ニュース ジェトロ ビジネスニュース(通商弘報) 米ニューヨーク国際オートショー、3年ぶり開催の目玉はEV https://www.jetro.go.jp/biznews/2022/04/58fb80826d568701.html 開催 2022-04-27 17:20:00
ニュース ジェトロ ビジネスニュース(通商弘報) 米サイバーセキュリティー当局、ロシアのサイバー攻撃の脅威について勧告 https://www.jetro.go.jp/biznews/2022/04/525b0ebe8aeeaa06.html 脅威 2022-04-27 17:10:00
ニュース BBC News - Home Prince Andrew: Duke of York loses Freedom of City honour https://www.bbc.co.uk/news/uk-england-york-north-yorkshire-61247885?at_medium=RSS&at_campaign=KARANGA andrew 2022-04-27 17:49:30
ニュース BBC News - Home World Snooker Championship 2022: Three-time champion Mark Williams reaches his seventh semi-final https://www.bbc.co.uk/sport/snooker/61248668?at_medium=RSS&at_campaign=KARANGA World Snooker Championship Three time champion Mark Williams reaches his seventh semi finalThree time champion Mark Williams reaches his seventh World Championship semi final after beating Yan Bingtao 2022-04-27 17:05:31
ニュース BBC News - Home Emma Raducanu: US Open champion discusses 'tough' split with coach Torben Beltz https://www.bbc.co.uk/sport/tennis/61251003?at_medium=RSS&at_campaign=KARANGA Emma Raducanu US Open champion discusses x tough x split with coach Torben BeltzEmma Raducanu says it was a tough decision to split with coach Torben Beltz after only five months but is very confident in her training 2022-04-27 17:01:28
ビジネス ダイヤモンド・オンライン - 新着記事 【精神科医が教える】 苦しまずに生きるたった1つの判断基準 - 精神科医Tomyが教える 心の荷物の手放し方 https://diamond.jp/articles/-/301976 voicy 2022-04-28 02:50:00
ビジネス ダイヤモンド・オンライン - 新着記事 【集中投資でFIREした元会社員が教える】 高収入なのに自由になれない人の たった2つの共通点 - 投資をしながら自由に生きる https://diamond.jp/articles/-/301769 2022-04-28 02:45:00
ビジネス ダイヤモンド・オンライン - 新着記事 【GWはレンチンで何とかする!】 簡単に銀座気分を味わえる 手間抜きレシピとは? - 銀座料亭の若女将が教える 料亭レベルのレンチンレシピ https://diamond.jp/articles/-/301863 2022-04-28 02:40:00
ビジネス ダイヤモンド・オンライン - 新着記事 【専業投資家かぶ1000が教える】 元で200万円が8億円に!? 「信用取引」の光と影 - 賢明なる個人投資家への道 https://diamond.jp/articles/-/301911 【専業投資家かぶが教える】元で万円が億円に「信用取引」の光と影賢明なる個人投資家への道『賢明なる個人投資家への道』の著者・かぶは、株式投資歴年以上の専業投資家。 2022-04-28 02:35:00
ビジネス ダイヤモンド・オンライン - 新着記事 西陣織を使った世界初の外壁素材は、どうやって生まれたのか? - 日本の美意識で世界初に挑む https://diamond.jp/articles/-/302074 2022-04-28 02:30:00
ビジネス ダイヤモンド・オンライン - 新着記事 2分でわかる!「マカオってどんな地域?」 - 読むだけで世界地図が頭に入る本 https://diamond.jp/articles/-/301158 2022-04-28 02:25:00
ビジネス ダイヤモンド・オンライン - 新着記事 人生が「生きづらすぎる人」に共通するたった一つの思い込み - 私の居場所が見つからない https://diamond.jp/articles/-/302151 2022-04-28 02:20:00
ビジネス ダイヤモンド・オンライン - 新着記事 【子ども4人全員を東大理三に入れた母親が教える】 学力向上に活きる! 学習塾以外の2つの習い事とは? - 東大理三に3男1女を合格させた母親が教える 東大に入るお金と時間の使い方 https://diamond.jp/articles/-/302280 【子ども人全員を東大理三に入れた母親が教える】学力向上に活きる学習塾以外のつの習い事とは東大理三に男女を合格させた母親が教える東大に入るお金と時間の使い方男女全員を国内最難関の東京大学理科三類医学部に合格させた『東大に入るお金と時間の使い方』の著者・佐藤亮子ママは、生まれたばかりの歳の頃から、歳の大学入学までを全力でサポートするため、「お金」も「時間」も惜しまなかった。 2022-04-28 02:15:00
ビジネス ダイヤモンド・オンライン - 新着記事 「思いつきで指示をしてくる上司」への対応に役立つ2冊 - 独学大全 https://diamond.jp/articles/-/301397 思いつき 2022-04-28 02:10:00
ビジネス ダイヤモンド・オンライン - 新着記事 【賃貸ビジネス入門】空きスペースもお金に変わる - 40代からは「稼ぎ口」を2つにしなさい https://diamond.jp/articles/-/302426 新刊『代からは「稼ぎ口」をつにしなさい年収アップと自由が手に入る働き方』では、余すことなく珠玉のメソッドを公開しています。 2022-04-28 02:05:00
ビジネス ダイヤモンド・オンライン - 新着記事 【編集者募集・ダイヤモンド社】 企画の立て方を根本から覆した衝撃的な本作り - 書籍編集者募集 https://diamond.jp/articles/-/268946 田中怜子 2022-04-28 02:02: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件)