投稿時間:2022-01-29 06:26:48 RSSフィード2022-01-29 06:00 分まとめ(30件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
TECH Engadget Japanese 2014年1月29日、Adaptiveキーボードを採用した「新しいThinkPad X1 Carbon」が発売されました:今日は何の日? https://japanese.engadget.com/today29-203017076.html adaptive 2022-01-28 20:30:17
AWS AWS Management Tools Blog Monitoring underlying hardware failures for EC2 instances by logging them with Amazon OpenSearch Service https://aws.amazon.com/blogs/mt/monitoring-underlying-hardware-failures-for-ec2-instances-by-logging-them-with-amazon-opensearch-service/ Monitoring underlying hardware failures for EC instances by logging them with Amazon OpenSearch ServiceSeptember Amazon Elasticsearch Service has been renamed to Amazon OpenSearch Service See details With Amazon Elastic Compute Cloud Amazon EC you can spin up a virtual server or instance of various sizes that run on system composed of server storage and network hardware AWS uses status checks to monitor the system on which … 2022-01-28 20:03:06
AWS AWS Cisco Remote Work Solutions on AWS | Amazon Web Services https://www.youtube.com/watch?v=ihvFEwc03Tc Cisco Remote Work Solutions on AWS Amazon Web ServicesConnect and secure your hybrid cloud network for remote teams with Cisco solutions on AWS Fewer workers are in the office many employees work from home or remotely from somewhere else To meet their needs your hybrid cloud network must be scalable visible secure and globally available with zero downtime Cisco solutions on AWS offer cloud and networking products and services designed to optimize your infrastructure for remote work Learn more about AWS Cisco Subscribe 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 2022-01-28 20:55:22
js JavaScriptタグが付けられた新着投稿 - Qiita 【JavaScript】コールバック関数について https://qiita.com/P-man_Brown/items/1440d80462fd6edec283 【JavaScript】コールバック関数についてはじめに本記事は、プログラミング初学者が、学習を進めていて疑問に思った点について調べた結果を備忘録も兼ねてまとめたものです。 2022-01-29 05:18:42
海外TECH MakeUseOf The 10 Best ESP32 RFID Projects https://www.makeuseof.com/best-esp32-rfid-projects/ projectswe 2022-01-28 20:45:12
海外TECH MakeUseOf How to Change the Bluetooth Codec on Your Android Device (and Why You Should) https://www.makeuseof.com/change-bluetooth-codec-android/ android 2022-01-28 20:30:12
海外TECH MakeUseOf How EU's Ban on Targeted Ads Could Affect Social Media Platforms https://www.makeuseof.com/eu-ban-targeted-ads-social-media/ How EU x s Ban on Targeted Ads Could Affect Social Media PlatformsThe European Parliament has approved a proposal to ban some targeted ads on social media platforms Here s how it could affect Facebook and Twitter 2022-01-28 20:17:10
海外TECH MakeUseOf How to Disable AutoPlay in Windows 10 and 11 https://www.makeuseof.com/windows-10-11-disable-autoplay/ windows 2022-01-28 20:15:22
海外TECH MakeUseOf Which Ride-Hailing Apps Collect the Most Data on You? https://www.makeuseof.com/which-ride-hailing-apps-collect-most-data/ collect 2022-01-28 20:10:12
海外TECH DEV Community Building a headless eCommerce shop with Magento and Vue https://dev.to/rain2o/building-a-headless-ecommerce-shop-with-magento-and-vue-g7 Building a headless eCommerce shop with Magento and Vue How it startedHaving worked in Magento for years I am all too familiar with the challenges that come with using it especially when it comes to performance However I do enjoy the extensibility of Magento and the massive community that comes with it For years Netatmo s online shop was running on Magento and it worked sufficiently for the time Between the years of technical debt as a result of numerous developers and agencies working on it and the upcoming EOL for Magento support it was quickly becoming obvious that an upgrade was due for the shop Deciding on the stackOne of the most challenging parts of any project what technology stack do we want to use We decided to stick with Magento moving to v for a number of reasons The migration from M to M should be easier than from Magento to some other platform I have worked with Magento and for a number of years and migrated multiple sites from M gt M Being the technical lead of the shop it made sense for us to use Magento as it would mean less learning time on my part and an easier onboarding process for other devs And finally we couldn t find another eCommerce solution that provided the extensibility of Magento and allowed us to host it internally due to our very serious approach to security Ok Magento it is But what about the frontend Magento is notoriously slow and seems to be getting worse in v So what about separating the frontend There are plenty of choices with all of the powerful JavaScript frameworks and libraries available today Magento PWA Studio was in development at the time and not ready to use in production Additionally it is built in React and the preferred technology for most of our frontend team is Vue So we shopped around Enter Vue Storefront With Vue Storefront VSF we could build a completely separate frontend as a PWA using tech like ElasticSearch Redis and localStorage to provide a significant boost in performance This meant a number of important things Limiting communication with MagentoBecause most of our data would be stored in ElasticSearch we could limit API calls to Magento to only necessary moments when we need live data checking current stock on checkout or when an action needs to be stored or calculated by Magento i e placing an order This means even if Magento is slower than we d like it only impacts the user s experience at specific points which we can control Of course we still took necessary measures to optimize Magento s performance as best as we could for those moments Locking down MagentoThe client never talks directly to Magento but instead goes through the Vue Storefront API This means we can completely lock down our Magento instance from the outside world only allowing communication to and from specific sources which we meticulously control Of course we still need to follow security best practices and keep everything up to date but this low level restriction provides an additional level of protection from inevitable vulnerabilities in a PHP based framework like Magento Frontend freedomWe would no longer be locked in to the Magento frontend This is great because we can share the frontend development across our team without the need to teach others an entirely new templating framework If you ve worked in a Magento theme you know this is huge it s not exactly a simple theming system This meant our Vue developers come be onboarded fairly painlessly and we could focus on what s important building it Improving deploymentsSeparation of concerns means easier iteration and less downtime With Magento being used as headless our frontend and backend can have separate projects with their own repos pipelines etc This means we can deploy back end and frontend changes independently without impacting the full stack Also since the frontend is a PWA when we do deploy to Magento the frontend won t be completely down Magento has to run a lot of things during deployment and only some of it can be handled in the pipeline before taking it down for Maintenance With VSF we can allow the frontend to run almost as usual except for those moments we need to communicate with Magento which can either be queued or handled as if the user is offline And because deploying a Vue app is much faster than a full Magento deployment we can iterate the frontend quickly with virtually no downtime for the users all without impacting the Magento administration teams Alright so it s decided Vue Storefront Magento will be our stack Technical overviewI m not going to give away too much for the sake of security but here are some details about how Vue Storefront works in general and how we implemented it specifically Let s work our way from back to front MagentoThis layer doesn t need too much detail It s a pretty standard Magento setup for the most part The key difference is that our Magento instance is not publicly accessibly Here are a few benefits and hurdles that this introduced Better access controlWe have two ways to access Magento the API is access at a specific domain while the back office is accessed from a different domain This allows us to maintain a separate list of allowed sources for the API integrations vs administrators This is on top of the access control list ACL management provided by Magento Now we ve got three layers of managed permissions to get through Firewall web server allowances managed per route and Magento ACL for both administrators and API users Backend integrations are challengingDue to these restrictions we have some potential hurdles to overcome with any new integration we introduce into Magento The rd party s system must provide a list of static IPs or a way for us to generate a list from their IP pool Not all systems can provide this which has become a blocking point on a few features At this point we must either find a new vendor request the vendor provide us an alternative or compromise on some workaround between the two of us It can be frustrating and time consuming but in the end I still believe it s worth it Magento URLs are always wrongMagento comes with some built in code for generating URLs for products categories pages etc However these are inherently wrong for us now because it uses the Magento URL and not our frontend This can be a concern with emails sent from Magento for example or with any rd party module that might export data This isn t a concern on the frontend as Vue Storefront handles this but when it comes to Magento only functionality integrations this can be an issue For now the only solution I have been able to come up with is using well placed plugins to generate frontend URLs when a frontend URL is trying to be generated by Magento To do this I added some configuration fields in Magento to provide things like the frontend base URL and some path details We also pull some final data from ElasticSearch more on that later to use the same indexed data as VSF I have hopes that Magento might introduce a similar type of feature one day especially with the new PWA Studio they provide and the increasing popularity of the headless approach ElasticSearchThe team at Vue Storefront provides a Magento module which uses Magento s native indexing functionality to index all pertinent data to ElasticSearch ES in a format which can be utilized by VSF Because it hooks into the native indexing of M data can be automatically reindexed on Save if you wish to configure it to do so Now I know Magento also comes with ES and they can use the same instance I believe but VSF requires the data to be sent in a uniform way it can read They have a platform agnostic approach so the data on the front needs to be as pure as possible removing back end platform flavor where possible The module seems well built and even has a CLI command for reindexing manually with a few options We have also created a few of our own modules which extend the VsBridge module to index some custom data points to ES Thanks to this module the static data now sits in ES allowing our frontend to quickly fetch minimal data as needed without putting load on Magento Vue Storefront APIVue Storefront comes with its own API which serves as a sort of middleware It is written in NodeJS which is nice because it means another technology isn t introduced into our stack JavaScript developers can work on this layer as needed and feel right at home This API layer is what the frontend uses for all of its requests The API handles the decision of where and how to send or retrieve data It also handles the platform specific communication this is the pivot point for the platform agnostic approach It can decide if it should check Redis cache for data being requested or look in ElasticSearch request directly from Magento or whatever your backend platform might be or any other rd party integration you might decide to introduce Because it is built in Node this means you can handle API integrations without exposing keys and such to the client side It also lets the frontend not worry about system logic and focus on being a great frontend Note The VSF team is working on a new Storefront API which is being built in a more modular and agnostic way I believe their intention is for it to be able to be used with any stack not tied to VSF on the front I haven t used it yet as it s still not production ready last time I checked but I m excited to try it out Vue StorefrontFinally the part everyone sees the blazing fast Vue frontend Vue Storefront uses Vuex under the hood for state management and has separated the stores in a modular fashion similar to Magento s modular approach of extensions in v It also has example modules for a great starting point in building your own modules You can easily include exclude any modules you wish because not all shops are alike For example I recently built our own Newsletter module and excluded the built in Newsletter module This was because we had so many differences in how we wanted to handle it that it just made more sense than trying to extend the core module to work for us The framework is extensible as well and getting better every day In addition to standard Vue features like subscribe and subscribeAction VSF has introduced hooks in key places throughout the core You can fairly painlessly subscribe to a particular hook to either trigger a reaction to a specific event or in some cases mutate the data being used after the hook Bus Events are also used throughout core as another way to easily hook into events to trigger your own behavior at key points There is a basic theme which comes with Vue Storefront though in recent versions they have been pushing to use Capybara as a starting point or reference point for your theme building Of course this is up to you but it s nice to have a reference when building a theme in a framework like this Note If you look at Vue Storefront you will see v and V At the time of building our shop VSF was not ready for Magento It is a new build of Vue Storefront but they are focusing on other back end integrations as the v has a solid integration with M Just something worth noting VSF is built on Nuxt which is exciting as well Final wordsIf you made it this far thank you for sticking with me Just a few closing thoughts Looking at the architecture it does seem quite complex compared to a standard Magento setup but in the end it is totally worth it Plus with the separation of technologies you can separate responsibilities more easily and it becomes less overwhelming One thing that I really enjoy about this setup is that everything is Open Source Magento has always been open source and has a massive community Vue Storefront is open source along with all of its tools Their community is rapidly growing and very active During our project I was able to contribute to various VSF projects multiple times as well as participate in community conversations on their Slack Discord I truly enjoy working in technologies with this sort of environment plus it s a nice feeling to know you contributed to a core piece of technology you use day to day Questions Comments There is so much I didn t get to talk about in this already too long post If there is something you would like to hear more about leave a comment and let me know If it s something I can disclose I d be happy to write another post about more specific pieces Let me know what technology you used for your eCommerce site I d love to see what I m missing out on 2022-01-28 20:14:52
Apple AppleInsider - Frontpage News Apple launches support for unlisted App Store apps accessible via link https://appleinsider.com/articles/22/01/28/apple-launches-support-for-unlisted-app-store-apps-accessible-via-link?utm_medium=rss Apple launches support for unlisted App Store apps accessible via linkThe App Store now supports unlisted apps that are only accessible with a link Apple has announced in an update on its developer website Apple App Store logo Read more 2022-01-28 20:28:21
Apple AppleInsider - Frontpage News Apple TV+ 'Extrapolations' adds Heather Graham, Diane Lane, Judd Hirsch and more to cast https://appleinsider.com/articles/22/01/28/apple-tv-extrapolations-adds-heather-graham-diane-lane-judd-hirsch-and-more-to-cast?utm_medium=rss Apple TV x Extrapolations x adds Heather Graham Diane Lane Judd Hirsch and more to castThe Apple TV climate change anthology series Extrapolations has announced an expansion of the cast making it even more star studded than before Murray Bartlett in HBO s The White Lotus New cast members include Diane Lane Heather Graham Ben Harper Judd Hirsch Hari Nef Neska Rose Murray Bartlett and Yara Shahidi They join the previously announced Meryl Streep Matthew Rhys Tobey Maguire Forest Whitaker Edward Nortan and more Read more 2022-01-28 20:16:33
Apple AppleInsider - Frontpage News Epic vs. Apple takes new turn as 34 US states & DOJ side with 'Fortnite' maker https://appleinsider.com/articles/22/01/28/epic-vs-apple-takes-new-turn-as-34-us-states-side-with-fortnite-maker?utm_medium=rss Epic vs Apple takes new turn as US states amp DOJ side with x Fortnite x makerAttorneys general for states and the District of Columbia have told an appeals court that Apple continues to stifle competition with its monopoly on app distribution via the App Store Still from Epic Games Free Fortnite videoThe Epic Games vs Apple lawsuit saw a ruling in that chiefly sided with Apple but the appeals process is continuing Now the attorneys general have submitted a joint statement into the appeal backing Epic Read more 2022-01-28 20:26:31
海外TECH Engadget Neil Young was fed up with Spotify’s ‘shitty’ sound quality anyway https://www.engadget.com/neil-young-spotify-sound-quality-joe-rogan-vaccine-misinformation-205817478.html?src=rss Neil Young was fed up with Spotify s shitty sound quality anywayNeil Young s frustrations with Spotify go far beyond COVID vaccine misinformation A day after his music was removed from the platform he said he quot felt better quot after leaving and slammed Spotify for its sound quality compared with other streaming services quot Amazon Apple Music and Qobuz deliver up to percent of the music quality today and it sounds a lot better than the shitty degraded and neutered sound of Spotify Young wrote in the latest letter published to his website quot If you support Spotify you are destroying an art form quot He urged fans to switch to quot a platform that truly cares about music quality quot Young who claims quot Spotify streams the artist s music at five percent of its quality quot has long been vexed by the audio quality on some streaming platforms He temporarily removed his music from them in Young launched his own audio player and music download platform that year but Pono shut down in In February Spotify said it planned to roll out a CD quality music streaming option in some markets that year That didn t happen The company said earlier this month it was quot excited to deliver a Spotify HiFi experience to Premium users in the future quot but didn t offer a timeline Apple Music Amazon Music and Tidal all started offering CD quality music streaming as part of their standard plans last year Deezer and Qobuz also offer hi res streaming Earlier this week Young accused Spotify of allowing Joe Rogan to share COVID vaccine misinformation and gave the platform an quot it s him or me quot ultimatum Spotify which reportedly paid north of million to secure the exclusive rights to Rogan s podcast and said it has taken down more than COVID related podcast episodes barely flinched The service pulled the musician s songs though said it regretted Young s decision and hoped he d return soon Meanwhile Young wrote that he supported free speech and companies right to choose what to profit from quot just as I can choose not to have my music support a platform that disseminates harmful information He said he was standing quot in solidarity with the frontline healthcare workers who risk their lives every day to help others quot and quot as an unexpected bonus I sound better everywhere else quot 2022-01-28 20:58:17
海外TECH Engadget US lawmakers want to make sure pandemic telehealth coverage doesn't lapse https://www.engadget.com/telehealth-pandemic-coverage-extension-before-permanent-202008203.html?src=rss US lawmakers want to make sure pandemic telehealth coverage doesn x t lapseThe pandemic pushed US lawmakers to provide provisions to expand medical coverage for telehealth in speeding up a process that would otherwise have taken years Since then there have been efforts to make the change permanent through things like the Telehealth Expansion Act of But there is an interim period that could present some uncertainty over whether people can get crucial telehealth services while permanent legislation is drawn up Today a bipartisan group of lawmakers led by Senators Brian Schatz D Hawai i and Roger Wicker R Miss said they re quot calling for the extension of expanded coverage of telehealth services to be included in must pass legislation in February quot The group published a letter addressing Senate majority leader Mitch McConnell and House Speaker Nancy Pelosi as well as their minority counterparts and notable signees include Senators Marco Rubio R Fla Kyrsten Sinema D Ariz Lindsey Graham R S C Elizabeth Warren D Mass and Bernie Sanders I Vt nbsp The letter states quot While Congress prepares to enact permanent telehealth legislation we urge you to include an extension of the pandemic telehealth authorities in must pass government funding legislation in February quot nbsp Currently pandemic telehealth decision makers have temporary authority and that s tied to the COVID public health emergency declaration As stated in today s letter the emergency declaration is renewed in three month increments quot Without more definitive knowledge about the duration of the pandemic and Medicare s long term coverage of telehealth many organizations have been hesitant to fully invest in telehealth quot In addition to providing more confidence to providers that investing in telehealth will be a sound long term investment adding an extension to telehealth coverage while making it permanent will also quot reassure patients that their care will not end abruptly quot The lawmakers called for quot An extension to maintain expanded coverage of Medicare telehealth services for a set period of time quot which the letter said quot would provide much needed certainty to health care providers and patients quot They believe an extension would also allow additional time for studies to be conducted on the impact of telehealth which quot could help inform Congress s next steps on permanent telehealth legislation and appropriate program integrity and beneficiary protections quot Therefore the group is also asking to ensure that quot an extension not include unnecessary statutory barriers in accessing telehealth services during this data collection and analysis period quot which could prevent people from getting essential care 2022-01-28 20:20:08
海外科学 NYT > Science Two Simple Tricks That Help Owls Stay in Their New Homes https://www.nytimes.com/2022/01/28/science/burrowing-owls-transplants.html habitats 2022-01-28 20:31:24
海外科学 NYT > Science Jana Bennett, Former Director of BBC Television, Dies at 66 https://www.nytimes.com/2022/01/26/business/media/jana-bennett-dead.html Jana Bennett Former Director of BBC Television Dies at An American born executive who transformed the presentation of science on TV and was considered one of the most influential women in her industry 2022-01-28 20:58:28
ニュース BBC News - Home Downing Street parties: Sue Gray won't wait for police inquiry https://www.bbc.co.uk/news/uk-politics-60177028?at_medium=RSS&at_campaign=KARANGA downing 2022-01-28 20:51:49
ニュース BBC News - Home Storm Malik: Winds up to 80mph could hit parts of UK https://www.bbc.co.uk/news/uk-60171581?at_medium=RSS&at_campaign=KARANGA england 2022-01-28 20:41:26
ニュース BBC News - Home Ten people injured in Pittsburgh bridge collapse https://www.bbc.co.uk/news/world-us-canada-60173771?at_medium=RSS&at_campaign=KARANGA biden 2022-01-28 20:22:41
ニュース BBC News - Home Covid-19: Vulnerable people miss out on vital priority tests https://www.bbc.co.uk/news/uk-60161763?at_medium=RSS&at_campaign=KARANGA patients 2022-01-28 20:07:43
ビジネス ダイヤモンド・オンライン - 新着記事 【スクープ】セブン&アイ経営陣がDX部門を「見殺し」にした理由、コンビニ至上主義の呪縛 - セブンDX敗戦 https://diamond.jp/articles/-/293808 至上主義 2022-01-29 05:25:00
ビジネス ダイヤモンド・オンライン - 新着記事 ウクライナ侵攻をもくろむプーチンの「本当の狙い」はどこにあるか - ロシアから見た「正義」 “反逆者”プーチンの挑戦 https://diamond.jp/articles/-/294660 退避命令 2022-01-29 05:20:00
ビジネス ダイヤモンド・オンライン - 新着記事 生き残るプラットフォームと、衰退するプラットフォームの「決定的な差」 - 事例で学ぶ「ビジネスモデルと戦略」講座 https://diamond.jp/articles/-/294642 2022-01-29 05:15:00
ビジネス ダイヤモンド・オンライン - 新着記事 花王の巧みな産業医活用術、7年連続「健康経営銘柄」選定の肝は“データで見える化” - 名ばかり産業医の闇 https://diamond.jp/articles/-/293784 中小企業 2022-01-29 05:10:00
ビジネス ダイヤモンド・オンライン - 新着記事 「FIRE」は日本に根付くのか?不労所得で生きるという令和的価値観 - 井の中の宴 武藤弘樹 https://diamond.jp/articles/-/294734 不労所得 2022-01-29 05:05:00
北海道 北海道新聞 <社説>第6波急拡大 場当たり対応 目に余る https://www.hokkaido-np.co.jp/article/639169/ 場当たり 2022-01-29 05:01:00
ビジネス 東洋経済オンライン 日本の「反ワクチン運動」がどうも異質に見える訳 同じ世界観にのめり込む享楽こそが至上の価値 | 不安な時代、不機嫌な人々 | 東洋経済オンライン https://toyokeizai.net/articles/-/507354?utm_source=rss&utm_medium=http&utm_campaign=link_back 全国各地 2022-01-29 05:40:00
ビジネス 東洋経済オンライン ヨーグルト「最高の食べ方」、話題の腸活法の4秘訣 善玉菌が増える!「腸活効果を高めるコツ」は? | 健康 | 東洋経済オンライン https://toyokeizai.net/articles/-/505928?utm_source=rss&utm_medium=http&utm_campaign=link_back 東洋経済オンライン 2022-01-29 05:20:00
海外TECH reddit Yay the podcast is finally over! https://www.reddit.com/r/TheCinemassacreTruth/comments/sezhub/yay_the_podcast_is_finally_over/ Yay the podcast is finally over submitted by u dddfgggggdddfff to r TheCinemassacreTruth link comments 2022-01-28 20:09:25

コメント

このブログの人気の投稿

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