投稿時間:2023-05-16 03:16:23 RSSフィード2023-05-16 03:00 分まとめ(19件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
AWS AWS Database Blog a-tune accelerates their AWS migrations using migration strategy and implementation plans from Amazon Database Migration Accelerator https://aws.amazon.com/blogs/database/a-tune-accelerates-their-aws-migrations-using-migration-strategy-and-implementation-plans-from-amazon-database-migration-accelerator/ a tune accelerates their AWS migrations using migration strategy and implementation plans from Amazon Database Migration AcceleratorAWS launched Amazon Database Migration Accelerator Amazon DMA to accelerate your journey to AWS Databases and Analytics services and achieve cloud adoption benefits such as cost savings and performance improvements In this post we share how the Amazon DMA team helped a tune accelerate their migrations to AWS Databases and Analytics services a tune offers data and … 2023-05-15 17:54:37
AWS AWS Machine Learning Blog Demand forecasting at Getir built with Amazon Forecast https://aws.amazon.com/blogs/machine-learning/demand-forecasting-at-getir-built-with-amazon-forecast/ Demand forecasting at Getir built with Amazon ForecastThis is a guest post co authored by Nafi Ahmet Turgut Mutlu Polatcan Pınar Baki Mehmet İkbal Özmen Hasan Burak Yel and Hamza Akyıldız from Getir Getir is the pioneer of ultrafast grocery delivery The tech company has revolutionized last mile delivery with its “groceries in minutes delivery proposition Getir was founded in and operates in … 2023-05-15 17:53:33
AWS AWS Machine Learning Blog Introducing Amazon Textract Bulk Document Uploader for enhanced evaluation and analysis https://aws.amazon.com/blogs/machine-learning/introducing-amazon-textract-bulk-document-uploader-for-enhanced-evaluation-and-analysis/ Introducing Amazon Textract Bulk Document Uploader for enhanced evaluation and analysisAmazon Textract is a machine learning ML service that automatically extracts text handwriting and data from any document or image To make it simpler to evaluate the capabilities of Amazon Textract we have launched a new Bulk Document Uploader feature on the Amazon Textract console that enables you to quickly process your own set of … 2023-05-15 17:47:22
python Pythonタグが付けられた新着投稿 - Qiita Streamlit を使って論文執筆支援アプリを作った https://qiita.com/bellvine/items/a80567d3417f7aa1b789 streamlit 2023-05-16 02:37:06
Azure Azureタグが付けられた新着投稿 - Qiita ASRでAzure VMの災害対策をする https://qiita.com/k-kimino/items/49f1ae52a09c0598d7bc azure 2023-05-16 02:39:39
技術ブログ Developers.IO SESでバウンスした場合に送信元メールアドレスによってバウンス通知先を変える方法 https://dev.classmethod.jp/articles/tsnote-ses-sns-bounce/ 通知 2023-05-15 17:49:53
技術ブログ Developers.IO IAMロールの「信頼されたエンティティ」のPrincipal要素に覚えのないロールIDが設定されている場合の原因と対処法 https://dev.classmethod.jp/articles/tsnote-iamrole-roleid-oboeganai/ principal 2023-05-15 17:49:04
海外TECH Ars Technica Musk’s Tesla tweets to remain on SEC leash, court rules https://arstechnica.com/?p=1939292 order 2023-05-15 17:15:29
海外TECH DEV Community Amazon CodeWhisperer Demo https://dev.to/jslow421/amazon-codewhisperer-demo-315b Amazon CodeWhisperer DemoAt this point even people living under rocks are probably aware that all things “AI are the soup du jour of the tech world The AI ML revolution that s been going on has produced some Large Language Models LLMs which have done some incredible things Things like passing law school exams completing coding interviews for six figure jobs and making Bing relevant to name just a few This is all exciting but if you re like me you re wondering what you should be doing with all this technology as a software engineer To that end we will take a trip to Amazon s coding companion called Amazon CodeWhisperer The first question we must answer often sounds like “I know how to write code why should I waste my time with an AI code companion Let s discuss a few significant benefits of using a tool like CodeWhisperer Enhanced ProductivityCodeWhisperer has been trained on massive amounts of code This means that when you re trying to solve a problem it has likely seen it or something very similar before and has some ideas on how to help you What this means is that as an engineer you can focus on novel and creative work fostering innovation instead of spending time on boilerplate tasks like Googling how to center a div for the three millionth time ultimately enabling you to solve business problems more effectively Turbocharged LearningMaybe Android just added another official language or you re a backend engineer with a friend with a killer app idea who just needs someone to code some HTML to make it a hit Either way it can be daunting to pick up a new technology while still maintaining your expected level of productivity This is a sleeper candidate for the best feature of a tool like CodeWhisperer The tool knows the language and you know the problem domain So go ahead and rewrite your Android app in Kotlin or tell your friend you re in to help him build Twitter but for bipedal birds CodeWhisperer has your back through the struggle of learning new syntax and keywords Time SavingsLet s face it there are many what I call knucklehead tasks that we have to deal with in our day to day work You may be writing a DTO class calling that repository method for the th time writing a test case or any other relatively simple task This is the area where CodeWhisperer starts to shine through once you re comfortable as the tool will chew through the annoying boilerplate almost without you having to think about it Now I can hear you all screaming into your screens that excellent maxim from Mr Torvalds Talk is cheap show me the code I couldn t agree more Let s make a quick application to demo some of the benefits For the sake of brevity we ll do a short Rust program that will Make a GET request to an APIRetrieve the JSONDeserialize it to a structTell us how many humans are currently in outer spaceFeel free to follow along in your favorite language and IDE Currently CodeWhisperer has the strongest support for Python Java JavaScript TypeScript and C It also supports code generation for Go Rust PHP Ruby Kotlin C C Shell scripting SQL and Scala As for IDEs it supports VSCode and JetBrains at the time of writing PrerequisitesYou ll need a supported IDE VSCode or JetBrains and the AWS Toolkit extension VSCode JetBrains to get started Once you ve set that up we ll open it up by opening the extension menu this will default to your left sidebar if you re on VSCode Expand the CodeWhisperer menu and give Start a click This will open a window asking us how we want to log in I m going to use my AWS Builder ID You can find information about the AWS Builder ID here You ll see a prompt to copy a code and log in or create your AWS Builder ID You re probably familiar with this authorization process already Once the link has opened you see a prompt to log in with your Builder ID or create one Go ahead and go through whichever process is most appropriate for your situation You ll then need to allow the proper permissions for the Toolkit extension Hands on ExampleCongratulations you ve now successfully configured CodeWhispererーtime to get coding Feel free to use any language you like if you re going to follow along We will let CodeWhisperer write almost all the code so choose whichever supported language you want to see We will start when our application shows us our favorite “Hello world output to stdout If you would like a copy of the program I ended up with you can find it here Unless I specifically mention manually modifying things any code written outside of comments or ending braces is all generated by CodeWhisperer The ending braces are essential to note because there are times when CodeWhisperer will continue generating lines until the cows come home so you ll want to use your judgment on when to cut it off Alright So let s see what CodeWhisperer can do The first thing we wanted to do was retrieve a JSON response from an API endpoint Let s write a comment indicating that Send a GET request to and return the response JSON stringWhen we add a new line after our comment CodeWhisperer makes itself known with a suggestion for what it thinks our function signature should look like This output looks ok so we ll hit TAB to insert this suggestion Oh look we have more suggestions That s the URL we want to use Excellent Let s accept the next few and see how CodeWhisperer intends to finish this out Well this looks good at a glance but as we know we will only know if we test it Let s see what CodeWhisperer can do for us here This block above shows us that sometimes you might not get suggestions you can force the suggestion to show up using opt c alt c for my Windows friends as I had to here but once the cobwebs cleared we get some valuable suggestions Let s see how it finishes out my test function Well that s not bad it s certainly what I asked for but it s not what we intended to test Let s reword that comment to indicate we want to know that the string has some value rather than simply checking a type We end up with this and it looks much more promising Let s run it and see what happens Hot dang it passes We have JSON Next we want to deserialize that JSON to a struct that matches For our initial record here s a bit of the JSON structure we re working with Very simple but also niche Let s see what CodeWhisperer does with this I cut this one off as it was more than happy to keep generating fields This miss is understandable The nuances of the specific data we re using are a bit outside the scope of what I thought would work and it s very likely that since we re using this data now it ll get anything related to it correct in the future It did get a lot of the boilerplate stuff right though so simple enough to correct Alright I ll fix that manually since I know the data Then I ll create the struct which will hold the collection of people in space This time I ll provide a bit more data Well this is cool I did need to update the struct name manually but the more information we provide the more accurate the output will be I ll make a mental note of that We have the JSON string and structs so now we are ready to deserialize things Let s write a function that will do that CodeWhisperer is suggesting a comment now too Well this could be cool Is it going to write everything for us Let s see Hmm Well this looks good But of course you know what we need to do next Write a test CodeWhisperer nails it again Doing a unit test for a function that depends on another function isn t great but can we marvel for a second at the fact that CodeWhisperer understood the context of how we were using the data One thing that I did change was the assert statement CodeWhisperer wanted a len check and Clippy a Rust linter prefers the is empty check so we re going with that Otherwise this is all CodeWhisperer s code The test passes you can take my word for it this time So at this point we ve retrieved the JSON and deserialized it into the structs The last thing we want to do is have it output how many people are in space according to our data CodeWhisperer has gotten us this far let s see if it can take us across the finish line Everything looks right I know that at this moment there are ten people in space Let s run it and see what happens Hah Look at that Let s get greedy and ask it to print the names of each person just for fun Once again this passes the smell test Let s run it Check that out Our application does everything we set out to do There were some language specific things in the background we needed to handle ourselves and we fixed the items specific to our data but outside of those we wrote no code ourselves save for a few closing braces That s pretty wild Additional Food For ThoughtI would be remiss if I didn t mention that CodeWhisperer has some features we didn t hit on during this brief demo that are worth discussing First I want to call out that CodeWhisprerer will let you know if you re using code that closely resembles the open source data that it was trained on This great notification helps us avoid improperly copying entire blocks of code from other repositories CodeWhisperer also has built in security scanning to look for OWASP vulnerabilities in your code We didn t test this in our demo because of language support and the oversimple aim If you re using Python Java or JavaScript you can use this feature ConclusionWe ve done a simplistic example program to understand how to leverage CodeWhisperer in our workflows We may be feeling pumped to jump right into our next app Let s take a second to talk about what we should consider with these tools Most importantly remember the Programmer s Oath Specifically remember that you re the engineer and you are ultimately responsible for the code you push Treat everything that CodeWhisperer writes as if it was written by someone you ve never met Trust but verify Additionally always keep a weather eye out for potential security issues in code One thing I ve noticed for example is that some tools have a tendency to suggest very permissive policies in CDK projects Be present when using these tools Lastly we want to understand at least at a high level how tools like CodeWhisperer are trained As we mentioned earlier CodeWhisperer has been trained on massive amounts of valid working code in many different languages The large mix of languages is a big benefit to us as users regardless of our personal language choice because a model trained on many languages actually outperforms a model trained on a single language They can also potentially solve problems in languages that they weren t specifically trained on thanks in part to few shot or even zero shot learning If you re interested in learning more about this there s an Amazon research paper that covers it The training process is complex but learning more about it will better inform your expectations for how these tools will augment your coding practices If you need a place to start on your journey to understand LLMs check out this video With those caveats in mind every software engineer developer architect etc should become familiar with AI tools such as Amazon CodeWhisperer You will reap the benefits of enhanced productivity turbocharged learning and time savings Just based on our simple example above CodeWhisperer helped me complete the solution in about half the time it would normally take For more complex examples I could see the potential for CodeWhisperer to reduce my time requirement by These are rough guesses at time saved and your personal experience will very much depend on your knowledge of the language you re using as well as the specific problem you re working on In any case with these productivity increases and time savings you will spend less time bogged down in the minute details of the code and more time providing value to your customers Also at least for the time being CodeWhisperer is free to use So go check it out and let us know what you think 2023-05-15 17:45:52
海外TECH DEV Community BranchGPT: The AI-Powered Solution to Personalized Branch Names https://dev.to/sourishkrout/branchgpt-the-ai-powered-solution-to-personalized-branch-names-5dmf BranchGPT The AI Powered Solution to Personalized Branch NamesTL DR Yes BranchGPT is an attempt to Tongue in cheek take AI over the top However while its utility is questionable it is enjoyable like a game If that s not for you fair enough You don t have to use it “There are only two hard things in Computer Science Cache invalidation naming things and off by errors Whoever originally coined this quote wasn t particularly exhaustive but undoubtedly speaks the truth It s incredible how seemingly easy tasks turn out to be the hardest Why BranchGPT Experimentation with OpenAI s API led us to experiment with branch naming A repo s branch namespace is global so giving a git branch a descriptive name is no exception Issue trackers often provided shortcuts to generate branch names from JIRA or GitHub issue titles but with questionable success The results are perhaps remarkable for uniformity but often generate comically long names wrapping multiple lines Jump right in with runme branchGPT install via Homebrew or Scoop So what is a good high quality branch name Do they matter since more contextual metadata goes into Pull Requests In my mind that s a wildly subjective question Here are some conventions devs are using The Prolific Prefixer Prefixes come in different flavors Work type description of what goes into a branch or nickname prefix to reduce ambiguity Using a forward slash as a separator is an established convention Some examples admc graph colors seb exp prophet feat replace tink with cryptography chore upgrade deps for next lts chore eslint hotfix prod Using multiple prefixes e g seb experiment prophet is not unheard of The Tireless Terser ‍ ️Ideally just one word but no more than two Examples are fastapi ingress sharing rollups score break gtag fix vanilla demo You get the point Keep it short and straightforward Likely this convention won t scale in a large mono repo and without recycling the same branch name numerous times The Ruthless Referencer 🥷Dependabot loves doing this Stick as much referentially information like JIRA or GitHub issue IDs full titles version numbers etc into the branch name No matter how bulky Humans do it too look at these update breaks score contributor to be consistent with others ENG open vsx stable release CORE retry screen for password recovery flow loops endlessly While the shorter ones are more common folks don t hesitate to generate branch names that easily exceed characters Close to Home is BetterThere are even more However here s the kicker there is no universally best convention to branch names You could argue that the right balance between minimum descriptive not too short and not too long is the way to go However it inevitably depends on your repos team and personal preferences What universally holds is that the best branch names are the ones that feel natural and familiar to you If you had your Pull Requests merged before you might already be recording information in your git log so that a Transformer AI model namely GPT can harness to suggest branch names for you A merge commit is just about perfect see further below to seed the layout of your branches Enter BranchGPTThis is why we ve built this handy integration between your branches and OpenAI s GPT for you Perhaps call it BranchGPT…for no apparent reason Yes I am trying to take AI over the top The idea is simple and surprisingly effective Just enter a free flow description of what you re working on and let BranchGPT come back with some suggestions If you can t think of a good example for testing There s always iamdevloper on Twitter to help you out Tweet here It s May so it s just about the “last call to update the website s footer Drop the loose description into BranchGPT and voilà you ll be presented with a list of suggestions that should ideally look strangely familiar Check out this demo below runme branch will do if you find branchGPT too long By the way runme will prompt you to log in with your GitHub to create an account privacy policy Both length and seb lt description goes here gt feel familiar using my usual layout Adding Some PolishSuppose the suggestions aren t quite ready It s straightforward to toggle the prefix in the branchGPT terminal UI just hit t to toggle prefixes Similarly the e key will transition the selected entry into edit mode to allow putting the final touches on it Toggle prefixes with t and edit the selected entry with e How It WorksUnder the hood BranchGPT processes the context repo s Merge Commits Starting with the configured git users personal merge commits If there aren t any it will fall back to all available merge commits in the repo before using a fixed list The latter will produce suggestions that will feel the least personalized Why Merge Commits Check out the example listing below You will recognize how commit messages encode branch names with GitHub org prefix alongside textual descriptions Just about perfect for seeding data for a GPT prompt backed by OpenAI s curie engine Curie provides a fair tradeoff between capabilities and cost The list is usually longer however shortened for brevityOutside of authentication basic rate limiting pre and post processing and checking all implementation boxes on OpenAI s API guidelines that s it We hope you ll like it The WishlistBranchGPT came out of experimentation and I d consider it alpha software A few things I wish we could have added in this version but time s limited Close the feedback loop on suggestion edits We chose to keep it simple and treat all data as ephemeral A fine tuned model for generic branch suggestions that lack a list of personal repo merge commits Leverage models that derive branch names from code diffs It s too common to come up with a branch name after coding and when ready to create the PRーbeen meaning to look into and other models Choose the GitHub issue to be copied into the prompt from a list of issues assigned to you UX Integration into Runme s VS Code Extension Let us know if this is something you want Experiment with a chat like UX We had built this experiment before the release of chatGPT s APIs Now go ahead and take BranchGPT for a spin Please be a good citizen The APIs are running under our OpenAI account including footing the bill and we intend to continue making BranchGPT available to the community with our best efforts Thank you scoop bucket add stateful on Windows scoop install stateful runme runme branchGPT or brew install stateful tap runme amp amp runme branchGPT on macOS homebrew Full install instructions here Note that runme branch and runme branchGPT are the same Closing ThoughtsWriting this post one question I wish I had more color on Do Merge Commits have a bad rep Most folks I have asked sorted into the Squash amp Merge️ or Rebase amp Merge️ camps Who else appreciates Merge Commits Just me Tell us on Discord or ask about a feature request For more content like this please subscribe to our email updates Hopefully BranchGPT will make you like Merge Commits more 2023-05-15 17:36:14
Apple AppleInsider - Frontpage News Amazon drops prices on M2 MacBook Air, 2023 Mac mini & MacBook Pro, iPads & more https://appleinsider.com/articles/23/05/15/amazon-drops-prices-on-m2-macbook-air-2023-mac-mini-macbook-pro-ipads-more?utm_medium=rss Amazon drops prices on M MacBook Air Mac mini amp MacBook Pro iPads amp moreShoppers looking at the latest MacBook Pro models can snag a loaded inch laptop with an M Max chip GB of memory and TB of SSD storage for only Plus save on a new Mac mini and M MacBook Air Great deals this week on Amazon up to off MacBook Pro inch If a MacBook Pro is too much computer for your needs Apple s M MacBook Air is on sale for in Space Gray a discount off the retail price Amazon also slashed prices on Apple Watches iPads and accessories allowing you to outfit your gear for less Read more 2023-05-15 17:39:12
Apple AppleInsider - Frontpage News Apple seeds second release candidates of iOS 16.5 & iPadOS 16.5 https://appleinsider.com/articles/23/05/15/apple-seeds-second-release-candidates-of-ios-165-ipados-165?utm_medium=rss Apple seeds second release candidates of iOS amp iPadOS Apple has provided the second release candidates of iOS and iPadOS to developers before an expected release this week New betas for iOS and iPadOSDevelopers can obtain the latest betas by joining the beta testing program or updating their devices running beta operating systems through the Apple Developer Center Typically public beta versions become accessible via the Apple Beta Software Program soon after developer releases Read more 2023-05-15 17:29:43
海外TECH Engadget The best video streaming services in 2023 https://www.engadget.com/best-video-streaming-services-133000093.html?src=rss The best video streaming services in The number of video streaming services available has increased dramatically over the past few years as everyone including Apple Disney and ESPN decides they want a piece of the pie The days when Netflix was your only option are long gone now and while that s great for all of us itching to discover our next favorite TV show finding the best streaming service can also be confusing and expensive You re now tasked with figuring out which services have the content you want to watch which fit into your budget which have the most compelling original series movies and documentaries and the best live TV streaming services We at Engadget wanted to make that process easier for you so we ve compiled a list of the best video streaming services you can subscribe to right now with our favorite picks spanning across all content types and budgets Now should you go out and subscribe to all of the services listed here Probably not unless you re a true cord cutter aching for content But these are the services that offer the best bang for your buck regardless of whether you re a live sports buff a classic movie lover or a general streaming enthusiast NetflixCompared to other streaming services no one offers more high quality content at a single price than Netflix Pick any category you can think of and Netflix probably has something that will fit the bill including original programming Plus new content is released every week and as a worldwide service Netflix is consistently adding movies and TV shows from around the globe that can change the viewing experience in ways you may not have considered Are you sure you re not into K Dramas Finnish detective thrillers or British home improvement shows Netflix is available in almost every country on the planet and its app or website runs on most of the devices that connect to the internet Those apps are also some of the most easy to use of any service That doesn t mean it s always simple to choose something to watch but when it comes to swapping profiles or simply picking up where you left off it doesn t get better than this If you re heading off the grid ーor onto a plane ーthen you can easily download most but not all of its content to watch on your iOS or Android device If you somehow don t have Netflix already or someone to share a login with then getting a taste of it is a little more complicated than it used to be Netflix dropped its free trial period in the US a while ago so it s important to have all your information in order before going in to create an account The other thing to keep in mind is that maybe if you ve let your account lapse the service that exists now is very different from what you would ve seen two years ago or five or ten Remaining the dominant player in subscription streaming has required adjustments to stay on top with a changing mix of content and plans to choose from In the US there are four levels of Netflix you can subscribe to All of them include unlimited access to the same content work on the same devices and you can cancel or pause them at any time The Basic with Ads tier costs per month and it s the only option that includes advertisements The difference between Basic per month Standard per month and Premium per month comes down to picture quality and the amount of simultaneous streams allowed With both Basic tiers you can expect p aka DVD quality and only a single stream available If you d like to watch streams in HD and allow for the possibility of up to two streams at once then you ll need to step up to the Standard package If you share your account with multiple people or have a newer K display then you may want the Premium package You can watch content in the highest quality available going all the way up to K HDR F Drive to Survive Stranger Things and Altered Carbon are some of my favorites at the level and have four streams at once on one account ーRichard Lawler Senior News EditorAmazon Prime Video nbsp If you think of Amazon s Prime Video package as a Netflix lite or even if you ve only used it once or twice then you may be underestimating the options available The ad free other than trailers subscription service is available as part of Amazon Prime which you can purchase for either per month or annually While the subscription started out as a way to get free shipping on more purchases Amazon has tacked on benefits that extend across books music games and even groceries If you d prefer to get Prime Video only it s available as a standalone for per month We ll focus on the video service which includes a selection of original and catalog content that is a lot like what Netflix and the others offer In recent years Amazon Prime has increased its original output with award winning series like The Marvelous Mrs Maisel as well as highly regarded genre content like The Boys and The Expanse When it comes to where you can watch Amazon Prime Video the list of options rivals Netflix Streaming boxes and smart TVs whether they re part of Amazon s Fire TV platform or not are almost a given Game consoles Check The only major gap in compatibility was Google s Chromecast and it closed that hole in the summer of Amazon also has a significant amount of content that s available to watch in K and HDR and unlike Netflix it won t charge you extra for the privilege The same goes for simultaneous streams ーAmazon s rules say you can have up to two running concurrently When it comes to downloads Amazon allows offline viewing on its Fire devices Android and iOS The only downside is that Amazon s apps aren t quite on par with Netflix in terms of usability While all the features are there simple things like reading an episode summary enabling closed captions or jumping out of one show and into another are frequently more frustrating on Amazon than on other platforms The company also frequently insists on bringing its Fire TV style interface to other platforms instead of using their native controls That can make it harder to use although on platforms where it hews to the built in controls like Roku can be easier to use One other thing to think about is that Amazon s video apps link to its on demand store and include access to Channels For cord cutters who just want a consistent experience across different devices that means you can easily buy or rent content that isn t part of the subscription Amazon Channels lets you manage subscriptions to Britbox Showtime Paramount and others ーR L HBO MaxIn HBO decided to take the fight to its streaming competitors with HBO Max It supplanted the existing HBO channels as well as streaming via HBO Go or HBO Now by refocusing on original content and rebuilding the service for the modern era HBO Max has the advantage of linking to one of the deepest and best content libraries available drawing from the premium cable channel s archives the Warner Bros vault Studio Ghibli Looney Tunes Sesame Street and Turner Classic Movies If you pay for HBO from one of the major TV providers then congratulations ーyou probably already have access to the full HBO Max experience Just activate your account and start streaming Otherwise you can subscribe directly over the internet HBO Max has a free day trial and costs per month or a year for the no ads tier The company just came out with an ad supported tier which costs per month or per year Along with ads you won t be able to download content for offline viewing Currently HBO Max only offers K HDR streaming for certain content and only those with the ad free plan can access it It can support up to three streams simultaneously and offers individual profiles Since launch HBO Max has come to more TV platforms and it s now available on Roku Apple TV Android TV Samsung and others You can also stream it via a browser Sony and Microsoft s game consoles or with mobile apps on Android and iOS It also includes support for AirPlay and Google s Cast feature which help it work with more smart TVs than just the ones listed here HBO Max content includes premium stuff that Warner yanked back from Netflix and others like full series runs of Friends and The Fresh Prince or DC Universe related TV series and movies The HBO library speaks for itself with Game of Thrones The Wire and older stuff like Band of Brothers Flight of the Conchords or Entourage It s also investing in all new content for HBO Max like its Game of Thrones spin off House of the Dragon and a series based on the Last of Us video game We should mention however that HBO Max has recently canceled several shows ahead of the Discovery merger as a cost cutting move It is deprioritizing kid and family content leading to the removal of Sesame Street spin offs and a handful of Cartoon Network titles Movies like Batgirl and Scoob Holiday Haunt has also been axed Despite these changes HBO Max still has one of the best content libraries of any TV streaming service and is worthy of consideration ーR L and Nicole Lee Commerce WriterHuluHulu started out as a bit of a curiosity ーa joint venture by NBC News Corp and a private equity firm to compete with Netflix by offering new episodes of TV shows Then after Disney joined up in bringing along its content from ABC and the Disney Channel Hulu became a streaming network worth paying attention to Today Hulu s focus is still on recent TV episodes but it also has a strong library of original series and films like The Handmaid s Tale and Only Murders in the Building as well as an archive of older TV and movies that often puts Netflix to shame Now that Disney owns a majority controlling stake in Hulu following its acquisition of st Century Fox the service is less of a collaboration between media giants Comcast still offers NBCUniversal content but it can choose to have Disney buy out its shares as early as Instead it s yet another feather in Disney s increasingly important digital empire alongside Disney and ESPN That may not be a great thing for the competitiveness of streaming services in general but for subscribers it means they can look forward to even more quality content like all of the FX shows that hit Hulu earlier this year Hulu subscriptions start at a month or a year with ads You can also bump up to the ad free plan for a month worth it for true TV addicts The company s Live TV offering is considerably more expensive starting at a month with ads and a month ad free but you do get Disney and ESPN services bundled in Hulu allows two of your devices to stream at the same time and you can also download some content for offline viewing Hulu Live TV subscribers can also pay a month for unlimited streaming at home and for up to three remote mobile devices Given that it s one of the longest running streaming services out there you can find Hulu apps everywhere from TVs to set top boxes The company has been slow to adopt newer home theater technology though ーwe re still waiting for surround sound on Apple TV and many other devices and there s no HDR at all ーDevindra Hardawar Senior EditorDisney Disney came out swinging leveraging all of the company s popular brands like Star Wars Pixar and Marvel It s your one stop shop for everything Disney making it catnip for kids parents animation fans and anyone looking for some classic films from the likes of th Century Pictures And unlike Hulu which Disney also owns there aren t any R rated movies or shows that curious kiddos can come across It s just The Mandalorian and things like it from here on out Given the company s new focus on streaming Disney has quickly become a must have for families And at a month or a year it s a lot cheaper than wrangling the kids for a night out at the movies or even buying one of the Disney s over priced Blu rays You can also get it bundled with ESPN and Hulu for a month Some Verizon FiOS and mobile customers can also get Disney Hulu and ESPN for free Disney supports four simultaneous streams at once and also lets you download films and shows for offline viewing That s particularly helpful when you re stuck in the car with no cell service and a crying toddler Trust me You can access Disney on every major streaming device and most TV brands While the service launched without support for Amazon s Fire TV devices it s now available there as well ーD H Apple TV Apple spared no expense with its streaming platform launching with high profile series like The Morning Show While they weren t all hits initially See you later get it Apple TV has since amassed a slew of must watch programming like Ted Lasso Severance and For All Mankind Clearly the iPhone maker is taking a different approach than Netflix or Disney with a focus on quality and big celebrity names rather than bombarding us with a ton of content But that strategy seems to have paid off For a month there s a ton of great shows and movies to dive into including a number of National Geographic shows But if you re a dedicated Apple user it may be worth moving up to an Apple One plan which also bundles Apple Arcade Apple Music and GB of iCloud storage for a month Step up to monthly and you can bring in your whole family with up to GB of iCloud storage And for a month Apple throws in News and Fitness D H YouTube TVYouTube TV is a great option for cord cutters who still want to watch live TV without having to sign up for a contract It carries over different channels so it s highly likely that you won t miss your cable TV or satellite subscription at all if you switch over YouTube TV even carries your regional PBS channels which is a rarity on most live TV streaming services Where YouTube TV really shines is in the live sports department Not only does it offer sports carrying channels like CBS FOX ESPN NBC TBS and TNT it also offers specific sports coverage networks like the MLB Network NBA TV and the NFL Network You can even opt for a Sports Plus package for an additional a month if you want specific sports channels like NFL RedZone FOX College Sports GOLTV FOX Soccer Plus MAVTV Motorsports Network TVG and Stadium Unfortunately however YouTube TV recently lost the rights to carry Bally Sports regional networks which means that you won t get region specific channels such as Bally Sports Detroit or Bally Sports Southwest One particularly strong selling point for sports fans is that instead of always remembering to record a particular game you can just choose to “follow a specific team and the DVR will automatically record all of its games Plus if you happen to have jumped into the match late there s a “catch up with key plays feature that lets you watch all the highlights up until that point so that you re up to speed YouTube TV is on the expensive side at a month which might not be much more than your basic cable package If you want to add K viewing which is currently only available through certain sporting events plus unlimited streaming you d have to cough up an additional a month It currently offers one of the best cloud DVRs available YouTube TV s DVR has unlimited storage plus you have up to nine months to watch your recorded content before they expire There are also no DVR up charges here you can rewind or fast forward through the recorded content as you please by default We should note however that the on demand content on YouTube TV does have ads which you can t fast forward through There s also a plethora of premium channels that you can add for as low as per month such as Showtime a month HBO Max a month Starz a month Cinemax a month and EPIX a month You can also subscribe to an Entertainment Plus bundle that includes HBO Max Showtime and Starz for a month Other niche add ons include CuriosityStream a month AMC Premiere a month Shudder a month Sundance Now a month Urban Movie Channel a month and Acorn TV a month ーN L Hulu Live TVAside from on demand and original content Hulu also offers a Live TV add on that lets you stream over channels without a cable or satellite subscription It ll cost a month but that includes access to both Disney and ESPN Pay about more and you ll also be able to watch on demand shows without any ads which can t be said with YouTube TV As of April Hulu s Live TV option also has unlimited DVR storage for up to nine months That includes on demand playback and fast forwarding capabilities Hulu allows two simultaneous streams per account but you can pay more if you want unlimited screens and up to three remote mobile devices If you want you can also add premium add ons to your Hulu plan such as HBO Max Cinemax Showtime or Starz Hulu s Live TV service is a great option for sports fans as it has access to a channel lineup that includes CBS FOX ESPN NBC TBS TNT and more all of which should deliver content for fans of most major sports like football basketball and baseball However Hulu plus Live TV does not carry the NBA TV or the MLB Network so you could miss out on additional sports coverage ーN L ESPN Without a doubt ESPN s standalone service is the best deal in sports streaming No one can compete with the network when it comes to the sheer volume of content The platform hosts thousands of live college sporting events plus MLB MLS NHL NBA G League games and more There s plenty of pro tennis as well and ESPN is an insane value for soccer fans On top of select MLS matches ESPN is the US home of the Bundesliga Germany and the EFL cup Carabao Cup It s also the spot for the UEFA Nations League international competition in Europe ESPN offers a slate of original shows and the full catalog of its For series on the service And lastly ESPN is the home of UFC Fight Nights Dana White s Contender Series and other shows stream weekly or monthly plus the app is how you access PPV events That s a truckload of sports included in the a month standard plan If you splurge for the Disney bundle with Disney and Hulu ad supported you can get all three for per month ーBilly Steele Senior News EditorParamount Formerly CBS All Access Paramount may get the most attention for originals like Star Trek Discovery Star Trek Picard and The Twilight Zone but it s becoming a sports destination as well The app began streaming NWSL soccer matches last summer when the league returned to the pitch CBS also announced that All Access would be the live streaming home of the US women s league Unfortunately you can t watch every match there but it s a start Soon after CBS added UEFA Champions League and Europa League soccer to its sports slate The Champions League is the biggest competition in club soccer pitting teams from various countries around the continent against each other to see who s the best Europa League does the same but with less glory Paramount is now the home of Series A soccer Italy and will broadcast CONCACAF World Cup qualifiers which the US Men s National Team will participate in At a month with limited commercials or a month ad free Paramount isn t a must have sports destination just yet You can stream NFL and other games that air on your local CBS station inside the app but the network is still filling out a well rounded slate For now it s more of a necessity for soccer fans than anything else ーB S NBC PeacockNBC made it clear before Peacock s debut that Premier League soccer would be available on the standalone service What we didn t expect was that the network would put so many games there basically forcing anyone who s more than a casual fan to subscribe This is partially due to PL scheduling In the US that means you need the month service and access to NBC Sports network through cable TV or live TV streaming to follow comprehensively NBCUniversal had a similar structure in the past where one game per time slot was broadcast on NBC Sports and NBC Sports Gold was used as the overflow Gold was also the home to cycling Olympic sports and more Now the Premier League is being used to push the new service Peacock and with the current scheduling format even more games are relegated to streaming only Thankfully Peacock does offer match replays so there s some added value there if you can t be parked in front of your TV all day on Saturday and Sunday Games currently run from about AM ET to around PM ET matches usually at AM AM PM and one around or PM Peacock also shows coverage of US Open tennis NFL Wild Card games and will host “select events from upcoming Olympics in Tokyo and Beijing There s also a smattering of sports talk shows available for free with paid users getting on demand replays of Triple Crown horse racing and more ーB S The Criterion ChannelWhile it s easy to find modern films on Netflix and other streaming services these days classic cinema is often tougher to find FilmStruck tried to solve that problem but it couldn t find a large enough audience to survive Now there s the Criterion Channel which delivers a rotating array of its cinephile approved library for a month or a year Where else can you stream something like the incredible ramen noodle Western Tampopo It s a service that s built for movie lovers It s chock full of commentary tracks conversations with writers and directors and some of the company s renowned special features The Criterion Channel also does a far better job at curating viewing options than other services Its double features for instance pair together thematically similar films like the classic noir entries Phantom Lady and Variety What s more its editors make it easy to find all of the available films from a single director for all of you auteur theory connoisseurs Sure it costs a bit more than Hulu and Disney but The Criterion Channel gives you access to a library that s far more rewarding than the latest streaming TV show You can watch on up to three devices at once and there s also offline viewing available for iOS and Android devices It also supports major streaming devices from Apple Amazon and Roku but as far as TV s go it s only on Samsung s Tizen powered sets Unfortunately The Criterion Channel is only available in the US and Canada due to licensing restrictions ーD H ShudderSometimes a good horror movie is the only way to deal with the constant anxiety of a potential climate apocalypse and the seeming downfall of modern society If that describes your personality it s worth taking a look at Shudder AMC Network s streaming service dedicated to everything spooky You ll find plenty of horror classics like The Texas Chainsaw Massacre but Shudder has also gotten into the original content game with unique films like Host which takes place entirely over a Zoom call If you re a bit squeamish Shudder probably won t sell you much on horror But for fans of the genre it s a smorgasbord of content to dive into You can try it out free for seven days and afterwards it s per month or annually Shudder only supports viewing one stream at a time and there s no support for offline viewing yet You can find Shudder on major streaming device platforms but since it s so niche don t expect to find it on smart TVs anytime soon ーD H This article originally appeared on Engadget at 2023-05-15 17:45:13
海外TECH Engadget 'Avatar: The Way of Water' is coming to Disney+ and Max on June 7th https://www.engadget.com/avatar-the-way-of-water-is-coming-to-disney-and-max-on-june-7th-170658724.html?src=rss x Avatar The Way of Water x is coming to Disney and Max on June thAvatar The Way of Water will be available to stream on both Disney and Max the new name for HBO Max on June th It s a bit unusual to see a major recent movie land on two platforms at the same time but there was a deal in place between th Century Studios which Disney has owned since and HBO for streaming rights to certain theatrical releases The sequel to s Avatar hit theaters in December and it went on to become the third highest grossing movie of all time as long as you don t factor inflation in Director James Cameron made intriguing use of high frame rates in The Way of Water with action filled scenes typically playing at frames per second to make them look smoother More tranquil scenes appeared to run at fps The frames were doubled in those parts of the movie to make it seem as though they played at the frame rate we re used to seeing in theaters Unfortunately it s unlikely that there will be an option to stream the film at higher frame rates at home anytime soon Still those who ve been waiting for Avatar The Way of Water to pop up on Disney or Max only have a few weeks longer to wait James Cameron s global phenomenon AvatarTheWayOfWater will debut Wednesday June on Max In addition to streaming on Max the movie will be available to stream on Disney on June StreamonMaxpic twitter com iSpOodrーInside HBO Max InsideHBOMax May This article originally appeared on Engadget at 2023-05-15 17:06:58
海外TECH CodeProject Latest Articles Building Native Windows on Arm Apps with Python https://www.codeproject.com/Articles/5360593/Building-Native-Windows-on-Arm-Apps-with-Python Building Native Windows on Arm Apps with PythonThis article demonstrates the convenience of using native Arm Python on Arm powered devices to experience up to a threefold performance boost over using it in emulation mode 2023-05-15 17:05:00
ニュース BBC News - Home Supermarkets investigated over food and fuel prices https://www.bbc.co.uk/news/business-65601292?at_medium=RSS&at_campaign=KARANGA competition 2023-05-15 17:27:22
ニュース BBC News - Home Center Parcs owner Brookfield puts holiday chain up for sale https://www.bbc.co.uk/news/business-65600417?at_medium=RSS&at_campaign=KARANGA resort 2023-05-15 17:26:12
ビジネス ダイヤモンド・オンライン - 新着記事 「笑いごとじゃない!」を英語でどう言う? - 5分間英単語 https://diamond.jp/articles/-/322902 「笑いごとじゃない」を英語でどう言う分間英単語「たくさん勉強したのに英語を話せない……」。 2023-05-16 02:45:00
海外TECH reddit Liquid vs Into the Breach / BLAST.tv Paris Major 2023 - Legends Stage Swiss Round 4 / Post-Match Discussion https://www.reddit.com/r/GlobalOffensive/comments/13idpic/liquid_vs_into_the_breach_blasttv_paris_major/ Liquid vs Into the Breach BLAST tv Paris Major Legends Stage Swiss Round Post Match DiscussionLiquid Into the Breach Overpass Anubis Inferno nbsp Liquid advances to the Champions Stage Into the Breach have a record in the Swiss stage nbsp Map picks Liquid MAP Into the Breach X Vertigo Nuke X Overpass Anubis Mirage X X Ancient Inferno nbsp Full Match Stats Team K D ADR KAST Rating Liquid oSee NAF nitr YEKINDAR EliGE Into the Breach volt Thomas rallen CRUCAL CYPHER nbsp Individual Map Stats Map Overpass Team T CT OT Total Liquid CT T OT Into the Breach nbsp Team K D ADR KAST Rating Liquid oSee NAF nitr YEKINDAR EliGE Into the Breach volt Thomas rallen CYPHER CRUCAL Overpass detailed stats and VOD nbsp Map Anubis Team CT T Total Liquid T CT Into the Breach nbsp Team K D ADR KAST Rating Liquid oSee NAF YEKINDAR nitr EliGE Into the Breach rallen CRUCAL CYPHER Thomas volt Anubis detailed stats and VOD nbsp Highlights M oSee vs AWP clutch nbsp This thread was created by the Post Match Team If you want to share any feedback or have any concerns please message u CSGOMatchThreads submitted by u CSGOMatchThreads to r GlobalOffensive link comments 2023-05-15 17:01:31

コメント

このブログの人気の投稿

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