投稿時間:2023-02-09 06:24:38 RSSフィード2023-02-09 06:00 分まとめ(29件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
AWS AWS Partner Network (APN) Blog Telemetry-Based Decisions for Auto Loans and Usage-Based Insurance on AWS from Globe Cascadeo https://aws.amazon.com/blogs/apn/telemetry-based-decisions-for-auto-loans-and-usage-based-insurance-on-aws-from-globe-cascadeo/ Telemetry Based Decisions for Auto Loans and Usage Based Insurance on AWS from Globe CascadeoUsage based insurance UBI programs are supported by telematics and collect data about vehicle usage and driving behaviors including speeding harsh braking and acceleration Learn about a vehicle telematics solution from Globe Cascadeo and how it can be leveraged by insurers and drivers for usage based insurance This post also covers the benefits and tradeoffs of UBI and touch upon other potential use cases for this solution 2023-02-08 20:42:49
AWS AWS DevOps Blog Using GitHub Actions with Amazon CodeCatalyst https://aws.amazon.com/blogs/devops/using-github-actions-with-amazon-codecatalyst/ Using GitHub Actions with Amazon CodeCatalystAn Amazon CodeCatalyst workflow nbsp is an automated procedure that describes how to build test and deploy your code as part of a continuous integration and continuous delivery CI CD system You can use GitHub Actions alongside native CodeCatalyst actions in a CodeCatalyst workflow Introduction In a prior post in this series nbsp Using Workflows to Build Test and Deploy … 2023-02-08 20:21:13
AWS AWS How do I troubleshoot Remote Desktop Connection issues using EC2Rescue? https://www.youtube.com/watch?v=W2Pk1DlbQ2I How do I troubleshoot Remote Desktop Connection issues using ECRescue Skip directly to the demo For more details see the Knowledge Center article with this video Courtney shows you how to troubleshoot Remote Desktop Connection issues to your Amazon EC Windows instance using ECRescue Introduction Additional Information Attach storage to a helper instance Use ECRescue Attach storage to your original instance ClosingSubscribe More AWS videos More AWS events videos ABOUT AWSAmazon Web Services AWS is the world s most comprehensive and broadly adopted cloud platform offering over fully featured services from data centers globally Millions of customers ーincluding the fastest growing startups largest enterprises and leading government agencies ーare using AWS to lower costs become more agile and innovate faster AWS AmazonWebServices CloudComputing 2023-02-08 20:08:06
AWS AWS How can I resolve errors when there aren't enough IP addresses available for my AWS Glue job? https://www.youtube.com/watch?v=auzXtXd_Qzc How can I resolve errors when there aren x t enough IP addresses available for my AWS Glue job Skip directly to the demo For more details see the Knowledge Center article with this video Zikhona shows you how to resolve the AWS Glue error The specified subnet does not have enough free addresses to satisfy the request Introduction Reduce the number of data processing units for the job Delete unused elastic network interfaces Create and use a subnet with more available IP addresses ClosingSubscribe More AWS videos More AWS events videos ABOUT AWSAmazon Web Services AWS is the world s most comprehensive and broadly adopted cloud platform offering over fully featured services from data centers globally Millions of customers ーincluding the fastest growing startups largest enterprises and leading government agencies ーare using AWS to lower costs become more agile and innovate faster AWS AmazonWebServices CloudComputing 2023-02-08 20:04:19
python Pythonタグが付けられた新着投稿 - Qiita pythonの連想配列で存在しないキーを取得したい。 https://qiita.com/gungungult_6423/items/9e727f8cf1d6090c0b79 listabclistacdhas 2023-02-09 05:24:50
海外TECH MakeUseOf 7 Ways Electric Pickup Trucks Beat ICE Pickups https://www.makeuseof.com/ways-electric-pickup-trucks-beat-ice-pickups/ pickup 2023-02-08 20:45:16
海外TECH MakeUseOf How to Manage Startup Applications on Ubuntu https://www.makeuseof.com/manage-startup-applications-on-ubuntu/ system 2023-02-08 20:30:16
海外TECH MakeUseOf How You Can Use Technology to Achieve Wellness in All Its Forms https://www.makeuseof.com/utilize-technology-achieve-wellness-all-forms/ intellectual 2023-02-08 20:30:16
海外TECH MakeUseOf How to Restart Print Spooler Service on Windows https://www.makeuseof.com/windows-restart-print-spooler-service/ windows 2023-02-08 20:15:16
海外TECH DEV Community Using NextJS and AWS to Scale Up Headless BigCommerce Stores https://dev.to/clearhorizondigital/using-nextjs-and-aws-to-scale-up-headless-bigcommerce-stores-543e Using NextJS and AWS to Scale Up Headless BigCommerce StoresThis post was written for the Clear Horizon Digital Blog Original post Optimising Headless BigCommerce OverviewToday we re exploring the patterns we can use to build highly scalable and performant online stores Working with the BigCommerce API NextJS and AWS we ll lay out an architectural pattern that leverages caching strategies to support rapidly growing custom eCommerce stores Headless eCommerceAgencies or businesses working in eCommerce will likely have come across headless architectures Headless eCommerce is the concept of decoupling your store s frontend and backend allowing for custom store development without the hassle of maintaining and supporting a backend with regularly changing compliance requirements We re often asked to build out highly scalable eCommerce platforms so we decided to partner with BigCommerce as our eCommerce PaaS provider Due to our managed service offering this is an ideal scenario the flexibility to build without guide rails while not having to worry about maintaining a fully featured eCommerce backend Working with the BigCommerce APIAs a certified BigCommerce agency partner we routinely build out custom eCommerce platforms using the BigCommerce API With any third party integration though it comes with its own complexities For BigCommerce it s vital that we correctly manage how and when we re calling the API for two major reasons Calls to BigCommerce are fast but still slower than a cached response For example a REST API request to BigCommerce that fetches products with descriptions will come in at around ms on average By contrast that latency can be reduced to sub ms by leveraging a CDN cache or under ms when using a browser cache Requests to BigCommerce will contribute to their server load and rate limit BigCommerce enforces rate limits and fair use limits for their APIs Depending on your store plan this can vary significantly below is a list of the limitations at the time of writing For an up to date list you can check the BigCommerce pricing plans Standard plans month or Plus plans month are subject to a requests s rate limit Pro plans month are bumped up to requests s rate limit Enterprise plans are given unlimited access however there s still an expectation that you won t knock over their infrastructure with huge numbers of requests Ultimately the more caching we can implement the faster our store will be and the less concern we need to have over BigCommerce rate limits and increasing infrastructure costs GraphQL vs RESTOne final thing to mention before getting stuck into our caching options is that BigCommerce exposes both a REST and GraphQL API Utilising GraphQL gives us the ability to fetch multiple sets of data from a single endpoint thereby reducing the number of requests we re making i e fetching a list of products categories and brands in one request Currently the BigCommerce GraphQL API isn t currently as fully featured as its REST counterpart so you ll likely find yourself needing to use a combination of both for your storefront Our Caching OptionsWe re going to be looking at four caching techniques we use to effectively work with the BigCommerce API for online stores that need to be scalable and performant ISR Incremental Static Regeneration Browser LevelCDN LevelAPI Level Easy Wins ISR with NextJSISR or Incremental Static Regeneration “allows you to create or update static pages after you ve built your site ISR is a dream feature for eCommerce frontends where there are often thousands of product pages that rarely change but must be fetched from an external CMS Pages with ISR enabled have a configurable expiry or revalidate time in essence they provide a JSON cache of the initial page load props Requests to the page will follow one of routes For this example let s assume a revalidate time of seconds The page has never received a request before The page is loaded as normal but the API requests made are then added to a server side cache The page has received a request in the previous seconds The page is loaded and initial props for the page are served from the NextJS server side cache The page has not received a request in the past seconds The page is loaded and the stale cache is served Behind the scenes NextJS will refresh the cache for the next user This pattern of serving a cached set of initial page props is an easy win there s next to no configuration required and enables us to bundle up multiple API requests in a single cache If you notice you re brushing up against the BigCommerce rate limits you can easily tweak the revalidate time to quickly change your caching policy for individual pages For pages that warrant a long revalidate time but also need to be up to date after modifications i e popular product pages that are undergoing urgent pricing changes there s also the option for on demand revalidation to manually purge the NextJS cache Why can t we just use ISR everywhere ISR is an incredible tool to have in your arsenal but it needs to be used in combination with other caching strategies In some cases you ll need more flexibility than ISR can provide One common scenario is the use of query parameters Almost all eCommerce websites will use query parameters in one way or another be it for search functionality filtering or pagination With no current support for query parameters in ISR you re left with the option of converting all query parameters to path parameters or disabling ISR for that page There are times where ISR can be intrinsically slower than alternatives If you have multiple pages that are making the exact same request it s often wiser to extract that request out into a browser side call For example a promotional banner that appears on all pages should be fetched using the useSWR hook then stored in state or cached by the browser using a cache control header Architectural ConsiderationsOne approach we always recommend when building headless BigCommerce stores is to add a basic API proxy layer between the frontend and the BigCommerce API This gives us more finite control over the data that is provided to the frontend and opens the door to database browser side and CDN caches The following HLD is a simplified version of the architecture that we recommend for AWS hosted headless BigCommerce projects Web Browser The project frontend this is where we client side requests will be sent from For the purpose of this HLD we haven t included NextJS server side requests which would be made from inside the AWS infrastructure Cloudfront The AWS managed CDN This is our first server side caching opportunity and routes requests to the API origin API Layer The flavour of the API isn t relevant for this implementation We tend to prefer NodeJS in Lambda for its pricing performance and scalability ElasiCache An ephemeral database for use cases where we are augmenting data from the BigCommerce API with separately cacheable data CloudWatch AWS s log aggregation visualisation tool This is where we ll set up alerting for API level errors warnings Note Depending on the scale of the project ElastiCache is not always necessary we tend to include it when there are additional third party data providers separate to BigCommerce Browser CachingBy proxying requests via a simple NodeJS API we gain the ability to add the cache control header to responses Using the cache control header in combination with the max age and stale while revalidate directives we can instruct the customer s browser to store a response in its local cache This is handy when we know a single user will make the same request multiple times and the response won t frequently change Unlike database or CDN caches browser caching doesn t incur any additional cloud charges as all responsibility is handed off to the customer s web browser Because browser caches are kept on the client side they re by far the fastest There is no network overhead which results in a significant performance increase Browser caching is a cheap and quick way of reducing the number of requests we make to both our own servers and the BigCommerce API further amplifying performance and steering us away from hitting the rate limits Why can t we just use browser caching everywhere Browser caches are only going to be able to cache one user s request at a time so we ll only see significant gains in cases where a single user is likely to make the same requests multiple times If multiple users are making the same request only once then browser caching won t have any effect When using the cache control header we must also consider the risk of urgent changes Because caches are handed off to the browser they re out of our control to purge Long lived caches must be waited out even if an emergency change to an API response is made i e pricing errors the browser will not find out until the max age has elapsed CDN Level CachingArguably the most effective all round cache by standing up a Content Delivery Network CDN like CloudFront upstream of our APIs we can apply granular caching rules for individual paths This short circuits the request to both BigCommerce and our NodeJS API layer by returning data directly from Cloudfront Where possible we should always prefer a CDN level cache over an ephemeral database cache due to the reduced round trip time and lower compute charges Unlike browser caching a Cloudfront cache can be manually purged in the case of urgent API response changes i e pricing errors incorrect promotions etc CloudFront caching will always outperform ElastiCache in terms of speed and cost due to the shorter journey a given request will take It s a great first port of call for improving performance and reducing the risk of rate limiting Why can t we just use CDN level caching everywhere We can…sort of In some cases though it s more effective to store data closer to the API handler There are a couple of common scenarios where we may want to store our cached data closer to the API handler Where there are multiple data sources that want to be cached at different rates for example if we were to augment our frequently changing product data with relatively static content from a separate CMS Where multiple API handlers need access to the same cached data I e data that is being constantly ingested from a third party live pricing service Ephemeral Database CachingUtilising an in memory database is a popular option for caches that may need to be accessed by multiple API endpoints If you re hosting on AWS the obvious answer is ElastiCache with Redis ElastiCache is the most expensive cache as requests are still being made to our API endpoint and that endpoint is still going to need to make a connection to ElastiCache Ephemeral database caching is particularly valuable when we re having to combine data from multiple sources such as BigCommerce and a CMS We re able to make the requests once then store any cacheable results in ElastiCache This gives us the added benefits of being cached in one central database so multiple API endpoint handlers can access it independently Why can t we just use Ephemeral Database caching everywhere This type of caching is the most expensive both in terms of price and time When possible we should always avoid increasing the request journey by short circuiting it at either the CDN level or the browser level In eCommerce we consider it a last resort when we cannot implement the cache control header or a Cloudfront cache SummaryIn this post we ve talked about a number of ways that we can utilise caching NextJS and AWS to optimise our headless BigCommerce architecture Having a quick storefront is critical for driving customer conversion and increasing user retention Understanding how to effectively work with the BigCommerce API further expands the ways that we can build features into an online store About UsClear Horizon Digital is a Leeds based Software Consultancy with a track record of building high converting custom eCommerce platforms As a Certified BigCommerce Agency Partner we deliver headless eCommerce solutions for companies that are looking to scale up their online offering through a bespoke platform 2023-02-08 20:14:38
Apple AppleInsider - Frontpage News Show off your thoughts with Twitter Blue's new 4000 character limit https://appleinsider.com/articles/23/02/08/show-off-your-thoughts-with-twitter-blues-new-4000-character-limit?utm_medium=rss Show off your thoughts with Twitter Blue x s new character limitTwitter is offering its Twitter Blue subscribers a new perk in a considerably increased character limit ーwith some caveats Twitter Blue users can post character tweetsJust a day before Twitter s free API goes away the company hopes to generate some good PR and goodwill with a new feature rollout ー character limits Subscribers to Twitter Blue will be able to post character posts up from one the feature rolls out in full Read more 2023-02-08 20:57:00
海外TECH Engadget Twitter Blue users can now post tweets with up to 4,000 characters https://www.engadget.com/twitter-blue-4000-characters-tweets-205319437.html?src=rss Twitter Blue users can now post tweets with up to charactersYou now have a very practical reason to subscribe to Twitter Blue beyond long video uploads and the coveted blue checkmark As of today Blue members in the US can post tweets up to characters long You can t currently schedule these posts or save them as drafts but this could be helpful if you d rather not write a lengthy multi tweet thread just to share your thoughts Free Twitter users can still reply to and quote these tweets And yes Twitter is aware that scrolling through a sea of these lengthy posts could be frustrating Any tweet longer than characters now hides any extra content beyond a quot show more quot prompt Blue normally costs per month or per year need more than characters to express yourself we know that lots of you do…and while we love a good thread sometimes you just want to Tweet everything all at once we get that so we re introducing longer Tweets you re gonna want to check this out tap this …ーTwitter Blue TwitterBlue February This probably won t prompt you to switch from social networks like Facebook or Mastodon where long posts have been available for a while However it could be helpful if you d like to share the same post across multiple social platforms without having to split it up or write a condensed version There s certainly pressure on Twitter to make Blue more appealing Twitter reportedly only had Blue subscribers in the US as of mid January and roughly worldwide While the revamped subscription hasn t been available for very long it needs to be highly attractive to enthusiasts if Elon Musk wants to achieve a goal of generating half of Twitter s revenue from subscriptions 2023-02-08 20:53:19
海外TECH Engadget Netflix's password-sharing crackdown begins in Canada, New Zealand, Portugal and Spain https://www.engadget.com/netflix-account-sharing-rollout-countries-202340036.html?src=rss Netflix x s password sharing crackdown begins in Canada New Zealand Portugal and SpainNetflix s fight against password sharing is expanding in earnest The company is rolling out paid account sharing in Canada New Zealand Portugal and Spain after trialing the effort in Latin America If you live in one of these countries you ll need to set a primary location to have unfettered access at home If you have any friends or family who want to share your account you ll have to subscribe to either the Standard or Premium tier and pay a fee in Canada and New Zealand € in Portugal and € in Spain for up to two extra users outside of your home You can still watch on your phone or sign into the service on a device elsewhere like a smart TV at a hotel Netflix also lets you convert a profile into a new account The company promises to tweak paid sharing based on feedback and to continue the deployment over the quot coming months quot The streaming pioneer isn t shy about its rationale As it has argued in the past Netflix claims account sharing is hurting its bottom line The million plus households sharing accounts are quot impacting Netflix s ability quot to invest in new content according to product director Chengyi Long In theory paid sharing improves the company s revenue without forcing affected users to pay full price for a completely separate account It s not clear how new regions will take to the policy Many rival services don t have account sharing restrictions and some sharers may be averse to paying anything to use someone else s access While we wouldn t expect users to switch services in droves there may be some who simply forego Netflix altogether to avoid paying a fee 2023-02-08 20:23:40
海外TECH Engadget Trump White House asked Twitter to take down Chrissy Teigen's mean tweet about him https://www.engadget.com/donald-trump-white-house-twitter-chrissy-teigen-tweet-201406093.html?src=rss Trump White House asked Twitter to take down Chrissy Teigen x s mean tweet about himA former Twitter employee has shed new light on the company s dealings with the White House while former President Donald Trump was in office Anika Navaroli a former senior member of Twitter s US Safety Policy testified at a House Oversight Committee hearing that her team had received a request to remove a tweet making fun of the former president She revealed the previously unreported interaction during hearing with former Twitter executives over their handling of a New York Post story about Hunter Biden s laptop Republicans on the committee have equated Twitter s initial decision to block links to the story with “censorship and criticized the company for its interactions with government officials But Navaroli revealed that Twitter had also received at least one request in from the Trump White House regarding a tweet they wanted removed The tweet came from Chrissy Teigen who had called the president a “pussy ass bitch in response to comments he had made about her and her husband According to Navaroli someone from the White House “reached out to ask that this tweet be removed and that her team had to evaluate whether the tweet violated the company s “insults policy She said they ultimately determined the tweet did not and it remained up The Trump WH wanted Teigen s tweet calling Trump a PAB taken down lol pic twitter com WkyQoJzIPーAcyn Acyn February Earlier in the hearing Navaroli also revealed that Twitter had on at least one occasion changed its policies in order to avoid taking action against a tweet from Trump She said that the company had removed internal “moderation guidance that used “go back to where you came from as an example of language that would break its rules after Trump had used the phrase in reference to New York Representative Alexandria Ocasio Cortez and other lawmakers She said a more senior executive former trust and safety head Del Harvey “overrode her assessment that the tweet broke Twitter s rules AOC So Twitter changed their own policy after Trump violated it to accommodate his tweets pic twitter com ViBtyqWCーAcyn Acyn February The hearing wasn t the first time members of Congress have heard from Navaroli She previously spoke with the committee investigating the January th attack about her efforts to warn Twitter officials about threats leading up to the attack quot Twitter leadership bent and broke their own rules in order to protect some of the most dangerous speech on the platform quot she said in her opening statement 2023-02-08 20:14:06
海外TECH WIRED The End of the Zoom Boom https://www.wired.com/story/zoom-layoffs-future/ status 2023-02-08 20:26:07
海外ニュース Japan Times latest articles Hope fading in hunt for survivors of Turkey-Syria quake amid freezing cold https://www.japantimes.co.jp/news/2023/02/09/world/turkey-syria-quake-response-criticism/ country 2023-02-09 05:38:30
ニュース BBC News - Home Sunak says nothing off table as Zelensky asks for jets https://www.bbc.co.uk/news/uk-politics-64571526?at_medium=RSS&at_campaign=KARANGA fighter 2023-02-08 20:37:48
ニュース BBC News - Home Nicola Bulley: Dive team pull out as search extended https://www.bbc.co.uk/news/uk-england-lancashire-64573628?at_medium=RSS&at_campaign=KARANGA bulley 2023-02-08 20:46:57
ニュース BBC News - Home The clues in the State of the Union that suggest Joe Biden will run for president in 2024 https://www.bbc.co.uk/news/world-us-canada-64567508?at_medium=RSS&at_campaign=KARANGA america 2023-02-08 20:01:13
ニュース BBC News - Home FA Cup: Harry Wilson fires Fulham into early lead at Sunderland https://www.bbc.co.uk/sport/av/football/64576779?at_medium=RSS&at_campaign=KARANGA sunderland 2023-02-08 20:10:05
ビジネス ダイヤモンド・オンライン - 新着記事 「ビールの販売謝礼金を減らされた…」飲食店とメーカーの蜜月に亀裂、遠のくビール復活 - ビール完敗 https://diamond.jp/articles/-/317091 関係悪化 2023-02-09 05:25:00
ビジネス ダイヤモンド・オンライン - 新着記事 韓国サムスンとSKが日米台半導体共闘「仲間外れ」に焦り!窮余の策はキオクシア買収提案 - 半導体 最後の賭け https://diamond.jp/articles/-/317277 2023-02-09 05:20:00
ビジネス ダイヤモンド・オンライン - 新着記事 マイクロソフトのアクティビジョン買収、競争阻害の恐れ=英当局 - WSJ発 https://diamond.jp/articles/-/317465 阻害 2023-02-09 05:16:00
ビジネス ダイヤモンド・オンライン - 新着記事 3カ月後の死亡確率まで算出!SOMPOケアが進める「科学的介護」の全貌 - 最適な介護施設選び&老人ホームランキング https://diamond.jp/articles/-/316633 負担軽減 2023-02-09 05:15:00
ビジネス ダイヤモンド・オンライン - 新着記事 敵は三菱商事にあらず!伊藤忠がアクセンチュア対抗戦を仕掛ける理由 - コンサル大解剖 https://diamond.jp/articles/-/317428 三菱商事 2023-02-09 05:10:00
ビジネス ダイヤモンド・オンライン - 新着記事 ヤマトは「値上げ」表明、佐川は大減収…物流業界がEC堅調でも苦しいワケ - ダイヤモンド 決算報 https://diamond.jp/articles/-/317436 2023-02-09 05:05:00
ビジネス 電通報 | 広告業界動向とマーケティングのコラム・ニュース アスリートブレーンズ為末大の「緩急自在」vol.31 https://dentsu-ho.com/articles/8457 緩急自在 2023-02-09 06:00:00
ビジネス 電通報 | 広告業界動向とマーケティングのコラム・ニュース 共存共栄の実現とサステナブル経営を伝えるグンゼ博物苑 https://dentsu-ho.com/articles/8449 共存共栄 2023-02-09 06:00:00
ビジネス 東洋経済オンライン 東大生が「共通テスト」実際解いて得た来年の教訓 「従来の解法テクニックはもう使えない」説を検証 | 学校・受験 | 東洋経済オンライン https://toyokeizai.net/articles/-/651093?utm_source=rss&utm_medium=http&utm_campaign=link_back 大学入学共通テスト 2023-02-09 05:40:00

コメント

このブログの人気の投稿

投稿時間:2021-06-17 05:05:34 RSSフィード2021-06-17 05:00 分まとめ(1274件)

投稿時間:2021-06-20 02:06:12 RSSフィード2021-06-20 02:00 分まとめ(3871件)

投稿時間:2020-12-01 09:41:49 RSSフィード2020-12-01 09:00 分まとめ(69件)