投稿時間:2022-12-21 06:31:38 RSSフィード2022-12-21 06:00 分まとめ(31件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
AWS AWS ¿Cómo puedo reactivar mi cuenta de AWS suspendida? https://www.youtube.com/watch?v=E7qeG3Tl8ew ¿Cómo puedo reactivar mi cuenta de AWS suspendida Para más detalles vea el artículo del centro de conocimiento con este video Mary le muestra cómo reactivar su cuenta de AWS suspendida Introduction Chapter Chapter 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 2022-12-20 20:01:29
python Pythonタグが付けられた新着投稿 - Qiita Stress Majorizationによるグラフ描画 https://qiita.com/_likr/items/a7070f6188a7a11ad89e stressmajorization 2022-12-21 05:55:56
海外TECH Ars Technica MSG defends using facial recognition to kick lawyer out of Rockettes show https://arstechnica.com/?p=1906010 facial 2022-12-20 20:13:08
海外TECH DEV Community Top 7 Featured DEV Posts from the Past Week https://dev.to/devteam/top-7-featured-dev-posts-from-the-past-week-3mmg Top Featured DEV Posts from the Past WeekEvery Tuesday we round up the previous week s top posts based on traffic engagement and a hint of editorial curation The typical week starts on Monday and ends on Sunday but don t worry we take into account posts that are published later in the week The Power of Learning in Public blackgirlbytes walks us the history of learning in public talking about why it s done and how to do it effectively in this thorough and actionable post How to learn in public Rizèl Scarlett・Dec ・ min read learninpublic career leadership community CI CD for DevelopersCoupled with continuous integration CI and continuous delivery CD DevOps helps IT organizations streamline their development process by automating manual tasks related to code deployment pavanbelagatti explores how you can adopt CI CD to improve your team s efficiency and delivery pipeline CI CD Tutorial For Developers Pavan Belagatti・Dec ・ min read tutorial devops kubernetes docker Svelte vs React for In the web development world sometimes it can feel like a new frontend framework comes out every day Most come and go but one thing is for sure Svelte is here to stay Here mikehtmlallthethings answers whether you should learn React or Svelte Svelte vs React Which framework to learn in Mikhail Karan・Dec ・ min read svelte react webdev Reflection on a Year Developer Journey entrptaher s self taught development journey started around years ago as a little kid It went from passion to a job to irritation with tons of ups and downs Hear some of the tips they picked up along the way Reflections on My Year Journey from Novice to Intermediate Developer Md Abu Taher ‍・Dec ・ min read beginners programming webdev productivity Documentation Having good documentation for your open source project is an important and often overlooked feature to drive adoption and show the full potential of what users can accomplish with your application or library Learn the basics from erikaheidi in this new series Documentation creating a good README for your software project Erika Heidi・Dec ・ min read docs documentation beginners opensource Applying Design Patterns in ReactShotgun Surgery is a code smell where making any modifications requires making many small changes to many different places itshugo shows us how to go about applying the Strategy Pattern to solve it ️Applying Design Patterns in React Strategy Pattern Hugo・Dec ・ min read react typescript javascript webdev Set Dark Mode Based on TimeWith just a bit of JavaScript and CSS mohsenkamrani shows us how to set the theme of a website to change from light to dark depending on whether it is day or night Set the theme of a website based on the time of the day no external library mohsen・Dec ・ min read webdev css javascript beginners That s it for our weekly Top for this Tuesday Keep an eye on dev to this week for daily content and discussions and be sure to keep an eye on this series in the future You might just be in it 2022-12-20 20:37:58
海外TECH DEV Community Module Federation in mobile apps powered by NativeScript https://dev.to/valorsoftware/module-federation-in-mobile-apps-powered-by-nativescript-3m14 Module Federation in mobile apps powered by NativeScriptModule federation has been one of the most popular topics in development lately People love the way it allows teams to develop applications independently and integrate them all into a single final application While that seems good for the web how could Module Federation look in a mobile native application Let s get the elephant out of the room first The whole point of module federation is that teams can deploy their applications independently but native apps have their bundles and code shipped holistically with the app Even if they didn t having the user wait or be unable to load your app in bad or no connectivity would lead to terrible UX Before going down this path you need careful thought and a really good reason So let s start with a use case One of our large enterprise clients has a WYSIWYG editor for NativeScript complete with their own native components library They have their own SSO and app “shell that is common to all of their apps but their users are able to customize the content including pushing changes only to specific screens To generate this they needed to be able to generate bundles dynamically and push them to the application so they could easily switch between apps and update only the user s bundle This application highlights one of the beauties of NativeScript The users don t need to have knowledge of native code at all and if they need to extend something they can do it directly in JavaScript or TypeScript while also allowing them to add native code once they feel like they need it Now back to the application This was initially built before bundlers were widely used and once bundlers became the norm it became a tricky situation where they d need to map the available modules and override the require functions to provide the user code with the expected module A mess Enter Webpack Module Federation Exposing an applicationFor this example I ve decided to use Angular as it s one of the frameworks officially supported by NativeScript So first we create our appimport Component NgModule NO ERRORS SCHEMA from angular core import RouterModule from angular router import NativeScriptCommonModule from nativescript angular import timer from rxjs Component template lt Label gt Hello from wmf Here s a counter timer async lt Label gt export class MyComponent timer timer NgModule declarations MyComponent imports NativeScriptCommonModule RouterModule forChild path component MyComponent schemas NO ERRORS SCHEMA export class FederatedModule Since we ll need to download all the JS files anyway for testing purposes I ve made it all compile to a single chunk and discard the non remote entrypoint To do this I used the default NativeScript webpack config and augmented with a few details to build it directly to my current app s assets directory const webpack require nativescript webpack const coreWebpack require webpack const path require path const NoEmitPlugin require no emit webpack plugin module exports env gt webpack init env const packageJson require package json Learn how to customize lt webpack chainWebpack config env gt config entryPoints clear config resolve alias set path join dirname federated src config resolve alias set path join dirname federated src config plugins delete CopyWebpackPlugin config output path path join dirname src assets config optimization runtimeChunk true config module delete bundle config plugin NoEmitPlugin use NoEmitPlugin dummy js config plugin MaxChunks use coreWebpack optimize LimitChunkCountPlugin maxChunks config plugin WebpackModuleFederationPlugin use coreWebpack container ModuleFederationPlugin name federated exposes federated module federated src federated module ts library type commonjs shared nativescript core eager true singleton true requiredVersion import false nativescript angular eager true singleton true requiredVersion import false angular core eager true singleton true requiredVersion import false angular router eager true singleton true requiredVersion import false const config webpack resolveConfig config entry dummy federated src federated module ts return config Loading the remote entrypointOne of the tricky parts of this whole process is that we can t download the app piece by piece as underneath we re using commonjs node s require to evaluate and load the modules into memory To do this we need to download all of the output into the application and then we can load it As a POC we can start with a simple remote configuration which allows us to load the entrypoint as a normal module federated webpack config name federated exposes federated module federated src federated module ts library type commonjs host config remoteType commonjs remotes federated assets federated js And the import it as a route like path federated loadChildren gt import federated federated module then m gt m FederatedModule Unfortunately we d have to have all the federated modules shipped in the final application so to load things dynamically we should instead use the following code to load arbitrary entrypoints lt reference path node modules webpack module d ts gt type Factory gt any type ShareScope typeof webpack share scopes string interface Container init shareScope ShareScope void get module string Factory export enum FileType Component Component Module Module Css CSS Html Html export interface LoadRemoteFileOptions actual file being imported remoteEntry string used as a key to store the file in the cache remoteName string what file to import must match the exposes property of the federated bundle Example exposes file ts otherFile some path otherFile ts calling this function with will import file ts calling this function with otherFile will import some path otherFile ts exposedFile string mostly unused for the moment just use Module can be used in the future to change how to load specific files exposeFileType FileType export class MfeUtil holds list of loaded script private fileMap Record lt string boolean gt private moduleMap Record lt string Container gt findExposedModule async lt T gt uniqueName string exposedFile string Promise lt T undefined gt gt let Module T undefined Initializes the shared scope Fills it with known provided modules from this build and all remotes await webpack init sharing default const container this moduleMap uniqueName Initialize the container it may provide shared modules await container init webpack share scopes default const factory await container get exposedFile Module factory return Module public loadRootFromFile filePath string return this loadRemoteFile exposedFile exposeFileType FileType Module remoteEntry filePath remoteName filePath public loadRemoteFile async loadRemoteModuleOptions LoadRemoteFileOptions Promise lt any gt gt await this loadRemoteEntry loadRemoteModuleOptions remoteEntry loadRemoteModuleOptions remoteName return await this findExposedModule lt any gt loadRemoteModuleOptions remoteName loadRemoteModuleOptions exposedFile private loadRemoteEntry async remoteEntry string uniqueName string Promise lt void gt gt return new Promise lt void gt resolve reject gt if this fileMap remoteEntry resolve return this fileMap remoteEntry true const required non webpack require remoteEntry this moduleMap uniqueName required as Container resolve return export const moduleFederationImporter new MfeUtil This code is able to load any js file on the device so it can be used in conjunction with a download strategy to download the files and then load them dynamically For example we can first download the full file and then load it path federated loadChildren async gt const file await Http getFile federated js return await moduleFederationImporter loadRemoteFile exposedFile federated module exposeFileType FileType Module remoteEntry file path remoteName federated FederatedModule Alternatively we could also download it as a zip and extract or you could theoretically override the way that webpack loads the chunks in the federated module to download them piece by piece as needed Sharing the common modulesThe complexity of sharing modules cannot be understated The initial Webpack Module Federation PR that provided the full container and consumer API is smaller then the PR that introduced version shared dependencies A native app is not just a webpage but the full browser itself While the web provides a lot of APIs directly NativeScript provides a lot of them through the nativescript core package so that s one dependency that has to be a singleton and we can t under any circumstance have multiple versions of it In this example we re also using angular so let s share that as well shared nativescript core eager true singleton true requiredVersion nativescript angular eager true singleton true requiredVersion angular core eager true singleton true requiredVersion angular router eager true singleton true requiredVersion Here we also share them as eager since those packages are critical to the bootstrap of the application For example nativescript core is responsible for calling UIApplicationMain on iOS so if you fail to call it the app will instantly close ResultFirst we create a simple standalone component that will show a Label and a nested page which will be loaded asynchronous import Component NO ERRORS SCHEMA from angular core import NativeScriptCommonModule NativeScriptRouterModule from nativescript angular Component standalone true template lt StackLayout gt lt Label gt Hello from standalone component lt Label gt lt GridLayout gt lt page router outlet gt lt page router outlet gt lt GridLayout gt lt StackLayout gt schemas NO ERRORS SCHEMA imports NativeScriptCommonModule NativeScriptRouterModule export class ShellComponent Then we can define the Federated Module Component template lt Label gt Hello from wmf Here s a counter timer async lt Label gt export class MyComponent timer timer NgModule declarations MyComponent imports NativeScriptCommonModule RouterModule forChild path component MyComponent schemas NO ERRORS SCHEMA export class FederatedModule And finally we can setup the routing import NgModule from angular core import Routes from angular router import NativeScriptRouterModule from nativescript angular import FileType moduleFederationImporter from mfe utils import Http from nativescript core import ShellComponent from shell component const routes Routes path redirectTo shell pathMatch full path shell component ShellComponent loadChildren async gt const file await Http getFile federated js return await moduleFederationImporter loadRemoteFile exposedFile federated module exposeFileType FileType Module remoteEntry file path remoteName federated FederatedModule NgModule imports NativeScriptRouterModule forRoot routes ShellComponent exports NativeScriptRouterModule export class AppRoutingModule Which results in the following screen fully working module federation in NativeScript ConclusionAlthough Module Federations is still limited on the native application side we re already exploring possibilities on how to import modules from the web directly instead of having to download them manually giving it first class support and allowing full code splitted remote modules const entry await import entry get entry magically fetches if neededModule Federation is very promising for creating distribution of efforts and on demand releases without having to go through the pain of constant app store approval processes While not for everyone it is a very exciting opportunity for large teams Need help Valor Software is both an official partner of both the NativeScript organization and Module Federation organization If you re looking at using Module Federation with your NativeScript application and would like some help Reach out to our team sales valor software com 2022-12-20 20:34:04
海外TECH DEV Community Module Federation for the Business https://dev.to/valorsoftware/module-federation-for-the-business-1ok6 Module Federation for the Business What is Module FederationModule Federation is a technique that allows developers to split a large web application into smaller independent modules that can be loaded on demand The concept of Module Federation was first introduced by Zack Jackson He later wrote a book on Practical Module Federation written together with Jack Herrington Module Federation works by using a host application that is responsible for loading and managing the various modules The host application loads the modules asynchronously and communicates with them using a shared interface This allows the modules to interact with each other and share data and functionality Module Federation is a relatively new technology that is gaining popularity among developers as it allows for more modular performant and scalable web applications It is not specific to any frontend framework and can be used with popular frameworks such as Next js React Angular and Vue In addition module Federation can also be used with Node js itself for Federation of server code In this blog post we will be discussing the business value of Module Federation Specifically we will look at how modularity and scalability can benefit businesses by reducing development time and costs improving maintainability and flexibility Some of the business values and impactsModule Federation allows for more modular and scalable web applications by enabling developers to break down a large codebase into smaller reusable pieces that can be loaded and updated separately This flexibility and ability to ship code allows developers to work on individual parts of the application independently which can reduce development time and costs It also reduces risk due to the fact that smaller segments of functionality can be tested as functionality is being deployed In addition the modularity of Module Federation can also improve the maintainability and flexibility of the application Because each module is self contained and has its own dependencies it is easier to update and maintain individual modules without affecting the rest of the application Module Federation can also increase developer autonomy by allowing developers to work on their own modules without having to coordinate with the rest of the team as they did when working with monolithic applications This can lead to faster development and a more efficient workflow The resilience of the application is also increased by allowing portions of the web application to be unavailable without impacting the entire application This can be particularly useful for applications that need to be highly available as it allows for better handling of outages and maintenance Finally Module Federation often reduces the bundle size of the application by reducing the amount of code that needs to be shipped to the browser on the first interaction This can improve the performance of the application and can also be beneficial for search engine optimization SEO as it reduces the amount of code that needs to be parsed by the browser Who s using Module FederationThere is public information available that many large and recognizable organizations are using Module Federation in their web applications Some examples of well known companies that have adopted Module Federation include PayPal Best Buy Lululemon Semrush Cloudflare Epic Games Business Insider Box com Shopify Adidas Fidelity Bytedance and Chase These companies have likely implemented Module Federation to achieve greater modularity and scalability in their web applications which we can expect to contribute to the success of their web presence It is worth noting that these are just a few examples of the many organizations that are using Module Federation There are likely many other companies both large and small that are using Module Federation internally or externally in their web applications This demonstrates the widespread adoption of Module Federation as a powerful tool for building modular and scalable web applications SummaryIf a development organization is looking for a technique that allows developers to split a large monolithic web application into smaller independent modules that can be loaded on demand Module Federation is the way to go The reduced development time and costs improved maintainability and flexibility increased developer autonomy increased application resilience and reduced bundle size are just the beginning of the benefits As we ve shared Module Federation has already been adopted by many well known organizations and it is likely that more companies will adopt it in the future It is clear that business should try to stay up to date with new technologies and begin to leverage Module Federation we know it will help them to stay competitive Need help Valor Software is a software development and consulting company that specializes in helping businesses modernize their web platforms and leverage new technologies like Module Federation As official partners for the Module Federation organization Valor Software has extensive experience and expertise in implementing module federation for businesses of all sizes By working with Valor Software businesses can take advantage of the latest technologies and techniques to build modern web applications that are more adaptable to changing needs and demands while also ensuring best practices through unparalleled access to the creator and supporting maintainers of Module Federation itself Reach out today if you have any questions sales valor software com 2022-12-20 20:31:21
海外TECH DEV Community Keyword Research Case Studies: Ownership Campaigns https://dev.to/daedtech/keyword-research-case-studies-ownership-campaigns-47bg Keyword Research Case Studies Ownership CampaignsI d wrapped the core part of the SEO for Non Scumbags series by poisoning the idea of content creation as art with art s natural mortal enemy ROI  For this reason I thought folks might not take me up on my tepid call to action of I may do more stuff if anyone wants Turns out against all odds some of you do want So I m going to make that happen both to give the people what they want and also to opportunistically teach some of our staff to do keyword research  Toward that latter end I ll structure this as an appendix to the original content with shorter vignettes corresponding to specific keyword research tactics Today I ll do the most straightforward one ownership campaigns Ownership Campaigns A Quick DefinitionIf you were completely new to the concept of keyword research ownership is probably what you d do   Ownership is shorthand for term ownership and it means identifying keywords that you should own rank for and going after them  For anyone old enough to get the reference I also think of these as yellow pages terms since businesses tend to want to own terms that describe the business and its value proposition To make this concrete consider Tricentis who makes a series of automated testing tools  They would understandably want to show up when people google things like well automated testing tools  So given that they want to own the term they decide to create content with the right search intent for a search about automated testing tools They look to own this term and terms like it  And they ll do that through a combination of directly targeting those terms and also creating related content that targets related or longer tail keywords The Broader Goal of an Ownership CampaignAlright so why do this  I mean beyond the general idea of it s good to show up in search for the thing you are  What specific digital marketing box does this check If you re efficiently executing an ownership campaign you notch three parallel wins You create brand awareness with highly relevant term association You have relevant content with multiple possible distribution channels including search engines And you build topical authority that lets you punch above your weight for the terms you want to own To understand what s going on here recall the idea of commercial search intent from the search psychology chapter  Searchers with commercial intent are contemplating a purchase or adoption and they ll often google around to research players and competitors in the space when in this mode  Searchers with commercial intent want to know what credible options they have Ownership campaigns are thus at their core about showing up prominently for searchers in that mindset Let s go back to the Tricentis example to help turn our goal abstractions into concretion Create brand awareness by showing up in all kinds of SERPs related to test automation Earn and potentially pixel readers by creating content relevant to test automation By having a lot of test automation content on their site make it more likely for a given marginal article about test automation to rank In summary they ll create a lot of content about test automation and related topics in order to acquire readers directly with the content bolster the odds of ranking across the board and link and buoy their commercial landing pages for commercial searches How to Do the Keyword ResearchFor my money ownership campaigns have the distinction of being dead easiest to research   As an aside this is why they generally form the sum total alpha and omega of the research that SEO consultants do Define Seed TermsYou re going to start with two potential sources of seed terms and then riff on them  Those sources are Ask the client or yourself what terms they want to be associated with Scrape the client s or your most prominent landing pages looking for terms of art This is easiest to do when the client has offerings that are easy to define such as Hit Subscribe and say developer marketing which I d want to rank for if I wanted to show up in commercial searches   I don t want that sort of lead flow for Hit Subscribe but the why of that is a topic for another day This is harder with a business like one of our clients Architect who is defining a category  In this situation you can see the list with terms you lift from platform product or use case pages such as assuming they d want to rank for environment provisioning Build Lists of Topics Using Seed TermsLet s use Hit Subscribe as a concrete example and ignore the fact that I wouldn t want to actually execute this strategy  Just riffing off the cuff about how I d explain Hit Subscribe to prospects or just people at a cocktail party yields terms like developer marketing digital marketing content marketing digital marketing strategy developer marketing strategy content program guest contributor programA quick scrape of the site isn t super productive since lead flow isn t the aim of the site but it does add a few terms to the list content strategy content roadmapping technical content strategy content fulfillment content consultingThe first thing that I ll do with those terms is dump them into our model adding volume figures difficulty scores Hit Subscribe s domain authority and noting any parent keywords Doing this puts our keywords into three loose categories only two of which interest us No or minimal volume Volume but unwinnable Volume and winnable Looking at this list we have terms that fall into category developer marketing developer marketing strategy content fulfillment and content consulting We ll put those into the maybe pile and move on for example purposes  I should note that you could always stop here if the goal were just posts well probably but we ll get to that  But you ll usually want more than just posts Add to the List with Longer Tails and Related TermsTo keep adding to the list and building topical authority let s look at one of the unwinnable terms with volume content strategy  The essence of ownership is building topical authority  And you build topical authority by answering questions targeting keywords related to the core topic So we need to figure out terms we can target that relate to content strategy even though the head term is unwinnable  I generally think of this as surrounding the topic  Let s do a quick matching terms search in ahrefs Yikes  The only winnable terms here seem to have a job search intent Somehow I m not shocked that terms related to content strategy are super competitive  It s almost like everyone in content strategy has the same strategy and we all know what I think of that Let s filter by terms that are winnable for hitsubscribe com by capping difficulty at Now we re getting somewhere  I m going to add some terms to the base and here s what that looks like A few things to note here  First looking at that projected traffic if we bang out posts or whatever it looks like we can count on K visitors per month to that content and this is a fairly pessimistic estimate Second all of these terms have the parent term content strategy in the mix  That ensures that we re building topical authority should we ever pursue the head term content strategy itself And finally some of them have a synonym listed  This is important because it means you wouldn t individually target all of the terms  Target one and rank and you also rank for the synonym Cull the List Based on Qualitative ConcernsThis is a nice start but we re not ready to take metaphorical pen to metaphorical paper just yet or have ChatGPT do it or whatever  These terms make quantitative sense but we need to check on the qualitative To understand why look at this SERP as of the time of writing What s going on in this SERP  Well the featured snippet answers the question what is a content strategy consultant but then you have a bunch of landing pages for content strategy consulting This is what we call a fragmented SERP and it means that different searchers are asking wildly different questions here  Some want a definition others just want to hire a consultant like Adrienne there who has a really smart brand awareness play right there This means that targeting content strategy consultant with a blog post is a pretty fraught idea  You d really want to target that term with a landing page rather than a blog post Here are checks we should execute on all of the keywords If we re planning blog posts does this term have a research intent Does the term cannibalize other terms in the list i e synonyms What questions do searchers seem to be asking and is it reasonable for our site to answer those questions e g this is why I don t bother with the job related searches Could we rank for any parent child combos in a single post or should we separate them Once you ve applied those filters to the keywords found the result is a backlog of topics to brief and create Recap and SummaryLet s assume that we did all of this and did it across the full spectrum of keywords over the course of time building a significant library with this ownership campaign  Here s what we would achieve Build a lot of direct segmented traffic to the website probably in the figures per month Build a lot of topical authority around topics like digital marketing content strategy and consulting Make it more likely we punch above our weight with desirable commercial head terms Start to have our brand show up in SERPs in a way that establishes credibility But ownership campaigns do have some downsides They tend to be the least cost effective and most competitive because this is what SEO consultants hawk and what everyone does Having extremely beginner content on your site like what is a content strategy can be a weird look for a content strategy vendor if you don t position it right Ownership campaigns commodify vendors this is the heart of why I don t want this traffic to hitsubscribe com my management consultant heart cannot bear the commodification On balance ownership campaigns make sense  especially for brands with mass market offerings and for whom commodification is less bug than it is quirk if not feature  They also tend to create straightforward calls to action on your site since you re either going to link to the landing page you re building around or you re just going to call for the sale  You don t need to get creative with mailing lists webinars lead magnets etc And for those of you reading they tend to be the easiest to grok and reason about  Which is why I started with them  Stay tuned for some more avant garde less competitive concepts in future episodes 2022-12-20 20:07:04
Apple AppleInsider - Frontpage News AirPods recovered after Find My tracked down thieving hotel employee https://appleinsider.com/articles/22/12/20/airpods-recovered-after-find-my-tracked-down-thieving-hotel-employee?utm_medium=rss AirPods recovered after Find My tracked down thieving hotel employeeA hotel guest used Find My to help police track down her AirPods after items were stolen from her room by an employee Find My on an iPhoneOn June during the Formula Grand Prix weekend Sahar Mohammadzadeh discovered that her Louis Vuitton purse and some cash had disappeared from her room at the Imperia Hotel Suites in Montreal s South Shore Read more 2022-12-20 20:09:07
海外TECH Engadget Apple adds M1 Mac desktops and Studio Display to the Self Service Repair program https://www.engadget.com/apple-m1-mac-desktops-studio-display-self-service-repair-205016531.html?src=rss Apple adds M Mac desktops and Studio Display to the Self Service Repair programApple has expanded its self repair program once again As noted by Six Colors and The Verge folks in the US can now try to fix issues with the M iMac M Mac mini Mac Studio and Apple Studio Display themselves with genuine parts repair manuals and tools The self repair program is designed for those who have the time patience skills and confidence to carry out fixes at home rather than taking their busted device to an Apple Store or third party repair shop or shipping it to Apple You can buy all the parts and rent the tools you need but at checkout you ll need to enter a code from the relevant manual to show that you ve actually read the document Apple debuted the Self Service Repair program in April by offering manuals and parts for select iPhone models in the US Since then it has expanded the program to Mac laptops and more territories nbsp Apple introduced the program ahead of right to repair rules likely coming into force in the US and Europe In President Joe Biden signed an executive order focused on bolstering competition in the US economy partly in the tech sector Among other things it urged the Federal Trade Commission to ban quot anticompetitive restrictions on using independent repair shops or doing DIY repairs of your own devices and equipment quot nbsp The agency has taken a stronger stance on such issues In July it announced settlements with three companies including Weber and Harley Davidson which it accused of threatening to unlawfully void warranties if consumers used third party repair parts or independent repair shops 2022-12-20 20:50:16
海外TECH Engadget Congress attempts to ban TikTok on government devices as part of $1.7 trillion spending bill https://www.engadget.com/congress-attempts-ban-tiktok-on-government-devices-through-17-trillion-spending-bill-204028363.html?src=rss Congress attempts to ban TikTok on government devices as part of trillion spending billAfter obtaining Senate approval last week the No TikTok on Government Devices Act could become law thanks to the trillion spending bill federal lawmakers unveiled early Tuesday morning In addition to allocating more funding for Ukraine and earmarking billion for natural disaster recovery efforts across the US the sprawling page bill includes provisions that would prohibit the use of TikTok on government owned phones and other devices While some Republican lawmakers are pushing for a country wide ban on TikTok the spending bill stops short of prohibiting all government use of TikTok If passed the legislation would order the General Services Administration and Office of Management and Budget to create guidelines for staff at executive agencies to remove TikTok from government owned devices by mid February The draft legislation allows congressional staff and elected officials to continue using the app It also carves out some exceptions for law enforcement agents and officials The ban on TikTok on government devices has ended up in the omnibus This was a Josh Hawley bill Pelosi pushed for it in the omni pic twitter com gpBZzFCYーJake Sherman JakeSherman December quot We re disappointed that Congress has moved to ban TikTok on government devices ーa political gesture that will do nothing to advance national security interests ーrather than encouraging the Administration to conclude its national security review quot TikTok spokesperson Brooke Oberwetter told Engadget quot The agreement under review by The Committee on Foreign Investment in the United States will meaningfully address any security concerns that have been raised at both the federal and state level These plans have been developed under the oversight of our country s top national security agencies ーplans that we are well underway in implementing ーto further secure our platform in the United States and we will continue to brief lawmakers on them quot The proposed ban comes after at least states including Georgia and South Dakota prohibited TikTok on government owned devices Political concerns over TikTok hit a high earlier this month after FBI Director Chris Wray said China could use the app to collect user data TikTok has tried to address those concerns As of June the app began routing all domestic traffic through Oracle servers in the US At the same time TikTok and parent company ByteDance pledged to delete US user data from their own data servers in the US and Singapore 2022-12-20 20:40:28
海外TECH Engadget Ubisoft explains how Stadia users can get free PC copies of games https://www.engadget.com/ubisoft-stadia-pc-games-free-transition-shutdown-202026044.html?src=rss Ubisoft explains how Stadia users can get free PC copies of gamesAfter Google announced Stadia s shutdown earlier this year Ubisoft said it would help users transfer their purchases to PC We got more detail today as the publisher says it will provide free PC versions of all Ubisoft games bought on Stadia The publisher also has other perks to make the transition as smooth as possible for jilted users of Google s platform Anyone who bought Ubisoft games on Stadia should see the PC versions of those games appear in their Ubisoft Connect accounts at no extra cost If your Stadia and Ubisoft accounts aren t yet linked connect them before Stadia shuts down on January th to get the PC games Additionally if you played Ubisoft games with cross progression complete list you can pick up your progress on PC where you left off on Stadia Ubisoft notes any unspent virtual currency won t transfer Still if you use it in Stadia before January th the purchased items will move to PC but only for games supporting cross progression Meanwhile Stadia gamers who subscribed to Ubisoft Multi Access the company s plan that lets you play on multiple devices will receive an email telling them how to sign up directly through the Ubisoft website As a bonus subscribers will also get a free month of Ubisoft The publisher notes that US residents can continue streaming Ubisoft games through Amazon Luna and those living elsewhere will get a discount on Ubisoft Multi Access for six months Additionally If you bought or subscribed to any Ubisoft content on Stadia you ll receive one free month of GeForce Now Priority The perks are on top of Google s refunds for all game purchases so Ubisoft s PC games are a no charge consolation prize Investing in a cloud gaming platform requires customers to trust that their purchases won t be all for naught if the platform fails but at least Google and its partners are doing what they can to make it right 2022-12-20 20:20:26
Cisco Cisco Blog Building a broadband ecosystem to bridge the digital divide https://blogs.cisco.com/sp/building-a-broadband-ecosystem-to-bridge-the-digital-divide Building a broadband ecosystem to bridge the digital divideBridging the digital divide is a complex undertaking To capture and accelerate the opportunity to build a more inclusive future we need to build an ecosystem for broadband and work through the complexities together 2022-12-20 20:29:01
海外科学 NYT > Science Congress Offers $1 Billion for Climate Aid, Falling Short of Biden’s Pledge https://www.nytimes.com/2022/12/20/climate/congress-climate-finance-biden.html pledgeactivists 2022-12-20 20:56:05
ニュース @日本経済新聞 電子版 プーチン大統領、ウクライナ併合4州は「複雑な状況」 https://t.co/UA7vgrsXBY https://twitter.com/nikkei/statuses/1605296143105003520 複雑 2022-12-20 20:16:40
ニュース BBC News - Home Ambulance strike: Health bosses warn of patient safety risk https://www.bbc.co.uk/news/health-64037468?at_medium=RSS&at_campaign=KARANGA patient 2022-12-20 20:08:06
ニュース BBC News - Home World Cup 2022: Argentina abandon Buenos Aires bus parade amid jubilant scenes https://www.bbc.co.uk/sport/football/64043540?at_medium=RSS&at_campaign=KARANGA World Cup Argentina abandon Buenos Aires bus parade amid jubilant scenesArgentina s World Cup winners have to abandon an open top bus and take a helicopter ride over the millions of fans celebrating in Buenos Aires 2022-12-20 20:30:31
ニュース BBC News - Home Lionel Messi World Cup Instagram post is most-liked ever https://www.bbc.co.uk/news/technology-64003233?at_medium=RSS&at_campaign=KARANGA argentine 2022-12-20 20:53:12
ビジネス ダイヤモンド・オンライン - 新着記事 20億円超の部屋も!三井不・三菱地の極上マンション「三田ガーデンヒルズ」の販売価格を大公開 - 貧国ニッポン 「弱い円」の呪縛 https://diamond.jp/articles/-/314729 億円超の部屋も三井不・三菱地の極上マンション「三田ガーデンヒルズ」の販売価格を大公開貧国ニッポン「弱い円」の呪縛三井不動産レジデンシャルと三菱地所レジデンスが東京都港区に開発する超高級マンション「三田ガーデンヒルズ」。 2022-12-21 05:25:00
ビジネス ダイヤモンド・オンライン - 新着記事 元日銀委員が提言した「長期金利修正の前にやるべきこと」とは?【総括!黒田日銀10年】 - 総予測2023 https://diamond.jp/articles/-/314505 日本銀行 2022-12-21 05:20:00
ビジネス ダイヤモンド・オンライン - 新着記事 23年の中国経済は「6%成長」に復活か!?政策と成長シナリオを徹底分析 - 総予測2023 https://diamond.jp/articles/-/314504 中国当局 2022-12-21 05:15:00
ビジネス ダイヤモンド・オンライン - 新着記事 三井不・三菱地・住友不…新築マンション、5億円台続々の「超強気値付け」頼みの綱は円安!? - 貧国ニッポン 「弱い円」の呪縛 https://diamond.jp/articles/-/314728 三井不動産レジデンシャル 2022-12-21 05:10:00
ビジネス ダイヤモンド・オンライン - 新着記事 偉大なる創業者・本田宗一郎の「遺産と負債」、吉野浩行ホンダ元社長が語る - 日本経済への遺言 https://diamond.jp/articles/-/314709 吉野浩行 2022-12-21 05:05:00
ビジネス ダイヤモンド・オンライン - 新着記事 ネトフリの広告付き低価格プラン、出だし振るわず=調査 - WSJ発 https://diamond.jp/articles/-/315066 調査 2022-12-21 05:03:00
北海道 北海道新聞 メッシ選手ら凱旋パレード 上空飛行も、4百万人歓迎 https://www.hokkaido-np.co.jp/article/778317/ 飛行 2022-12-21 05:47:00
北海道 北海道新聞 躍進のモロッコ代表帰国 数千人出迎え、晩さん会 https://www.hokkaido-np.co.jp/article/778318/ 躍進 2022-12-21 05:47:00
北海道 北海道新聞 ロシアはウィキで銃の扱い学ぶ? 侵攻「歴史的失敗」と米紙 https://www.hokkaido-np.co.jp/article/778314/ 電子版 2022-12-21 05:37:00
北海道 北海道新聞 不妊処置巡り全道調査へ 障害者施設、来月実施 https://www.hokkaido-np.co.jp/article/778313/ 北海道江差町 2022-12-21 05:37:00
北海道 北海道新聞 女子大学教育を無期限停止 アフガンで抑圧強化 https://www.hokkaido-np.co.jp/article/778311/ 女子大学 2022-12-21 05:06:00
北海道 北海道新聞 <社説>日銀の緩和修正 正常化の道避けられぬ https://www.hokkaido-np.co.jp/article/778289/ 金融政策決定会合 2022-12-21 05:01:00
ビジネス 東洋経済オンライン 30歳年収が高い会社ランキング「東京トップ500」 30歳の推計年収が1000万円を超えたのは15社 | 賃金・生涯給料ランキング | 東洋経済オンライン https://toyokeizai.net/articles/-/640958?utm_source=rss&utm_medium=http&utm_campaign=link_back 物価上昇 2022-12-21 05:40:00
ビジネス 東洋経済オンライン コロナ治療薬「ゾコーバ」感染症専門医が抱く疑問 緊急承認、事前に200万人分、咳や鼻水が対象… | 新型コロナ、長期戦の混沌 | 東洋経済オンライン https://toyokeizai.net/articles/-/640994?utm_source=rss&utm_medium=http&utm_campaign=link_back 塩野義製薬 2022-12-21 05:20: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件)