投稿時間:2023-04-13 05:29:39 RSSフィード2023-04-13 05:00 分まとめ(31件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
AWS AWS Big Data Blog Amazon EMR on EKS widens the performance gap: Run Apache Spark workloads 5.37 times faster and at 4.3 times lower cost https://aws.amazon.com/blogs/big-data/amazon-emr-on-eks-widens-the-performance-gap-run-apache-spark-workloads-5-37-times-faster-and-at-4-3-times-lower-cost/ Amazon EMR on EKS widens the performance gap Run Apache Spark workloads times faster and at times lower costAmazon EMR on EKS provides a deployment option for Amazon EMR that allows organizations to run open source big data frameworks on Amazon Elastic Kubernetes Service Amazon EKS With EMR on EKS Spark applications run on the Amazon EMR runtime for Apache Spark This performance optimized runtime offered by Amazon EMR makes your Spark jobs run fast … 2023-04-12 19:27:03
AWS AWS Security Blog AWS Security Profile: Matt Luttrell, Principal Solutions Architect for AWS Identity https://aws.amazon.com/blogs/security/aws-security-profile-matt-luttrell-principal-solutions-architect-for-aws-identity/ AWS Security Profile Matt Luttrell Principal Solutions Architect for AWS IdentityIn the AWS Security Profile series I interview some of the humans who work in Amazon Web Services Security and help keep our customers safe and secure In this profile I interviewed Matt Luttrell nbsp Principal Solutions Architect for AWS Identity How long have you been at AWS and what do you do in your current role … 2023-04-12 19:23:43
AWS AWS Building pathways to accelerate the move to the cloud | Amazon Web Services https://www.youtube.com/watch?v=Ae553QJZrUo Building pathways to accelerate the move to the cloud Amazon Web ServicesAmdocs and AWS explore the key drivers and requirements from telecom operators and CSPs that define the next steps in the collaboration between both companies Looking at customer use cases of telco transformation Shimie Hortig and Adolfo Hernandez discuss working backwards from customers such as PPF T Mobile and others to support their adoption of cloud to unlock business success Shimie Hortig President Americas Group Amdocs Adolfo Hernandez Vice President Telecom Industry AWS Learn more at Subscribe More AWS videos More AWS events videos Do you have technical AWS questions Ask the community of experts on AWS re Post ABOUT AWSAmazon Web Services AWS is the world s most comprehensive and broadly adopted cloud platform offering over fully featured services from data centers globally Millions of customers ーincluding the fastest growing startups largest enterprises and leading government agencies ーare using AWS to lower costs become more agile and innovate faster telecom amdocs telco cloud telecom telecommunications CSP AWS AmazonWebServices CloudComputing 2023-04-12 19:15:52
AWS AWS Security Blog AWS Security Profile: Matt Luttrell, Principal Solutions Architect for AWS Identity https://aws.amazon.com/blogs/security/aws-security-profile-matt-luttrell-principal-solutions-architect-for-aws-identity/ AWS Security Profile Matt Luttrell Principal Solutions Architect for AWS IdentityIn the AWS Security Profile series I interview some of the humans who work in Amazon Web Services Security and help keep our customers safe and secure In this profile I interviewed Matt Luttrell nbsp Principal Solutions Architect for AWS Identity How long have you been at AWS and what do you do in your current role … 2023-04-12 19:23:43
python Pythonタグが付けられた新着投稿 - Qiita DeepL API × Python でコピーした英文を自動翻訳 https://qiita.com/kenshin-627/items/2e58381b504f72147a68 deepl 2023-04-13 04:09:13
Ruby Rubyタグが付けられた新着投稿 - Qiita スクール通学中、もしくは卒業したばかりの方への共有 https://qiita.com/atsushi_1995/items/4fce471f65e1863c0593 通学 2023-04-13 04:12:49
Ruby Railsタグが付けられた新着投稿 - Qiita スクール通学中、もしくは卒業したばかりの方への共有 https://qiita.com/atsushi_1995/items/4fce471f65e1863c0593 通学 2023-04-13 04:12:49
海外TECH Ars Technica Here’s the tech used to create a nearly 20-foot-tall Donkey Kong cabinet https://arstechnica.com/?p=1931094 adapters 2023-04-12 19:21:37
海外TECH MakeUseOf 7 Things to Try When the Epic Games Launcher Fails to Send a Security Code on Windows https://www.makeuseof.com/epic-games-launcher-fails-security-code-windows/ Things to Try When the Epic Games Launcher Fails to Send a Security Code on WindowsIs the Epic Games Launcher not sending a security code Sometimes the problem is on Epic s side but sometimes it s Windows fault 2023-04-12 19:15:16
海外TECH DEV Community Design Patterns: Write modular and Concise Code https://dev.to/lovepreetsingh/design-patterns-write-modular-and-concise-code-fj2 Design Patterns Write modular and Concise CodeIn earlier post we discussed about two patterns Strategy and Observer Pattern In your daily use you ll mostly come across Strategy and Factory Pattern Observer pattern is more use case specifically But today we ll take other two most important design patterns i e Factory and Decorator pattern Yes you read right If your code design structure is bad it means you are not a well behaved person Now the point is you don t need to remember all the design patterns out there in the market We ll cover four patterns in total and will move on to Designing the real world problems like Parking Lot SystemInstagram DesignNetflix Low level design and more Factory Design PatternComing to the Factory design pattern It is a kind of factory which produces products and return to us In more technical terms let s take an example of a Logistics Platform Let s say you started a Logistics company that is a platform In the start you only support delivery by Truck and you have defined a Truck class which handles the delivery through the truck Now in future our company got bigger and we are getting demand to deliver using ships Pretty good news for the company right But for the developers it might not be a good news Because to add one method of delivery we need to change a large chunk of code Now We created the design of our code like Now we can get different implementations from the factory as per our need In future whenever we need to add new delivery method we just have to implement the interface and can add functionality further This is the most common pattern that you will come across in your day to day developmentpublic interface Transport public void deliver public class Truck implements Transport private String truckType Override public void deliver Delivery by Truck public class Ship implements Transport private String shipType Override public void deliver Delivery by Ship Here you can see to add new method of delivery we just have to implement the interface Let s take an another great example Here we have created one factory called Dialog which returns different buttons depending on the use case Either it can return widows or linux button This factory kept extendable so that we can further extent it to make Windows specific dialog and linux specific dialog Let s discuss Decorator PatternDecorator is a pattern which is used to add features on top of something Let say there are two Pizzas Cheesy Seven PizzaMargherita PizzaNow here we want to add decorate the pizzas with extra cheese and toppings Then there will be pizzas like Margherita with extra cheese Cheesy Seven Pizza with extra cheese and stuffing So it is like adding features on top of some entities Here decorator pattern comes into play It is a pattern to add additional functionality to the existing entities without altering their structure It is a wrapper on top of some classes Let s see an example Here you can see we have a Shape interface and two concrete classes Circle and Rectangle Now someone wants to decorate the Circle and Rectangle with Red color So instead of extending individual shape we defined a decorator Decorator extends the Shape and have a shape included So it has two relationships has a Relation Has an object of shape is a Relation extending the Shape Object Now we can extend decorator to define different decorators on top of any shape In the below code example which can be seen as analogy to the above example of Shape we have Ice Cream Shape and two concrete classes ChocolateIceCream Circle and ButterScotch Icecream Rectangle and a Icecream decorator which is extended by two classes which are RainbowSprinklesDecorator Read Color decorator in the earlier example ChocolateSyrupDecorator Other decorator public abstract class Icecream String description String getDescription return description abstract int cost public class ChocolateIceCream extends Icecream Override String getDescription return Chocolate Override int cost return public class ButterScotch extends Icecream Override String getDescription return Butter Scotch Override int cost return public abstract class IceCreamDecorator extends Icecream private Icecream icecream abstract int cost public class RainbowSprinklesDecorator extends IceCreamDecorator Icecream icecream RainbowSprinklesDecorator Icecream icecream this icecream icecream Override String getDescription return icecream getDescription with Rainbow Sprinkles Override int cost return icecream cost public class ChocolateSyrupDecorator extends IceCreamDecorator Icecream icecream ChocolateSyrupDecorator Icecream icecream this icecream icecream Override String getDescription return icecream getDescription with Chocolate Syrup Override int cost return icecream cost public class Customer public static void main String args Icecream icecream new ButterScotch icecream new RainbowSprinklesDecorator new ChocolateSyrupDecorator icecream print icecream Now you know How you can make your code modular and scalable In our next series We will be designing A Parking Lot SystemInstagram and much more Follow on Twitter for more updates and daily learnings 2023-04-12 19:07:14
海外TECH Engadget Sure, 'Max' sounds dumb, but HBO Max needed a reboot https://www.engadget.com/max-hbo-max-rebrand-analysis-194800553.html?src=rss Sure x Max x sounds dumb but HBO Max needed a rebootThere are many things I think of when I hear the name Max There s Max Headroom the s AI icon that s been on my mind a lot lately Mad Max Max Payne Every friend I ve ever had named Max whose names I ve always been jealous of Even Homer Simpson s alternate persona Max Power But there s no universe where I associate Max with HBO even though we ve been living with HBO Max for years HBO was always the dominant part of that name whereas Max felt like a vestigial remnant from its sister network Cinemax Warner Bros So I m sure that many viewers will be surprised to learn that HBO Max will be rebranded as Max on May rd Warner Bros CEO David Zaslav who spearheaded the billion merger between WB and his previous company Discovery announced the new service during a media event this morning It s been a year since Zaslav finalized that merger and announced his intentions to combine each network s content And given the increasingly volatile world of streaming media he likely had to move quickly But the rebranding seems like a missed opportunity to align the new service with something people already know and love Now to be clear Zaslav s desire to build something new makes sense HBO Max s May launch was notoriously rocky so much so that it led to a round of executive firings HBO Max was a blatant attempt to catch up with Disney which hit million subscribers just a day after its debut But it couldn t compete with Disney s seemingly limitless library of content A month after HBO Max arrived AT amp T TimeWarner s owner at the time said the service only had million active users The company tried to make it seem more popular by saying it had million wholesale subscribers but those were mostly existing HBO customers who had never touched the HBO Max app As a relatively new Warner Bros leader Zaslav likely wanted to make a mark with a service of his very own Media executives just can t help themselves remember Jeffrey Katzenberg s Quibi So long HBO Max hello something that combines HBO s prestigious content with Discovery s vast library of unscripted reality shows During today s media event Warner Bros executives stressed that the company wanted to highlight HBO s world renowned branding ー HBO is not TV HBO is HBO someone proclaimed boldly But they also hinted that the company didn t want to stuff too much into HBO as a concept I also bet that Zaslav and crew talked to plenty of advisors and focus groups who made it clear that HBO would never be considered as family friendly as Disney A cautious parent may not want to subscribe to an HBO service even if it was the only way to watch a new Discovery series for kids As one WB executive pointed out the company used to see double digit shares of kids programming across their many networks but that s virtually disappeared in the streaming era With the Max refresh Warner Bros is trying to fix many of HBO Max s underlying problems The company says it s aiming to increase engagement having a ton of new content helps enhance retention strengthen performance and optimize monetization A carousel of personalized recommendations should help to surface content users may ignore and WB says Max will also be able to alert people if their subscription payments fail These are basic features for any modern subscription service so it s shocking to learn that HBO Max couldn t manage them on its own Of course WB is also trying to optimize monetization by raising the subscription cost for K viewers If you want to see Game of Thrones or the upcoming Flash movie in K you ll need to spend more for Max s Ultimate tier That s similar to Netflix s K strategy so it s not entirely surprising but it s still annoying nbsp Let me be truly cynical It doesn t really matter what Max is called We re awash in terribly named streaming services like Peacock and Paramount It would have been nice to see WB highlight one of its most prominent properties but lopping off the first half of HBO Max probably makes more sense than trying to hype up another ridiculous media name Hulu somehow made it work but Quibi will forever sound dumb nbsp No matter what it s called we ll still rush to Max to catch the latest episode of Succession or The Last of Us In this era of streaming networks dumping mountains of content on us it s somewhat refreshing to have premium shows airing weekly That gives us time to truly absorb major events like the most recent Succession shocker and space to anticipate what comes next Ultimately that s HBO s superpower and Zaslav knows it When combined with the onslaught of cheap and addictive content from Discovery he might be able to turn Max into a true Disney competitor This article originally appeared on Engadget at 2023-04-12 19:48:00
海外TECH Engadget Philips' new 'Ultra Efficient' LED bulbs use 40 percent less energy https://www.engadget.com/philips-new-ultra-efficient-led-bulbs-use-40-percent-less-energy-193033312.html?src=rss Philips x new x Ultra Efficient x LED bulbs use percent less energyLED light bulbs are already supposed to be energy efficient but Signifiy thinks it can improve on the formula The company has released Philips Ultra Efficient LED bulbs that as the name implies use percent less energy than the brand s usual LED options The advanced LEDs and optics reduce the yearly energy cost to between cents and per bulb Signify claims For context a Philips Ultra Definition W bulb uses an estimated cents each year The new lights might also be helpful if you re trying to minimize waste Signify estimates that the Ultra Efficient line has an average lifespan of years or more than three times the usage of Philips standard LED bulbs There s a real chance this lighting might outlive you The Philips range is available now as a Walmart exclusive It starts at for a W equivalent A bulb for two in soft white and daylight variants A W BR bulb costs while a W A light is You re paying considerably more than you would for standard LEDs ーa four pack of Philips Ultra Definition W bulbs costs However Signify is clearly betting that the lower energy costs and increased longevity will ultimately save you money on top of being kinder to the environment The catch of course is that these aren t smart bulbs You ll need to live with higher energy consumption if you insist on Philips Hue and don t want to use smart plugs If that isn t an obstacle though you may see your energy bills shrink if you replace enough bulbs around your home This article originally appeared on Engadget at 2023-04-12 19:30:33
海外TECH Engadget Amazon was responsible for more than half of all 'serious' US warehouse injuries last year, report finds https://www.engadget.com/amazon-was-responsible-for-more-than-half-of-all-serious-us-warehouse-injuries-last-year-report-finds-191753314.html?src=rss Amazon was responsible for more than half of all x serious x US warehouse injuries last year report findsNearly two years after Jeff Bezos said Amazon would spend million to improve workplace safety a coalition of labor unions claims the company was responsible for percent of all serious warehouse injuries recorded in the US last year In a report released on Wednesday PDF link the Strategic Organizing Center SOC said data collected by the US Occupational Safety and Health Administration OSHA shows Amazon warehouse workers continue to suffer injuries more frequently than their non Amazon counterparts It also claims those injuries were often more severe In Amazon reported a total of recordable injuries Per the SOC those are incidents that require a worker to either take time off from their regular job or seek medical treatment beyond first aid Of those injuries percent were those the organization considers serious either because Amazon had to temporarily reassign the worker to a less strenuous role or give them time off to recover After crunching the data the SOC found Amazon s total injury rate in was injuries per workers Comparatively that s a better rate than the injuries per workers the company recorded last year and the staggering nine injuries per workers the SOC says Amazon managed in but the organization contends the data shows Amazon “failed to make meaningful progress on worker safety Specifically the SOC points to the rate at which Amazon workers suffered “serious injuries At per workers the organization says Amazon s serious injury rate is percent higher than the one the company recorded in and more than double the rate seen at non Amazon warehouses last year Put another way the SOC claims more than half of all serious US warehouse injuries in occured at Amazon despite the company only employing percent of all US warehouse workers last year “For a corporation that prides itself on moving quickly and decisively informed by sophisticated data analysis Amazon s ongoing failure to provide safe working conditions raises major questions about whether the company s management is serious about becoming earth s safest place to work or whether it continues to put profits before the safety of the very people responsible for its success the report states Amazon disputes the Strategic Organizing Center s interpretation of the data it shared with the Occupational Safety and Health Administration Specifically it takes issue with SOC s use of “serious injury rate noting it s not an official OSHA metric The agency does track when a workplace injury requires a worker to either change roles or take time off However Amazon contends that metric known as DART or “days away restricted or transferred rates is not shorthand for a serious injury It claims DART metrics often incorporate “relatively minor injuries Instead the company says critics should look at its recordable injuries and how long workers have taken off to recover from workplace incidents When you look at those numbers Amazon says the data shows it has made significant progress in recent years “The safety and health of our employees is and always will be our top priority and any claim otherwise is inaccurate It s unsurprising that a self interested group like this would work to twist the facts to paint an inaccurate picture While we know we have more work to do the truth is clearly outlined in our safety report and we encourage anyone to both tour our facilities and read our safety report Amazon spokesperson Kelly Natel told Engadget “That report shows that since the recordable injury rate across our network has dropped more than percent and the lost time injury rate has dropped more than percent We re proud the progress made by our team and we ll continue working hard together to keep getting better every day This article originally appeared on Engadget at 2023-04-12 19:17:53
ニュース BBC News - Home Help for Heroes: Royals pay tribute after death of charity's founder https://www.bbc.co.uk/news/uk-england-wiltshire-65258234?at_medium=RSS&at_campaign=KARANGA parry 2023-04-12 19:54:57
ニュース BBC News - Home Kenya-UK defence deal: MPs amend rule over prosecuting UK troops https://www.bbc.co.uk/news/world-africa-65257083?at_medium=RSS&at_campaign=KARANGA kenya 2023-04-12 19:20:52
ニュース BBC News - Home European Artistic Gymnastics Championships: GB win first-ever team gold https://www.bbc.co.uk/sport/gymnastics/65258199?at_medium=RSS&at_campaign=KARANGA championships 2023-04-12 19:43:45
ニュース BBC News - Home Joe Biden hails Northern Ireland young people on Belfast visit https://www.bbc.co.uk/news/uk-northern-ireland-65208880?at_medium=RSS&at_campaign=KARANGA future 2023-04-12 19:43:01
ビジネス ダイヤモンド・オンライン - 新着記事 大正製薬「PBR1倍割れ」、決算好調でも株式市場で評価されない根本的な理由 - 医薬経済ONLINE https://diamond.jp/articles/-/321107 online 2023-04-13 04:50:00
ビジネス ダイヤモンド・オンライン - 新着記事 “中国物流御三家”の幹部が語る「中国の生産拠点を撤退」の可能性が高い企業の条件 - 物流専門紙カーゴニュース発 https://diamond.jp/articles/-/321038 “中国物流御三家の幹部が語る「中国の生産拠点を撤退」の可能性が高い企業の条件物流専門紙カーゴニュース発年月、わが国と国交正常化周年を迎えた中国。 2023-04-13 04:45:00
ビジネス ダイヤモンド・オンライン - 新着記事 サントリーの新缶コーヒー、「炎上覚悟」で開発したとしか思えない理由 - 情報戦の裏側 https://diamond.jp/articles/-/321166 bosscaffeine 2023-04-13 04:40:00
ビジネス ダイヤモンド・オンライン - 新着記事 年金支給開始年齢「再度引き上げ」は必至、やはり“虚構”の年金財政 - 野口悠紀雄 新しい経済成長の経路を探る https://diamond.jp/articles/-/321165 引き上げ 2023-04-13 04:35:00
ビジネス ダイヤモンド・オンライン - 新着記事 6兆円超の「雇用調整助成金」どう使われた?コロナ特例終了で高まる倒産リスク - 倒産のニューノーマル https://diamond.jp/articles/-/321163 兆円超の「雇用調整助成金」どう使われたコロナ特例終了で高まる倒産リスク倒産のニューノーマルコロナ禍で実施された雇用調整助成金雇調金の特例措置が今年月末で終了した。 2023-04-13 04:30:00
ビジネス ダイヤモンド・オンライン - 新着記事 「キャッシュレス貧乏予備軍」の危険行動、絶対やってはいけない3つのこと - 老後のお金クライシス! 深田晶恵 https://diamond.jp/articles/-/321162 2023-04-13 04:25:00
ビジネス ダイヤモンド・オンライン - 新着記事 山口もえが語る「育休中リスキリング」のリアル、団塊ジュニア“同級生”原田曜平が聞く - ニュース3面鏡 https://diamond.jp/articles/-/320854 山口もえが語る「育休中リスキリング」のリアル、団塊ジュニア“同級生原田曜平が聞くニュース面鏡タレントの山口もえさんと、芝浦工業大学教授でマーケティングアナリストの原田曜平さんには「同じ幼稚園の同級生」という意外なつながりがある。 2023-04-13 04:20:00
ビジネス ダイヤモンド・オンライン - 新着記事 領収書が経費で落ちない恐れ、「インボイス制度」で会社員が注意すべきこと - ニュース3面鏡 https://diamond.jp/articles/-/320297 個人事業主 2023-04-13 04:15:00
ビジネス ダイヤモンド・オンライン - 新着記事 不動産投資の初心者でも「格段に損しにくい」たった一つの方法とは - ビッグデータで解明!「物件選び」の新常識 https://diamond.jp/articles/-/321135 不動産投資の初心者でも「格段に損しにくい」たった一つの方法とはビッグデータで解明「物件選び」の新常識社会に出たばかりの若者などが、賃貸住宅や実家に住んだまま、自宅を購入する前に不動産投資をしてしまうケースがある。 2023-04-13 04:10:00
ビジネス ダイヤモンド・オンライン - 新着記事 お礼・お詫びメールがそっけないと怒らせる人は「このたび」の使い方がまずかった - ニュースな本 https://diamond.jp/articles/-/320669 お礼・お詫びメールがそっけないと怒らせる人は「このたび」の使い方がまずかったニュースな本メールは、人によっては大量に受け取ることになります。 2023-04-13 04:05:00
ビジネス 東洋経済オンライン 女性の「東大入学」を要望し続けた姉妹の悲運 最初に門戸を開いたのは東大ではなかった | 学校・受験 | 東洋経済オンライン https://toyokeizai.net/articles/-/661209?utm_source=rss&utm_medium=http&utm_campaign=link_back 久しぶり 2023-04-13 04:50:00
ビジネス 東洋経済オンライン 「エクセルの達人」が実践する7つの超基本機能  ちょっとした操作なのに、作業効率が爆上がり  | リーダーシップ・教養・資格・スキル | 東洋経済オンライン https://toyokeizai.net/articles/-/665012?utm_source=rss&utm_medium=http&utm_campaign=link_back excel 2023-04-13 04:40:00
ビジネス 東洋経済オンライン 特急つばさや山形新幹線「板谷峠越え」列車の記憶 今も昔も難所、日本の鉄道「三大勾配区間」の1つ | 新幹線 | 東洋経済オンライン https://toyokeizai.net/articles/-/665688?utm_source=rss&utm_medium=http&utm_campaign=link_back 山形新幹線 2023-04-13 04:30:00
IT IT号外 ChatGPTの台頭が世界を変える?perplexityなど各種代替AIの性能比較とコンテンツ無限生成の危険性。チャットジピター https://figreen.org/it/chatgpt%e3%81%ae%e5%8f%b0%e9%a0%ad%e3%81%8c%e4%b8%96%e7%95%8c%e3%82%92%e5%a4%89%e3%81%88%e3%82%8b%ef%bc%9fperplexity%e3%81%aa%e3%81%a9%e5%90%84%e7%a8%ae%e4%bb%a3%e6%9b%bfai%e3%81%ae%e6%80%a7%e8%83%bd/ ChatGPTの台頭が世界を変えるperplexityなど各種代替AIの性能比較とコンテンツ無限生成の危険性。 2023-04-12 19:03:13

コメント

このブログの人気の投稿

投稿時間: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件)