投稿時間:2023-03-01 02:37:27 RSSフィード2023-03-01 02:00 分まとめ(46件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
IT 気になる、記になる… Microsoft、「Windows 11」の新機能を発表 ー タスクバーから「新しいBing」が利用可能に https://taisy0.com/2023/03/01/169053.html microsofts 2023-02-28 15:23:03
AWS AWS Messaging and Targeting Blog Build AI and ML into SMS for customer engagement https://aws.amazon.com/blogs/messaging-and-targeting/build-ai-and-ml-into-email-sms-for-customer-engagement/ Build AI and ML into SMS for customer engagementCreate more engaging customer experiences with AI ML powered SMS communication Today s customer expects the ability to engage with businesses through various communication channels like email SMS Push notifications and in app notifications when they have a question or need a problem resolved SMS is one of the fastest growing communication channels and we ve seen that … 2023-02-28 15:06:54
js JavaScriptタグが付けられた新着投稿 - Qiita JavaScirptの基礎まとめ 基礎編2~これは絶対に覚えておくべき~ https://qiita.com/shinry/items/0a5ba30676e3b72cdc01 javascirpt 2023-03-01 00:19:42
Linux Ubuntuタグが付けられた新着投稿 - Qiita Ubuntu22.04でLVMを使用してHDD容量を拡張する方法 https://qiita.com/rat-engineer755/items/e816ac5c8c4293161168 gitlab 2023-03-01 00:36:55
技術ブログ Developers.IO Amazon Connect คืออะไร? การแนะนำฟังก์ชันล่าสุดของ AWS ในปี 2023 https://dev.classmethod.jp/articles/what-is-amazon-connect-2023-th/ Amazon Connect คืออะไร การแนะนำฟังก์ชันล่าสุดของAWS ในปีสวัสดีครับทุกท่านวันนี้อยากจะพาทุกท่านมาทำความรู้จักกับอีกหนึ่งบริการAWS ที่น่าสนใจAmazon connect กันครับAm 2023-02-28 15:55:06
海外TECH Ars Technica Meet the space billionaire who is interested in something other than rockets https://arstechnica.com/?p=1920624 thing 2023-02-28 15:30:40
海外TECH Ars Technica Namco announces the first Elden Ring expansion is in development https://arstechnica.com/?p=1920639 lands 2023-02-28 15:14:08
海外TECH MakeUseOf An Introduction to Building App Clips With React Native https://www.makeuseof.com/app-clips-react-native-introduction-building/ native 2023-02-28 15:31:17
海外TECH MakeUseOf 7 Ways to Improve Your Gaming Experience on a Windows 11 PC https://www.makeuseof.com/improve-gaming-experience-windows-11/ Ways to Improve Your Gaming Experience on a Windows PCMicrosoft claims that Windows is the best operating system for gaming Whether or not you agree there are still some things you can tweak 2023-02-28 15:16:15
海外TECH DEV Community What's New in Rails 7.1 https://dev.to/appsignal/whats-new-in-rails-71-4alb What x s New in Rails Rails was a welcome release that brought a lot of significant features and changes On the backend Rails introduced asynchronous query loading and Zeitwerk for autoloading The frontend saw Hotwire becoming the default solution for new Rails apps Rails will add to these notable features In this post we ll discuss some noteworthy additions that are likely to be shipped A New API for Async Queries in RailsBuilding on an earlier feature from Rails Rails will make it possible to run some queries asynchronously Rails introduced ActiveRecord Relation load async which schedules a query in a background thread pool allowing us to do stuff like Post where published true load async In Rails we ll be able to run a lot more queries in background threads Aggregate methods will run concurrently Assuming you run two or more independent queries on a job or controller query results may return quicker if your application is set up accordingly For this to work as intended there are two configuration options worth paying attention to config active record async query executorconfig active record global executor concurrencyAmong the methods you can run asynchrously in Rails are async sum async pluck and async count by sql Resetting Singular AssociationsRails allows resetting the cache on singular associations Currently you can only clear the cache of has many associations with a class like class Teacher lt ActiveRecord Base has many students has one classroomendteacher Teacher firstWe can only do teacher students reset to clear the caches of the results returned by teacher students Subsequent requests need to hit the database again for a fresh results set in case some data goes stale With Rails we ll get the reset method on a has one association Using our example class above Rails will allow us to do teacher classroom reset teacher to clear the cache for the associations between teacher and classroom Disabling Methods Generated By ActiveRecord enumActiveRecord enum generates a bunch of methods if you create an enum Rails Rails will provide an option to opt out of these generated methods Here s a simple example class Payment lt ActiveRecord Base enum status i succeeded failed instance methods falseendRails won t generate auxiliary methods with instance methods false Currently we expect to have methods like payment Payment firstpayment succeeded payment failed payment succeeded payment failed Support for Common Table ExpressionsRails will have in built support for Common Table Expressions CTEs This ensures that code will be more succinct but more importantly that we won t have to use Arel Nodes for complex queries With Rails we ll have a new with method to write queries similar to the one below Post with posts with comments Post where comments count gt posts with tags Post where tags count gt Support for Async Bulk Record DestructionAs mentioned Rails will introduce several ways to run code asynchronously One such new addition to async code executions is the destroy association async batch size configuration With this new configuration Rails applications can set a maximum number of records to be destroyed in a single background job by the dependent destroy async association The default behavior where all dependent records are destroyed in a single background job when the parent record is destroyed will remain unchanged However if the number of dependent records exceeds the new configuration they will be destroyed in multiple background jobs Other Rails Updates ActiveRecord Relation explain Accepts OptionsRails will allow you to pass database systems that support EXPLAIN options to ActiveRecord Relation explain An example query might look like this Customer where id joins orders explain analyze verbose Active Record regroupActive Record will allow for regrouping queries with a new regroup method that can be used like so Post group title regroup author This generates SQL equivalent to SELECT posts FROM posts GROUP BY posts author The same can be achieved in current versions of Rails with more verbose code Post group title unscope group group author New stub const method for TestingA new stub const method for ActiveSupport TestCase will be added that stubs a constant for a yield s duration For example World List Import LARGE IMPORT THRESHOLD stub const World List Import LARGE IMPORT THRESHOLD do assert equal World List Import LARGE IMPORT THRESHOLDendassert equal World List Import LARGE IMPORT THRESHOLD Take note however that stubbing a constant will affect its value across all threads in a multi threaded setup This means that if multiple concurrent threads rely on the same constant simultaneous and conflicting stubbing may occur Password Challenge via has secure passwordRails has improved the functionality of has secure password by adding a password challenge accessor and a corresponding validation The validation will verify that a password challenge matches the stored password digest With this implementing a password challenge becomes as straightforward as a password confirmation This also enables reusing the same error handling logic in both the view and the controller For instance instead of writing separate code in the controller you will simply use the existing logic for password confirmation password params params require password permit password challenge password password confirmation with defaults password challenge if current user update password params perform some workend Saving Attachments Returning the BlobWith Rails when you save attachments to a record the attach method will return the attached blob or blobs This enables the direct use of blob methods on the attachment However if the record fails to save attach will return false Here s an example demonstrating its use user User create name Josh avatar user avatar attach params avatar You can now directly call blob methods as follows avatar downloadavatar urlavatar variant thumb Storage of CSRF Tokens Outside of SessionsRails has introduced a new configuration option to address the excessive creation and eviction of millions of sessions for just storing a CSRF token when sessions are not stored in cookies This option allows the use of a lambda function to store the CSRF token in a custom location thus enabling the storage of CSRF tokens outside of sessions You can also create custom strategy classes for storing CSRF tokens class CustomStore def fetch request Return the token from a custom location end def store request csrf token Store the token in a custom location end def reset request Delete the stored session token endendclass ApplicationController lt ActionController x Base protect from forgery store CustomStore newend Validity Checking for PostgreSQL IndexesCreating indexes as shown below may lead to an invalid index add index account active algorithm concurrentlyWith Rails you can verify an index s validity as shown here connection index exists users email valid true connection indexes users select amp valid ActiveRecord QueryMethods select Accepts a HashActiveRecord QueryMethods select in Rails now accepts a hash of options This is best demonstrated with an example You can now write selects like this Post joins comments select posts id post id title post title comments id comment id body comment body In place of this Post joins comments select posts id as post id posts title as post title comments id as comment id comments body as comment body Number of Processors Match the Puma Worker CountBy default newly generated Rails applications will have Puma workers that are capped at the total number of physical processors on the host machine This default setting can always be changed in the puma rb file The puma rb file for newly generated Rails applications will now look like the following if ENV RAILS ENV production worker count ENV fetch WEB CONCURRENCY Concurrent physical processor count workers worker count if worker count gt end preload and eager load Associations to Be UnscopedRails will add the ability to unscope preloaded and eager loaded associations in a manner similar to how Active Record s includes select and joins methods work This feature allows for the use of aggregate functions on has many associations previously loaded through eager load or preload in existing queries An example usage could look like query unscope eager load preload group id select id Default Dockerfiles for New Rails ApplicationsDocker files are to be added as a default option for new Rails applications The files include Dockerfile dockerignorebin docker entrypointThese files serve as a starting point for deploying an application in a production environment and are not intended for use during development However if desired you can skip these files by using the skip docker option Default Health ControllerRails introduces a new endpoint for load balancers and uptime monitors The endpoint named Rails HealthController show is mapped to the up path in newly generated Rails applications This allows load balancers and uptime monitors to easily track an app s availability Note that monitoring the database Redis and internal network connections to microservices that an application relies on must be managed separately New Rails env local for Environment ChecksIn Rails a new local method can be used to simplify environment checks You ll be able to replace code like if Rails env development Rails env test endWith if Rails env local end New ActiveRecord Persistence update attribute MethodRails has added a new method ActiveRecord Persistence update attribute which functions similarly to update attribute but uses save instead of save Here s how you could use this new method class Apm lt ActiveRecord Base before save check name def check name throw abort if name abort endmonitor Apm create name App Signal gt lt Apm name App Signal gt monitor update attribute name AppSignal gt lt Apm name AppSignal gt monitor update attribute name abort raises ActiveRecord RecordNotSaved Templates Capable of Defining Accepted LocalsTemplates will be enhanced with the option of required arguments that have default values Currently templates accept any locals as keyword arguments With Rails templates will define specific accepted locals through a magic comment This improvement provides greater control and customization options for template behavior and functionality A partial in Rails could now look like lt locals title Default title comment count gt lt h gt lt title gt lt h gt lt span class comment count gt lt comment count gt lt span gt Instead of lt title local assigns title Default title gt lt comment count local assigns comment count gt lt h gt lt title gt lt h gt lt span class comment count gt lt comment count gt lt span gt Wrapping UpAs you can see Rails promises a lot of further improvements on Rails For more information on features updates and bug fixes check out the Rails release notes Happy coding P S If you d like to read Ruby Magic posts as soon as they get off the press subscribe to our Ruby Magic newsletter and never miss a single post 2023-02-28 15:53:35
Apple AppleInsider - Frontpage News Tech deals: Apple Watch Series 8 $329, Mac mini $519, 70% off Echo Dot & more this Tuesday https://appleinsider.com/articles/23/02/28/tech-deals-apple-watch-series-8-329-mac-mini-519-70-off-echo-dot-more-this-tuesday?utm_medium=rss Tech deals Apple Watch Series Mac mini off Echo Dot amp more this TuesdayToday s top deals include off Sol Republic noise cancelling headphones off a Hisense K TV off an AirPods wireless charging case off an Ecovacs Deebot X Robot vacuum mop combo and up to off select Lenovo PCs tablets Save on an Apple Watch Series The AppleInsider team searches the internet for unbeatable deals at online retailers to create a list of top notch discounts on the top tech products including discounts on Apple products TVs accessories and other gadgets We share our top finds in our Daily Deals list to help you save money Read more 2023-02-28 15:22:24
Apple AppleInsider - Frontpage News Plugable's new docking stations bring three displays to M1 Macs https://appleinsider.com/articles/23/02/28/plugables-new-docking-stations-bring-three-displays-to-m1-macs?utm_medium=rss Plugable x s new docking stations bring three displays to M MacsPlugable s newly launched MacBook docking stations not only provide port expansion but they also bring multiple external monitor support to M Macs If you find yourself wishing you had more screen real estate for work or play don t fret ーPlugable s two new docking stations allow you to add up to three screens to your setup UD PDH Plugable in USB C Triple Monitor Docking Station Read more 2023-02-28 15:06:20
Apple AppleInsider - Frontpage News Pixelmator Pro improves video features, adds green screen removal https://appleinsider.com/articles/23/02/28/pixelmator-pro-improves-video-features-adds-green-screen-removal?utm_medium=rss Pixelmator Pro improves video features adds green screen removalThe latest significant update to Mac image editor Pixelmator Pro has built on its recent video editing features plus revamped its Shadows and Highlights tools Notice the difference left and right of the model as the new Pixelmator Pro removes a solid background color automaticallyPixelmator Pro s previous update in December added limited video editing capabilities Users could import open or drag in video files just as readily as they could images and perform adjustments on them Read more 2023-02-28 15:41:57
海外TECH Engadget 'Forspoken' studio Luminous Productions will be folded into Square Enix https://www.engadget.com/forspoken-studio-luminous-productions-will-be-folded-into-square-enix-153805323.html?src=rss x Forspoken x studio Luminous Productions will be folded into Square EnixLuminous Productions the studio behind Forspoken will soon close shop Its team will be folded back into parent company Square Enix and tasked with working on other projects The publisher set up the studio which included the developers behind Final Fantasy XV in to work on new franchises but Forspoken was its only game as a standalone studio In a statement Luminous said that its team will move back directly under Square Enix s umbrella starting on May st In the meantime the developers will continue to work on an update to address Forspoken s performance issues as well as an expansion that s slated to arrive this summer quot When we established Luminous Productions in our vision was to make AAA games that fused technology and artistry to deliver completely new play experiences quot Luminous wrote on Twitter quot Having the chance to do just that has been a dream come true quot An Update from Luminous Productions pic twitter com fbDENflRhjーLuminous Productions LumiPro EN February In a statement of its own Square Enix said it s absorbing the Luminous team as quot part of the company s efforts to further bolster the competitive prowess of the group s development studios a goal set forth under its current medium term business strategy quot It added that Luminous is quot equipped not only with AAA title development capabilities but also technical expertise in areas such as game engine development Combining the two entities will further enhance the Group s ability to develop HD games quot This is hardly the first time that Square Enix has taken swift action against its studios after projects failed to meet expectations Last year it sold off three Western studios ーCrystal Dynamics Eidos Montréal and Square Enix Montréal ーas well as franchises like Tomb Raider and Deus Ex to Embracer Group for a relatively small price of million The move came after the likes of Marvel s Avengers and Guardians of the Galaxy which didn t sell well enough despite strong reviews didn t sell as well as Square Enix hoped Forspoken is one of the highest profile games of the year to date However Square Enix released it in January to a so so reception from critics It s not yet clear how well the game has performed commercially nbsp Steam data indicated that Hi Fi Rush a game from Ghostwire Tokyo studio Tango Gameworks that was announced and released on the same day outperformed Forspoken in their first week of release on the platform That s despite Hi Fi Rush being available on Game Pass and costing versus the Square Enix charged for Forspoken In fairness the data only takes into account sales on Steam from the same week not preorders or purchases from Steam key sellers In any case that s not a great look for Luminous or Forspoken Square Enix gobbling up the team spells disappointing news for any fans of Forspoken who were hoping for a sequel Meanwhile Luminous used a proprietary engine to create Final Fantasy XV and Forspoken It s not clear what the future holds for the Luminous Engine after the merger either Whatever happens here s hoping the folks from Luminous aren t stuck working on Square Enix s NFT nonsense This article originally appeared on Engadget at 2023-02-28 15:38:05
海外TECH Engadget Snapdragon 8 Gen 2 phones are the first to support built-in 'iSIMs' https://www.engadget.com/snapdragon-8-gen-2-isim-support-150031144.html?src=rss Snapdragon Gen phones are the first to support built in x iSIMs x Never mind eSIMs ーyour next phone might have a more advanced way of connecting to your carrier Qualcomm and Thales have confirmed the certification of the first user ready Integrated SIM or quot iSIM quot It promises the same card free digital sign ups and security as eSIMs but is built directly into a phone s main processor Your phone doesn t need a dedicated chip saving space and hopefully money The companies don t say which phones will be the first to use iSIMs The technology supports the same remote provisioning standard as eSIMs however Your provider won t necessarily need to update its systems to support iSIM based devices There s no guarantee phone makers will pass any savings along to you The reduced footprint could make room for slightly larger batteries and other components though More importantly this might encourage more manufacturers to use digital SIMs by making the tech easier to implement With that said the Snapdragon Gen is a high end platform You may not see wider adoption until more affordable chips and thus lower priced phones offer iSIM support The timing is convenient at least Many phones now include eSIM support while American iPhone and Pro models don t have physical SIM trays The conventional SIM card is on the decline and iSIM could hasten that transition by making its virtual counterpart more commonplace This article originally appeared on Engadget at 2023-02-28 15:00:31
金融 金融庁ホームページ 金融機関における貸付条件の変更等の状況について更新しました。 https://www.fsa.go.jp/ordinary/coronavirus202001/kashitsuke/20200430.html 金融機関 2023-02-28 17:00:00
金融 金融庁ホームページ 「新型コロナウイルス感染症関連情報」特設ページを更新しました。 https://www.fsa.go.jp/ordinary/coronavirus202001/press.html 感染拡大 2023-02-28 17:00:00
金融 金融庁ホームページ 令和4年9月期における金融再生法開示債権の状況等(ポイント)を公表しました。 https://www.fsa.go.jp/status/npl/20230228.html 金融再生法 2023-02-28 17:00:00
ニュース BBC News - Home Urgent search for baby as Constance Marten and Mark Gordon arrested https://www.bbc.co.uk/news/uk-64794712?at_medium=RSS&at_campaign=KARANGA people 2023-02-28 15:45:40
ニュース BBC News - Home China hits out at US over TikTok ban on federal devices https://www.bbc.co.uk/news/world-asia-china-64795548?at_medium=RSS&at_campaign=KARANGA companies 2023-02-28 15:20:29
ニュース BBC News - Home Sainsbury's to axe Argos depots with 1,400 jobs hit https://www.bbc.co.uk/news/business-64802615?at_medium=RSS&at_campaign=KARANGA argos 2023-02-28 15:52:09
AWS AWS Government, Education, and Nonprofits Blog Supporting 911 centers with non-emergency response solutions: An architecture guidance https://aws.amazon.com/blogs/publicsector/supporting-911-centers-non-emergency-response-solutions-architecture-guidance/ Supporting centers with non emergency response solutions An architecture guidanceAWS is helping the community mitigate the impact of staffing shortages on call wait times by providing centers the means to automate the receipt and resolution of designated non emergency calls Learn how the Jefferson County Communications Center Authority is already seeing improvements using an AWS solution and discover the solution s components that support centers in handling non emergency calls at scale 2023-02-28 16:57:12
python Pythonタグが付けられた新着投稿 - Qiita 【Python】ChatGPTに画像クローラー作らせてみた https://qiita.com/Nikto/items/22cb31df48e8eeaef17a chatgpt 2023-03-01 01:14:35
js JavaScriptタグが付けられた新着投稿 - Qiita JavaScirptの基礎まとめ 基礎編3~これは絶対に覚えておくべき~ https://qiita.com/shinry/items/06230d9d654245158ff0 document 2023-03-01 01:46:26
js JavaScriptタグが付けられた新着投稿 - Qiita 【JavaScript】返り値がBooleanの場合でのスッキリとした書き方 https://qiita.com/derasado/items/bb9e8a0558e9ae3f078f boolean 2023-03-01 01:42:01
海外TECH MakeUseOf How YouTube’s Multi-Language Dubbing Feature Makes Videos More Accessible https://www.makeuseof.com/youtube-multi-language-feature-makes-videos-accessible/ barrier 2023-02-28 16:21:20
海外TECH MakeUseOf How to Fix a Laggy, Stuttery, or Poor-Quality Discord Stream on Windows https://www.makeuseof.com/fix-poor-quality-stream-discord-windows/ windows 2023-02-28 16:16:17
海外TECH MakeUseOf How Google Tracks You Even When You’re Not Using Its Services https://www.makeuseof.com/how-google-tracks-you/ How Google Tracks You Even When You re Not Using Its ServicesYou might think that just because you don t use Google Chrome or the search engine itself you steer clear of Google tracking You d be wrong 2023-02-28 16:01:17
海外TECH DEV Community Appwrite Loves Open Source: Why I Chose To Sponsor Santosh https://dev.to/appwrite/appwrite-loves-open-source-why-i-chose-to-sponsor-santosh-55nc Appwrite Loves Open Source Why I Chose To Sponsor Santosh Off season Santa on duty sponsoring OSS projects maintainersAppwrite being an open source company has its vision rooted to giving back to the community We know the hurdles faced by a project maintainer and want to solve at least one the fund Be it for the project better features or maintaining the community every little thing requires some funding and to help reduce that Appwrite gives an opportunity to its employees to pick and sponsor an open source project maintainer for one year To by and for the communityCommunities played an important role in my own development it improved my technical and soft skills From learning about Git to learning about different cultures making friends across the globe communities have given me all So when I had an opportunity to be a santa I chose Santosh Yadav an Angular GDE India s first GitHub star and a co founder of This is Learning Santosh is a self made developer and a father of a beautiful daughter He is currently settled in Germany and is a living proof of how one can achieve their dreams in spite of no family backup From contributor to maintainerIt dates back to when Santosh wanted to get started with open source but was only able to do it in He started with Ngrx as a contributor created few utilities for Angular and is an active member of the project now When he started he wasn t well versed with Angular but the impostor syndrome did not stop him from contributing and today he is a well known face in the community He also thanks the open source community for shaping his career and getting him job offers too Fast forward to Santosh is now looking forward to following his passion in tech and community by helping early in career developers students and career switchers He is already supporting many developers and projects and is looking to increase them sevenfold this is where Appwrite has decided to help him expand his initiative and reach every developer project that needs support Santosh being a co founder of This is learning is imparting free and quality tech content to people and is aiming to double it this year And it s a wrapIt brings me so much joy to be finally able to bring a change and I am so proud of Appwrite for giving me an opportunity to give back to the community I have learnt so much from If you love Appwrite and think we are doing a good job hop on to our Discord server we have so much fun going on you don t want to miss Before I end here s a little bit about Appwrite we are the firebase alternative to all your backend needs and more Perks It is open source has some cool functions there are rumors about some more amazing features under work in progress Find out more from Appwrite Contribution GuideAppwrite DiscordAppwrite GithubAppwrite Documentation 2023-02-28 16:17:44
Apple AppleInsider - Frontpage News Chrome tweaked to improve memory use & battery life on MacBook https://appleinsider.com/articles/23/02/28/chrome-tweaked-to-improve-memory-use-battery-life-on-macbook?utm_medium=rss Chrome tweaked to improve memory use amp battery life on MacBookGoogle has made under the hood improvements to Chrome which have resulted in lighter memory use improved speed and better battery life for MacBook owners Image Credit GoogleWith the changes Google says Chrome users can now browse the internet for hours or watch YouTube for hours on a inch M MacBook Pro on a single charge Read more 2023-02-28 17:00:12
Apple AppleInsider - Frontpage News Broken fire suppression system made fire at Apple cable supplier worse https://appleinsider.com/articles/23/02/28/broken-fire-suppression-system-made-fire-at-apple-cable-supplier-worse?utm_medium=rss Broken fire suppression system made fire at Apple cable supplier worseAfter a recent fire critically damaged and shut down an Apple cable supplier s facility in India an investigation revealed faulty fire safety equipment Faulty equipment at FoxlinkOn Monday Foxlink stopped production at its India cable production facility after a fire caused part of a building to collapse J Ramanaiah head of the state s Fire Services Department for the Tirupati district said the fire started in the afternoon and damaged approximately half of the factory s machinery Read more 2023-02-28 16:17:42
海外TECH Engadget Apple's 2023 MacBook Pro with M2 Pro is $200 off right now https://www.engadget.com/apple-2023-macbook-pro-with-m2-pro-is-200-off-right-now-164333083.html?src=rss Apple x s MacBook Pro with M Pro is off right nowApple released the latest refreshes to its MacBook Pro laptops just last month but a new deal has brought the inch model down to at Amazon and B amp H That s off this configuration s typical going rate on Amazon off Apple s MSRP and the largest discount we ve seen to date B amp H s listing says the deal is only scheduled to last through Tuesday Note that only the Space Gray model is discounted This deal applies to the entry level inch model which includes a new M Pro chip with a core CPU and core GPU GB of RAM and GB of SSD storage The inch Mini LED display has a resolution of x and supports refresh rates up to Hz for smoother scrolling There s a p webcam inside an iPhone style display notch plus three Thunderbolt USB C ports an HDMI port a full sized SD card slot a MagSafe connector for charging and a headphone jack We gave the latest inch MacBook Pro a review score of back in January Although that review was based on a higher power configuration than this discounted model the general benefits are the same here The new MacBook Pro is essentially just a speed bump but it remains a fast and sturdily built notebook for power users Its display is still superb its keyboard and trackpad are still comfortable its speakers are still top notch and its battery life can still genuinely last beyond a full work day On the flip side the whole thing is still expensive even with this discount and hardly upgradeable but that s a familiar story for Macs nbsp The one major upgrade here is the new chip To be clear this variant of the M Pro isn t worth the upgrade for most owners of the prior MacBook Pro and its graphics performance is still clearly behind the M Max chip available in the pricier Pro models Because of the way its NAND chips are configured this entry level model s storage performance is technically slower than the last entry level inch Pro as well nbsp That said this is still a powerful notebook Any storage drop off isn t likely to be noticeable the vast majority of the time and the CPU and GPU performance here is still nice jump for most looking to upgrade from an older Intel based Pro While the M MacBook Air is the better buy for most people in need of a general purpose laptop the inch MacBook Pro is a great choice for those willing to pay for more performance and this deal makes it at least a little more affordable nbsp Follow EngadgetDeals on Twitter and subscribe to the Engadget Deals newsletter for the latest tech deals and buying advice This article originally appeared on Engadget at 2023-02-28 16:43:33
海外TECH Engadget Flipboard is leaning into Mastodon — and away from Twitter https://www.engadget.com/flipboard-is-leaning-into-mastodon-and-away-from-twitter-160036103.html?src=rss Flipboard is leaning into Mastodon ーand away from TwitterFlipboard is the latest service to embrace Mastodon as Twitter becomes increasingly chaotic under Elon Musk The news reading app whose founder was once on Twitter s board of directors is now going all in on the Fediverse The company announced that it s integrating Mastodon into its main app so that users can browse their feeds much the way they can “flip through their Twitter timelines Flipboard is also starting up its own Mastodon instance in an effort to encourage broader adoption among its user base According to Flipboard CEO Mike McCue the two updates are the first “very initial steps of a broader plan to embrace the decentralized social networking protocols that have been popularized by Mastodon over the last year Instead of relying on the “proprietary social graphs of services like Twitter and Facebook ーboth of which have become increasingly hostile to outside developers ーFlipboard could instead be centered around ActivityPub the open source protocol that powers Mastodon and the rest of the decentralized services that make up the “Fediverse “As we embrace ActivityPub at Flipboard we ll effectively allow anyone who s on Mastodon to follow a user on Flipboard and to follow a Flipboard magazine and vice versa McCue says in an interview “What ActivityPub enables is a common open social graph This means that services like Flipboard and Mastodon could eventually be interoperable with other platforms that have pledged to adopt ActivityPub like Tumblr The shift is especially notable for Flipboard given its once deep ties to Twitter McCue served on Twitter s board of directors between and and Twitter once reportedly considered buying the app But now McCue says the current state of Twitter “is quite sad for a lot of people who were advocates and participants in the whole Twitter ecosystem And with Twitter set to end its free API it s not clear how much longer Flipboard will be able to maintain any kind of functionality with the service “It s total chaos over there McCue says referring to Twitter since Musk took over the company “The writing on the wall is that I don t see Flipboard s Twitter integration lasting much longer But McCue describes Mastodon and the Fediverse as a kind of antidote to the Musk induced chaos “We need to get out of this world where one person can basically dictate how these communities of people are interacting with each other he says Of course there are still questions about whether Mastodon will ever be more than a relatively niche Twitter alternative The platform has seen explosive growth since last spring when Musk announced his takeover bid for Twitter but the growth has since leveled off And the decentralized nature of the platform isn t necessarily intuitive for newcomers McCue acknowledges that the Fediverse is still waiting for its “Netscape moment he was an executive at the browser company in the late s at the peak of the Web era but he predicts that other mainstream services may start looking at Mastodon more strategically as well “I think you re going to see in the coming months companies like us start to integrate ActivityPub and advocate to publishers and content creators that they should build a presence in the Fediverse he predicts “Once that starts to reach critical mass …then I think you re gonna get that Netscape moment This article originally appeared on Engadget at 2023-02-28 16:00:36
海外TECH Engadget Realme's GT3 phone with 240W fast charging is getting a global release https://www.engadget.com/realme-gt3-240w-pricing-availability-mwc-2023-160035911.html?src=rss Realme x s GT phone with W fast charging is getting a global releaseRealme a sister brand of Oppo is finally bringing its W SuperVOOC fast charging tech to the international market by way of a familiar looking device Freshly announced at MWC the Realme GT is identical to the Chinese GT Neo model meaning it benefits from the same rapid charging speeds a quick second connection with the custom A cable will replenish the mAh battery to percent and a minute session will get it fully charged To cope with the extra heat from the higher charging power the GT s battery is covered with a massive vapor chamber liquid cooling system and this is complemented with various safety sensors plus a fireproof design The battery will apparently maintain at least percent health after charging cycles at W ーdoubling that of the industry standard RealmeRealme threw in a small C shaped RGB lighting ring ーdubbed quot Pulse Interface System quot ーsandwiched between an NFC ring and a Snapdragon Gen icon on the back yep no love for the newer Snapdragon Gen here These are all housed inside a translucent window next to the camera module with the customizable light ring indicating the battery level incoming calls notifications and camera countdown See RGB isn t just for showing off As with the GT Neo the GT packs a megapixel main camera featuring a Sony IMX sensor and optical stabilization an megapixel ultra wide camera and a megapixel macro camera Flip to the other side you ll find a inch x AMOLED screen with a Hz refresh rate an under display fingerprint reader and a megapixel punch hole selfie camera The infrared remote blaster at the top is here to stay and likewise with the Dolby Atmos stereo speakers RealmeThe Realme GT s charging speed may not match Xiaomi s five minute record claim from earlier today but at least it is already available in the market Starting at this Android device comes in four flavors with GB of RAM and GB of storage being the base model and maxing out with GB RAM plus TB of storage for the special variant You ll be able to pick one up across Europe and Asia soon This article originally appeared on Engadget at 2023-02-28 16:00:35
Cisco Cisco Blog Cisco Drives Simplified Operations and Energy Efficiency with Intersight and UCS X-Series https://feedpress.me/link/23532/15997889/cisco-drives-simplified-operations-and-energy-efficiency-with-intersight-and-ucs-x-series Cisco Drives Simplified Operations and Energy Efficiency with Intersight and UCS X SeriesCisco simplifies the purchase and procure processes for Intersight consolidating licensing each with a suite of functionality making it easier to select the right tier for your businesses plus a new offer that simplifies and accelerates deployment of more energy efficient computing systems and operations in one convenient bundle 2023-02-28 16:30:51
海外科学 BBC News - Science & Environment Green flights not in easy reach, warn scientists https://www.bbc.co.uk/news/science-environment-64788106?at_medium=RSS&at_campaign=KARANGA conclude 2023-02-28 16:23:07
金融 金融庁ホームページ 金融機関における貸付条件の変更等の状況について更新しました。 https://www.fsa.go.jp/ordinary/coronavirus202001/kashitsuke/20200430.html 金融機関 2023-02-28 17:00:00
金融 金融庁ホームページ 「新型コロナウイルス感染症関連情報」特設ページを更新しました。 https://www.fsa.go.jp/ordinary/coronavirus202001/press.html 感染拡大 2023-02-28 17:00:00
金融 金融庁ホームページ 令和4年9月期における金融再生法開示債権の状況等(ポイント)を公表しました。 https://www.fsa.go.jp/status/npl/20230228.html 金融再生法 2023-02-28 17:00:00
ニュース BBC News - Home Isla Bryson: Transgender rapist jailed for eight years https://www.bbc.co.uk/news/uk-scotland-64796926?at_medium=RSS&at_campaign=KARANGA female 2023-02-28 16:31:09
ニュース BBC News - Home Doctors pressured not to make a fuss over Lucy Letby, trial told https://www.bbc.co.uk/news/uk-england-merseyside-64802048?at_medium=RSS&at_campaign=KARANGA episodes 2023-02-28 16:45:07
ニュース BBC News - Home Sainsbury's to axe Argos depots with 1,400 jobs hit https://www.bbc.co.uk/news/business-64802615?at_medium=RSS&at_campaign=KARANGA argos 2023-02-28 16:11:23
ニュース BBC News - Home William and Kate take part in spin class on south Wales visit https://www.bbc.co.uk/news/uk-wales-64793299?at_medium=RSS&at_campaign=KARANGA centre 2023-02-28 16:51:52
ニュース BBC News - Home Fox and badger have stand-off over food https://www.bbc.co.uk/news/uk-england-nottinghamshire-64803509?at_medium=RSS&at_campaign=KARANGA garden 2023-02-28 16:14:19
ビジネス 不景気.com 福島・会津若松「丸峰観光ホテル」が民事再生、負債20億円 - 不景気com https://www.fukeiki.com/2023/03/marumine.html 会津若松 2023-02-28 16:30:37
Azure Azure の更新情報 Public preview: Tiering capability for premium block blob storage https://azure.microsoft.com/ja-jp/updates/premiumtiering/ costs 2023-02-28 17:00:14

コメント

このブログの人気の投稿

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