投稿時間:2023-04-25 02:25:38 RSSフィード2023-04-25 02:00 分まとめ(26件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
AWS AWS Partner Network (APN) Blog Benefits of Running Virtual Machines on Red Hat OpenShift for AWS Customers https://aws.amazon.com/blogs/apn/benefits-of-running-virtual-machines-on-red-hat-openshift-for-aws-customers/ Benefits of Running Virtual Machines on Red Hat OpenShift for AWS CustomersBy Mehdi Salehi Sr Partner Solutions Architect AWS By Boris Jelic Distinguished Engineer amp APAC CTO Hybrid Cloud Services IBM Consulting By Suresh Eswaran Distinguished Engineer amp ASEAN CTO Hybrid Cloud Services IBM Consulting Over the last couple of decades x virtualization has become a fundamental technology in data centers enabling organizations … 2023-04-24 16:57:21
AWS AWS - Webinar Channel Data Modeling Methodology for Amazon DocumentDB- AWS Virtual Workshop https://www.youtube.com/watch?v=Y87DVChZfwk Data Modeling Methodology for Amazon DocumentDB AWS Virtual WorkshopAmazon DocumentDB with MongoDB compatibility is a fully managed native JSON database designed for scaling enterprise workloads The JSON document model makes it easy for developers to store and query data in a database by using the same document model format they use in their application code In this session learn about data modeling concepts for JSON based document oriented databases and understand the data modeling methodology The presentation will provide examples of various use cases for data models and their implementations Learning Objectives Objective Understand document database modeling concepts Objective Learn about different data modeling methodologies Objective Explore data modeling use cases with examples To learn more about the services featured in this talk please visit To download a copy of the slide deck from this webinar visit 2023-04-24 16:00:17
js JavaScriptタグが付けられた新着投稿 - Qiita react chartjsでグラフを表示させグラフ上の点を動かして、値を変更させる方法 https://qiita.com/kaba_san/items/70ba2e6cf9aec3aedb40 tjsreactchartjschartjs 2023-04-25 01:11:26
技術ブログ Developers.IO Amazon GuardDuty RDS Protection の検出タイプについて https://dev.classmethod.jp/articles/guardduty-rds-protection-finding-types/ amazonauro 2023-04-24 16:26:12
海外TECH MakeUseOf How to Use the Various Count Functions in Excel https://www.makeuseof.com/use-various-count-functions-excel/ analysis 2023-04-24 16:45:17
海外TECH MakeUseOf What Is AMD 3D V-Cache and How Does It Work? https://www.makeuseof.com/amd-3d-v-cache-explained/ cache 2023-04-24 16:45:17
海外TECH MakeUseOf How to Use Email Reminders in Apple Mail on iPhone, iPad, and Mac https://www.makeuseof.com/how-to-use-email-reminders-in-apple-mail/ apple 2023-04-24 16:30:13
海外TECH MakeUseOf How to Fix the Microsoft Store Error 0x87e00017 When Downloading or Updating Xbox Games https://www.makeuseof.com/microsoft-store-error-0x87e00017/ microsoft 2023-04-24 16:15:16
海外TECH DEV Community How to show google map in Spring Boot Application https://dev.to/realnamehidden1_61/how-to-show-google-map-in-spring-boot-application-4h28 How to show google map in Spring Boot Applicationstep get google map api keygo to below sitechoose select a projectclick on new projectgive project name select created projectchoose maps js apiclick on enablenow its time to create api keychoose credentialsclick on create credentialschoose api keyclick on show key you can see the keyyou can use this key in your appnext stepcreate spring boot app with dependencieslombok spring web thymeleafCreate MapController java in controller packagealso create index html in templates folderDirectory Structureindex htmlNote Make sure mapsApiKey you api key that you created you should give your api key at this place in index html you api key that you created lt html gt lt head gt lt script type text javascript src gt lt script gt lt script type text javascript gt google charts load current packages map Note you will need to get a mapsApiKey for your project See load settings mapsApiKey you api key that you created google charts setOnLoadCallback drawChart function drawChart var data google visualization arrayToDataTable Lat Long Name Mumbai Pune Powai var map new google visualization Map document getElementById map div map draw data showTooltip true showInfoWindow true lt script gt lt head gt lt body gt lt div id map div style width px height px gt lt div gt lt body gt lt html gt MapController javapackage com example demo controller import org springframework stereotype Controller import org springframework web bind annotation GetMapping Controllerpublic class MapController GetMapping showMap public String index return index Now run the applicationgive urlhttp localhost showMapin browseryou will see result as belowif you want to remove the for development only you must enable billing account 2023-04-24 16:33:46
海外TECH DEV Community Understanding CSS Specificity: What It Is and How It Works https://dev.to/eleftheriabatsou/understanding-css-specificity-what-it-is-and-how-it-works-4dp9 Understanding CSS Specificity What It Is and How It WorksWhen it comes to creating styles for web pages Cascading Style Sheets CSS is the preferred tool of many developers However there is one aspect of CSS that can be a source of confusion specificity Specifically how does CSS determine which style rules will be applied when multiple rules apply to the same element That s where specificity comes into play What is CSS Specificity CSS Specificity refers to the set of rules that determines which CSS rule applies to an element on a web page The specificity of a selector is measured by how detailed it is In general the more specific a rule is the more weight it carries How CSS Specificity is CalculatedSpecificity is calculated based on the number of elements classes IDs and pseudo classes that are contained within a rule The specific order of how the values are defined is important and it goes as follows Inline styles IDs Classes attributes and pseudo classes Elements and pseudo elements In terms of specificity each category carries more weight than the one before it For example id is considered more specific than class which is more specific than element To determine the specificity of a particular rule you add up the number of occurrences of each of these selectors in the rule For example div myclass p font size px This rule applies the font size property to all p elements that are children of an element with class myclass which is in turn a descendant of a div element The CSS specificity of this example is Element selector Class selector Descendant combinator space Total specificity The Four Levels of SpecificityThere are four distinct levels of specificity in CSS The Universal Selector This selector has a specificity of meaning it has no impact on specificity calculations at all It s represented by an asterisk Type Selectors and Pseudo Elements Type selectors apply to elements of a specific type such as div p or a They have a specificity of Pseudo elements before and after can also be included in this category because they aren t technically selectors but do affect specificity They also have a specificity of Class Selectors Attribute Selectors and Pseudo Classes Class selectors begin with a period attribute selectors use brackets and pseudo classes are preceded by a colon They all have a specificity of ID Selectors IDs are selected using a hash and they have the highest specificity level of To put this in perspective consider the following CSS rules menu a specificity main nav a specificity a specificity Here the menu selector has the highest specificity at menu a is more specific than main nav a so its style rules will overrule the other Meanwhile a applies to all elements so its rules will be applied last Specificity and The Use of CombinatorsOne of the things that can make CSS specificity tricky is the use of combinators which are used to combine or relate different elements in a selector The main combinator types are Descendant combinator represented by a space which selects elements that are descendants of the first element Child combinator represented by the greater than symbol gt which selects only direct child elements of the first element Adjacent sibling combinator represented by a plus sign which selects the first sibling immediately following the first element General sibling combinator represented by a tilde which selects all siblings that follow the first element To put this in perspective check out the following examples Descendant combinator adds pointsbody p points Child combinator gt adds pointnav gt ul point Adjacent sibling combinator adds pointh p point General sibling combinator adds pointsh p points It s important to note that combinators can add points to the specificity of a selector but they do not affect the priority of selectors with higher specificity values CSS Specificity with Embedded and Inline StylesCSS specificity can also vary depending on where the styles are defined and how they are defined For example Embedded Styles lt head gt lt title gt CSS Specificity Example lt title gt lt style gt h color red specificity header h color blue specificity lt style gt lt head gt lt body gt lt div id header gt lt h gt CSS Specificity Example lt h gt lt div gt lt body gt Here we have two rules for h tags one with a specificity of and one with a specificity of The header h rule should be more specific and override the h rule but both are defined in a stylesheet embedded within the head section of the HTML document Inline Styles lt body gt lt div id header gt lt h style color green gt CSS Specificity Example lt h gt lt div gt lt body gt In this example the color of the h element is defined within an inline style According to our specificity hierarchy an inline style has a specificity of Therefore it would override any other conflicting styles by default Overriding CSS SpecificityThere are several ways to override CSS specificity rules Here are two common ones Using Importantp color red important specificity text italic color blue specificity In this example the color of all p elements will be red because of the important keyword added to the rule Using Selectorsp paragraph color blue text italic p color red Here all paragraphs with id paragraph will be blue but all paragraphs that are descendants of elements with class text italic will be red Advanced ExamplesAs a general rule selectors to the right have higher specificity than those to the left so a special is more specific than special but less specific than p large special Here are some more examples that illustrate how CSS specificity works What is the color of the paragraph in each example Example lt p class red gt I m a red paragraph lt p gt lt style gt p red color red red color blue lt style gt The paragraph element will have red text as the CSS selector red is more specific than the class selector p red The p red selector has a specificity of as class selectors have ten points and the element selector has one Example lt div gt lt p id green gt I m a green paragraph lt p gt lt div gt lt style gt div green color green green color blue lt style gt In this example the paragraph element will have green text as the CSS selector div green is more specific than the ID selector green The div green selector has a specificity of while the green selector has a specificity of Here the specific selector div green wins over the less specific ID selector green Tips to RememberHere are tips to remember before start styling your page ️⃣Inline style attributes have a higher specificity value than any other type of selector lt p id my id class my class style color red gt Inline styles win lt p gt In the example above the color of the paragraph will be red even though the ID selector has a higher specificity value ️⃣Pseudo classes and pseudo elements have their own specificity values my class focus point my class before point In the example above both the focus pseudo class and the before pseudo element have a specificity value of point ️⃣Specificity values can be calculated using the specificity npm package or online calculators const getSpecificity require specificity const selectors p my class my id body p nav gt ul h p h p my class focus my class before selectors forEach selector gt console log getSpecificity selector specificity In the example above we can calculate the specificity values of each selector using the specificity npm package By keeping these additional points in mind you can gain a deeper understanding of how specificity works in CSS and how to use it effectively in your code ConclusionCSS specificity can seem complicated at first but it s an essential concept to master for any web developer By understanding how specificity and combinator selectors work you can ensure that your styles are consistently applied to HTML elements without running into specificity conflicts or other issues that can cause your website to display incorrectly With the examples above you can gain a better understanding of how specificity works in practice and how to apply it to your CSS stylesheets Keep practicing and experimenting with CSS specificity and you ll be a pro in no time Resources and ReferencesMDN Web Docs SpecificityCSS Tricks Specifics on CSS SpecificityHello I m Eleftheria devrel and content creator If you liked this article consider sharing it All links Twitter LinkedIn Book a meeting 2023-04-24 16:18:56
海外TECH DEV Community Introduction to Day 2 Kubernetes https://dev.to/aws-builders/introduction-to-day-2-kubernetes-5255 Introduction to Day KubernetesOver the years I have shared several blog posts about Kubernetes What are Containers and Kubernetes Modern Cloud deployment and usage Introduction to Container Operating Systems and more Kubernetes became a de facto standard for running container based workloads for both on premise and the public cloud but most organizations tend to fail on what is referred to as Day Kubernetes operations In this blog post I will review what it means Day Kubernetes and how to prepare your workloads for the challenges of Day operations Ready Set Go In the software lifecycle or the context of this post the Kubernetes lifecycle there are several distinct stages Day Planning and DesignIn this stage we focus on designing our solution application and underlying infrastructure understanding business needs budget required skills and more For the context of this post let us assume we have decided to build a cloud native application made of containers deployed on top of Kubernetes Day Configuration and DeploymentIn this stage we focus on deploying our application using the Kubernetes orchestrator and setting up the configurations number of replicas public ports auto scale settings and more Most organizations taking their first steps deploying applications on Kubernetes are stacked at this stage They may have multiple environments such as Dev Test UAT and perhaps even production workloads but they are still on Day Day OperationsMature organizations have reached this stage This is about ongoing maintenance observability and continuous improvement of security aspects of production workloads In this blog post I will dive into Day Kubernetes Day Kubernetes challengesBelow are the most common Kubernetes challenges ObservabilityManaging Kubernetes at a large scale requires insights into the Kubernetes cluster s It is not enough to monitor the Kubernetes cluster by collecting performance logs errors or configuration changes such as Nodes Pods containers etc We need to have the ability to truly understand the internals of the Kubernetes cluster from logs metrics etc be able to diagnose the behavior of the Kubernetes cluster not just performance issues but also debug problems detect anomalies and hopefully be able to anticipate problems before they affect customers Prefer to use cloud native monitoring and observability tools to monitor Kubernetes clusters Without proper observability we will not be able to do root cause analysis and understand problems with our Kubernetes cluster or with our application deployed on top of Kubernetes Common tools for observability Prometheus An open source systems monitoring and alerting toolkit for monitoring large cloud native deployments Grafana An open source query visualization and alerting tool resource usage built in and customized metrics alerts dashboards log correlation etc OpenTelemetry A collection of open source tools for collecting and exporting telemetry data metrics logs and traces for analyzing software performance and behavior Additional references for managed services Amazon Managed GrafanaAmazon Managed Service for PrometheusAWS Distro for OpenTelemetry Security and GovernanceOn the one hand it is easy to deploy a Kubernetes cluster in private mode meaning the API server or the Pods are on an internal subnet and not directly exposed to customers On the other hand many challenges in the security domain need to be solved Secrets Management A central and secure vault for generating storing retrieving rotating and eventually revoking secrets instead of hard coded static credentials inside our code or configuration files Access control mechanisms Ability to control what persona either human or service account has access to which resources inside the Kubernetes cluster and to take what actions using RBAC Role based access control mechanisms Software vulnerabilities Any vulnerabilities related to code from programming languages such as Java PHP NET NodeJS etc use of open source libraries with known vulnerabilities to vulnerabilities inside Infrastructure as Code such as Terraform modules Hardening Ability to deploy a Kubernetes cluster at scale using secured configuration such as CIS Benchmarks Networking Ability to set isolation between different Kubernetes clusters or even between different development teams using the same cluster not to mention multi tenancy where using the same Kubernetes platform to serve different customers Additional References Securing the Software Supply Chain in the CloudOPA Open Policy Agent GatekeeperKyverno Kubernetes Native Policy ManagementFoundational Cloud Security with CIS BenchmarksAmazon EKS Best Practices Guide for Security Developers experienceMature organizations have already embraced DevOps methodologies for pushing code through a CI CD pipeline The entire process needs to be done automatically and without direct access of developers to production environments for this purpose you build break glass mechanisms for the SRE teams The switch to applications wrapped inside containers allowed developers to develop locally or in the cloud and push new versions of their code to various environments such as Dev Test and Prod Integration of CI CD pipeline together with containers allows organizations to continuously develop new software versions but it requires expanding the knowledge of developers using training The use of GitOps and tools such as Argo CD allowed a continuous delivery process for Kubernetes environments To allow developers the best experience you need to integrate the CI CD process into the development environment allowing the development team the same experience as developing any other application as they used to do in the on premise for legacy applications which can speed the developer onboarding process Additional References GitOps What is it all about Argo CD Declarative GitOps CD for KubernetesContinuous Deployment and GitOps delivery with Amazon EKS Blueprints and ArgoCD StorageAny Kubernetes cluster requires persistent storage whether organizations choose to begin with an on premise Kubernetes cluster and migrate to the public cloud or provision a Kubernetes cluster using a managed service in the cloud Kubernetes supports multiple types of persistent storage from object storage such as Azure Blob storage or Google Cloud Storage block storage such as Amazon EBS Azure Disk or Google Persistent Disk or file sharing storage such as Amazon EFS Azure Files or Google Cloud Filestore The fact that each cloud provider has its implementation of persistent storage adds to the complexity of storage management not to mention a scenario where an organization is provisioning Kubernetes clusters over several cloud providers To succeed in managing Kubernetes clusters over a long period knowing which storage type to use for each scenario requires storage expertise High AvailabilityHigh availability is a common requirement for any production workload The fact that we need to maintain multiple Kubernetes clusters for example one cluster per environment such as Dev Test and Prod and sometimes on top of multiple cloud providers make things challenging We need to design in advance where to provision our cluster s thinking about constraints such as multiple availability zones and sometimes thinking about how to provision multiple Kubernetes clusters in different regions while keeping HA requirements configurations secrets management and more Designing and maintaining HA in Kubernetes clusters requires a deep understanding of Kubernetes internals combined with knowledge about specific cloud providers Kubernetes management plane Additional References Designing Production Workloads in the CloudAmazon EKS Best Practices Guide for Reliability Cost optimizationCost is an important factor in managing environments in the cloud It can be very challenging to design and maintain multiple Kubernetes clusters while trying to optimize costs To monitor cost we need to deploy cost management tools either the basic services provided by the cloud provider or third party dedicated cost management tools For each Kubernetes cluster we need to decide on node instance size amount of CPU Memory and over time we need to review the node utilization and try to right size the instance type For non production clusters such as Dev or Test we need to understand from the cloud vendor documentation what are our options to scale the cluster size to the minimum when not in use and be able to spin it back up when required Each cloud provider has its pricing options for provisioning Kubernetes clusters for example we might want to choose reserved instances or saving plans for production clusters that will be running while for temporary Dev or Test environment we might want to choose Spot instances and save cost Additional References Cost optimization for Kubernetes on AWS steps to bringing Kubernetes costs in line Strategies for Kubernetes Cost Reduction Knowledge gapRunning Kubernetes clusters requires a lot of knowledge From the design provision and maintenance usually done by DevOps or experienced cloud engineers to the deployment of new applications usually done by development teams It is crucial to invest in employee training in all aspects of Kubernetes Constant updates using vendor documentation online courses blog posts meetups and technical conferences will enable teams to gain the knowledge required to keep up with Kubernetes updates and changes Additional References Kubernetes BlogAWS Containers Blog Third party integrationKubernetes solve part of the problems related to container orchestration As an open source solution it can integrate with other open source complimentary solutions from monitoring security and governance cost management and more Every organization might wish to use a different set of tools to achieve each task relating to the ongoing maintenance of the Kubernetes cluster or for application deployment Selecting the right tools can be challenging as well due to various business or technological requirements It is recommended to evaluate and select Kubernetes native tools to achieve the previously mentioned tasks or resolve the mentioned challenges SummaryIn this blog post I have reviewed the most common Day Kubernetes challenges I cannot stress enough the importance of employee training in deploying and maintaining Kubernetes clusters It is highly recommended to evaluate and look for a centralized management platform for deploying monitoring using cloud native tools and securing the entire fleet of Kubernetes clusters in the organization Another important recommendation is to invest in automation from policy enforcement to application deployment and upgrade as part of the CI CD pipeline I recommend you continue learning and expanding your knowledge in the ongoing changed world of Kubernetes About the AuthorEyal Estrin is a cloud and information security architect the owner of the blog Security amp Cloud and the author of the book Cloud Security Handbook with more than years in the IT industry Eyal is an AWS Community Builder since You can connect with him on Twitter and LinkedIn 2023-04-24 16:08:45
海外TECH DEV Community Consistency: my (Web) DEV Blog Series https://dev.to/ingosteinke/consistency-my-dev-blog-series-557d Consistency my Web DEV Blog SeriesMy understanding of consistency is not to reward quantity but rather create and emphasize consistent structures links and learning paths Quantity Quality and MeaningWhile GitHub s contribution count calendar looks nice and might help our motivation that s exactly the kind of consistency in the sense of persistence that doesn t help me make sense of what I m doing and where I m going Using series can be very helpful especially when you re interested in many different topics and have side projects progressing slowly over a couple of years A Roadmap into the UnknownMuch like a subscription to a gym or dancing lessons a professional training curriculum or sequels to a film or novel these are stages on the journey giving us an idea where to go despite the uncertainties of our destiny Road sign Happy journey of life is long and the pat h unknown Series of my Web Developer JourneyI have been following fellow developers series and put together a long list of bookmarks and reading list excerpts in the past Now I will show how I use series to structure my own content and develop a road map for my upcoming developer journey DEV Bookmarks Reading List Excerpts from Ingo Steinke・Nov ・ min read writing devjournal webdev What s next in CSS What s next in CSS has been my developer journal exploring the new possibilities of style sheets in the early s After having been restricted to a narrow technological focus as an employee and frustrated about styled React components in a long running project this helped me rediscover frontend development and professional satisfaction Apart from the notable CSS has parent selectors I explored aspect ratio wide gamut colors container queries and several other new and practical CSS features CSS has parent selectors Ingo Steinke・Dec ・ min read css webdev todayilearned javascript Learning in public and building a Preact AppMaybe the best examples for long running side projects are both my way to getting certified as a Shopware Developer two years after first enrolling and paying for the training and my ambitious quest for the right way to build a full stack application using JavaScript or TypeScript Learning in publicBuilding a Reading List web app with Node Preact and Tailwind CSS Pragmatic Quality Assurance for Lazy DevelopersAnother ambitious goal seldom to put into practice is test driven development so I tried to explore a more pragmatic approach instead and created my blog series about pragmatic quality assurance How to fix Frontend Tests as a lazy developer Ingo Steinke・Dec ・ min read testing webdev programming tutorial Using WordPress as a DeveloperAnother there must be a way to use this technology in a better way I have been using WordPress for about two decades now and I am quite unhappy about the recent updates although I see the value that they were supposed to bring to non tech savvy users Using WordPress as a Developer I try to describe and solve the problems arising from incompatible plugins and the many misfeatures of the Gutenberg block editor Constructive CriticismHaving had many reasons to rant I tried to reflect and make sense of my first world problems to find out what s wrong with the way the I like many other web developers have been working in the past Constructive Criticism and Resolutions for Future Content Creation Ingo Steinke・Feb ・ min read watercooler webdev Multimedia Content CreationComing back to a more positive and optimistic perspective I also set out to make a plan to follow up on my ambitious development goals and share my insights with others in different ways There is my old personal weblog Open Mind Culture there is this very blog on DEV to and some other mostly text based platforms like medium Hashnode Substack or Tealfeed and then there are the visual ones I haven t been publishing a lot on Instagram and flickR anymore and I haven t been using YouTube for months but I haven t been at many meetups either so that s definitely something missing until now I will record some video content and I will share what hardware and software I have been using and I will also become more active at meetups and conferences again Follow Up Ingo Steinke s series about Multimedia Content Creation Sustainable Low Waste TechLast but not least my greatest ambition to change the way we use technology didn t resonate with many others until now So maybe it is not a good idea not to feature it on top of this article But time will tell and we can t go back to normal anyway because the old normal has been causing a lot of problems My dev blog post series about sustainable low waste tech is another pragmatic approach much like my series about quality assurance to show and prove that we can do something and that that is better than doing nothing at all Low Waste Tech Reduce Reuse Repair and Donate Ingo Steinke・Mar ・ min read sustainability repair linux lineageos If you re interested in joining me on my journey feel free to follow my blog and leave a comment 2023-04-24 16:07:58
海外TECH Engadget Grimes invites AI artists to use her voice, promising 50 percent royalty split https://www.engadget.com/grimes-invites-ai-artists-to-use-her-voice-promising-50-percent-royalty-split-165659578.html?src=rss Grimes invites AI artists to use her voice promising percent royalty splitCanadian synth pop artist Grimes says AI artists can use her voice without worrying about copyright or legal enforcement “I ll split royalties on any successful AI generated song that uses my voice Same deal as I would with any artist i collab with she tweeted on Sunday “Feel free to use my voice without penalty I have no label and no legal bindings The musician s declaration comes in the wake of streaming platforms removing an AI generated song using simulated voices of Drake and The Weeknd Universal Music Group UMG which represents both artists called for the purge after “Heart on My Sleeve garnered over million listens on TikTok and on Spotify UMG argued that publishing a song trained on its artists voices was “a breach of our agreements and a violation of copyright law Grimes takes a considerably more open approach adding that she has no label or legal bindings “I think it s cool to be fused with a machine and I like the idea of open sourcing all art and killing copyright she added I ll split royalties on any successful AI generated song that uses my voice Same deal as I would with any artist i collab with Feel free to use my voice without penalty I have no label and no legal bindings pic twitter com KIYBuqtー𝔊𝔯𝔦𝔪𝔢𝔰 Grimezsz April This isn t Grimes first time weighing in on AI The artist collaborated with mood music startup Endel to launch an AI generated lullaby app in She was inspired to create “a better baby sleeping situation for her son X ÆA XII In addition she predicted in that generative AI could mean “the end of art human art continuing by saying “Once there s actually AGI Artificial General Intelligence they re gonna be so much better at making art than us once AI can totally master science and art which could happen in the next years probably more like or years In addition to music generative AI is already disrupting numerous industries including visual art writing online media and voiceover work After its sudden arrival ーand rapid improvements ーwithin the past year AI content creation has set off numerous legal ethical and copyright firestorms Unfortunately it will likely worsen before society and copyright laws settle on any consensus In March the US Copyright Office said AI art including music stemming from a text prompt couldn t be copyrighted But it left the issue far from settled as it left the door open to granting copyright protections to works with AI generated elements Grimes offer to split royalties says it would apply to any “successful AI song using her voice leaving some confusion over where that cutoff is Either way she sounds ready to back up the offer with tools artists can use promising “We re making a program that should simulate my voice well but we could also upload stems and samples for ppl to train their own This article originally appeared on Engadget at 2023-04-24 16:56:59
海外科学 NYT > Science The Stealth Campaign That’s Getting Your Kids Hooked on Chess https://www.nytimes.com/2023/04/24/science/chess-games-adolescents.html The Stealth Campaign That s Getting Your Kids Hooked on ChessPandemic boredom and a Netflix mini series “The Queen s Gambit added to the game s sudden popularity But Chess com was also plotting its own moves 2023-04-24 16:04:59
海外TECH WIRED Forget Cars, Green Hydrogen Will Supercharge Crops https://www.wired.com/story/green-hydrogen-scaling-up/ future 2023-04-24 16:06:35
金融 金融庁ホームページ インターネットバンキングによる預金の不正送金事案が多発しています。 https://www.fsa.go.jp/ordinary/internet-bank_2.html 不正送金 2023-04-24 17:00:00
金融 金融庁ホームページ 企業会計審議会総会議事録を公表しました。 https://www.fsa.go.jp/singi/singi_kigyou/gijiroku/soukai/20230407.html 企業会計 2023-04-24 17:00:00
海外ニュース Japan Times latest articles Japanese nationals in Sudan evacuated by Self-Defense Forces plane https://www.japantimes.co.jp/news/2023/04/25/national/sudan-evacuation/ djibouti 2023-04-25 01:33:30
ニュース BBC News - Home CBI hired 'toxic' staff and failed to sack offenders https://www.bbc.co.uk/news/business-65375311?at_medium=RSS&at_campaign=KARANGA consequences 2023-04-24 16:26:16
ニュース BBC News - Home Tucker Carlson leaves Fox News https://www.bbc.co.uk/news/world-us-canada-65379340?at_medium=RSS&at_campaign=KARANGA legal 2023-04-24 16:36:38
ニュース BBC News - Home Tottenham sack interim manager Stellini https://www.bbc.co.uk/sport/football/65365163?at_medium=RSS&at_campaign=KARANGA mason 2023-04-24 16:54:37
ニュース BBC News - Home TikToker and mother 'killed men in plot to hide affair' https://www.bbc.co.uk/news/uk-england-leicestershire-65342628?at_medium=RSS&at_campaign=KARANGA hears 2023-04-24 16:02:44
ニュース BBC News - Home Three teenagers killed in crash in Shipston-on-Stour named https://www.bbc.co.uk/news/uk-england-coventry-warwickshire-65378201?at_medium=RSS&at_campaign=KARANGA namedthe 2023-04-24 16:34:13
ニュース BBC News - Home Sudan: How do countries evacuate people from a war zone? https://www.bbc.co.uk/news/uk-65377281?at_medium=RSS&at_campaign=KARANGA military 2023-04-24 16:43:39
ニュース BBC News - Home Illegal Migration Bill risks breaching human rights obligations, watchdog warns https://www.bbc.co.uk/news/uk-politics-65376793?at_medium=RSS&at_campaign=KARANGA international 2023-04-24 16:03:18
ビジネス ダイヤモンド・オンライン - 新着記事 TikTok禁止の是非、米有権者の年齢・党派で温度差=WSJ調査 - WSJ発 https://diamond.jp/articles/-/322044 tiktok 2023-04-25 01: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件)