投稿時間:2023-01-14 02:17:04 RSSフィード2023-01-14 02:00 分まとめ(21件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
AWS AWS DevOps Blog Setting up a secure CI/CD pipeline in a private Amazon Virtual Private Cloud with no public internet access https://aws.amazon.com/blogs/devops/setting-up-a-secure-ci-cd-pipeline-in-a-private-amazon-virtual-private-cloud-with-no-public-internet-access/ Setting up a secure CI CD pipeline in a private Amazon Virtual Private Cloud with no public internet accessWith the rise of the cloud and increased security awareness the use of private Amazon VPCs with no public internet access also expanded rapidly This setup is recommended to make sure of proper security through isolation The isolation requirement also applies to code pipelines in which developers deploy their application modules software packages and other … 2023-01-13 16:12:52
AWS AWS Security Blog Recap to security, identity, and compliance sessions at AWS re:Invent 2022 https://aws.amazon.com/blogs/security/recap-to-security-identity-and-compliance-sessions-at-aws-reinvent-2022/ Recap to security identity and compliance sessions at AWS re Invent AWS re Invent returned to Las Vegas NV in November The conference featured over sessions and hands on labs and more than attendees over days If you weren t able to join us in person or just want to revisit some of the security identity and compliance announcements and on demand sessions this blog post … 2023-01-13 16:07:43
AWS AWS Security Blog Recap to security, identity, and compliance sessions at AWS re:Invent 2022 https://aws.amazon.com/blogs/security/recap-to-security-identity-and-compliance-sessions-at-aws-reinvent-2022/ Recap to security identity and compliance sessions at AWS re Invent AWS re Invent returned to Las Vegas NV in November The conference featured over sessions and hands on labs and more than attendees over days If you weren t able to join us in person or just want to revisit some of the security identity and compliance announcements and on demand sessions this blog post … 2023-01-13 16:07:43
海外TECH Ars Technica Third-party Twitter clients are broken, whether by policy or glitch https://arstechnica.com/?p=1909824 twitter 2023-01-13 16:23:27
海外TECH Ars Technica US vaccination decline continues: 250,000 kindergarteners vulnerable to measles https://arstechnica.com/?p=1909837 disruptions 2023-01-13 16:10:23
海外TECH MakeUseOf How to Completely Reskin Windows 11 for a Nostalgic Windows 98 Look https://www.makeuseof.com/reskin-windows-11-windows-98-look/ windows 2023-01-13 16:15:16
海外TECH DEV Community Share your locally hosted web app using Codespaces https://dev.to/github/share-your-locally-hosted-web-app-using-codespaces-276k Share your locally hosted web app using CodespacesOne of my favorite things about GitHub Codespaces is that it makes pair programming easier As the software engineering industry shifted from in person to remote work we ve learned how to prioritize a seamless developer experience for virtual collaboration When I worked in a physical office pair programming consisted of sitting next to a fellow software engineer and staring at a computer screen together We could look at the code editor console and browser to debug Virtual work presented a challenge how do we share screens and keyboards typing even though we weren t in the same room Fortunately products like Zoom Slack and the Visual Studio Code Live Share extension improved enabling us to code better together For many reasons GitHub Codespaces quickly made its way to my list of helpful tools for remote code collaboration One of the many reasons is that it enables developers to share their locally hosted web applications through port forwarding In this post I ll walk you through how to share your locally hosted web app using GitHub Codespaces What is GitHub Codespaces GitHub Codespaces is a cloud based development environment that enables developers to code from anywhere a k a you can use GitHub Codespaces to code in your browser It s a fully decked out code editor in your browser As long as you have internet you can write and read code from any device including an iPad Who has access to GitHub Codespaces Every GitHub users have free access to hours of GitHub Codespaces a month and you can upgrade to a paid plan if you need more hours What is port forwarding Port forwarding redirects network traffic from one port to another port that lives on the same computer or a different computer In Codespaces you can run a web app on a particular port then forward the port to your local machine so you can test and debug The best part is you can share your port with necessary teammates and collaborators so that they can view your locally hosted web application How to share your locally hosted web app using GitHub CodespacesLet s try out sharing a locally hosted web app using GitHub Codespaces Step Create a Codespaces instance or a Codespaces template You can start a new Codespaces instance by creating a GitHub repository choosing the Codespaces tab and clicking the New codespace button Then you can add a few lines of code that you d like to run OR you can use a Codespaces template which is faster more exciting and includes an already running web app Create a Codespaces templateIf you navigate to the URL you ll see a list of templates You can choose a template that you d like to use For this example I ll use the Next js template We ll see a few files inside this template including a devcontainer json components and CSS Step Check out the devcontainer json fileAs soon as you open the Next js template a browser tab opens up with a Next js app The devcontainer json contains configurations that help us to immediately run the web app as soon as the Codespace builds In the devcontainer json file you ll see the following properties and commands that help the Codespaces instance run the web app immediately updateContentCommand npm install amp amp npm run build postCreateCommand postAttachCommand server npm run dev These properties state that during and after the Codespaces build it should run the above commands to install dependencies and run the web app The devcontainer json file also contains a forwardedPorts property which takes an array of ports that you d like to forward In the template we re already forwarding port This tells Codespaces that we want to forward port to our local machine forwardedPorts Step Check out the Simple Browser Tab The simple browser tab already renders some code This template contains configurations to open a browser tab that renders our code If you click on the Simple Browser tab you ll see a Next js app You can make and view changes to the code in the pages index js file Try changing the lt h gt lt h gt element on line to say Codespaces Port Forwarding Is Where It s At You will see the changes immediately reflected in the Simple Browser tab The simple browser tab is already port forwarded You ll see a browser address bar with a URL in the Simple Browser tab The URL will vary per person and project but the general format is https lt your github handle gt lt a codespaces id which combines a words and random characters gt lt your port number gt preview app github dev For example the URL could like Codespaces forwarded port to this URL so you can view your web app in the Simple Browser tab You ll see the same web app if you go to the URL in a new tab outside of Codespaces Step Share the URLYou can now share your URL and make it available to your teammates or collaborators Navigate to the ports tab where your terminal typically lives and you ll see a list of ports that you are forwarding For each port there is a label column a local address columna running processes columna visibility columnand an origin columnIf you right click on the port you d like to share you ll see the option to switch the port visibility from Private to Public You can now copy the value in the local address and share it with necessary collaborators Now they can view your locally hosted web app and make more informed changes to the code Bonus tip if you create this Codespace instance under an organization you can see three options for port visibility Private Public and Private to Organization This is a great way to securely share your local web app specifically with members of your organization Labeling the portIf you have multiple ports running it s helpful to label the port so that you can determine the difference between each port To label a port right click on the port and select Label Port Then you can give the port a name that you can quickly identify If you re interested in learning more about GitHub Codespaces check out the GitHub Codespaces documentation Follow me and GitHub on Dev to for more GitHub Codespaces tips and tricks You can also check out my repository for reference Thanks for reading 2023-01-13 16:38:42
海外TECH DEV Community Make Money As a Technical Writer ✍🏻 https://dev.to/patilganesh1010/make-money-as-a-technical-writer-4ifl Make Money As a Technical Writer IntroductionTechnical writing is a highly demanding skill in the market right now because every organization needs someone to break complex terms into simple words to explain the product to the user Not only the product but all technical terms and new product features to the user Nowadays technical writers closely work with the engineering team of the product to understand the technical aspects of the product Very few writers sustain themselves in the field of tech writing because here you have focused more on technical terms and content should be user oriented Technical writing focused more on technical terms and content should be user orienetd to understand ‍Technical writing involves development creation and etc things and as a tech writer you have to manage multiple things that s why many people failed in their technical writing careers To become the best at technical writing you have to read more write more and understand very well what a product or service is You have to be good at product understanding and writing and always think about the end user side before delivering a piece of content to the community because it s highly essential in terms of tech writing Read more Write more Understand product Technical Writing Why Technical Writing It s completely my take on technical writing because I am writing technical content for more than a year now Every person no matter whether you re a developer or not you should know a basic understanding of writing The developer should know how to write technical terms and product guides tutorials at least the basics of writing are essential for everyone Writing helps a lot as an individual developer you can share your journey by writing blogs amp articles to show to others Technical writing is a continuous process of learning carefully gathering sifting organizing and assessing all while trying to craft something that makes sense for a user Recently I started my youtube channel and shared why you should start with technical writing and answered basic questions regarding tech writing Do Support Tools to Get StartedAs a technical writer you need resources to scale your growth because you can t grow if you are doing everything manually like writing editing reviewing etc takes time and effort Tools are easy to use and saved a lot of time and effort GrammarlyGrammarly is a great tool for writers to check and enhance their writing skills in the context of grammar mistakes Now Grammarly is enhancing day by day and it suggests and rephrasing sentences as well Notion A notion is a great tool for planning amp managing things for writers You can schedule complete writing plans topics and research materials and many more things you can do with the notion Quetext s plagiarism checker analyzes your text to identify plagiarism resolve other writing issues and build citations with ease Canva You can Create cover images for your articles and blog posts using canva Feedly Research amp tech news in one place lets you get the news you want all in one place How To Make Money As a Technical Writer Making money as a technical writer needs to be patience and good writing skills I started making money with my writing skills by writing articles and blog posts Below is another way I used to make money as a writer Write a Technical PostThis way need some previous experience in technical writing and a portfolio you can use your hashnode profile There are some communities or organizations that need tech writers to write technical articles for them The topics and content are already available you have to write the concept in your words that s it GeeksforGeeksjavatpointCSSTricksHashnodeLogRocketThese are the platforms that will pay you for writing a piece of content for them The price will carry from one to another platform and the size of the content as well FreelancingFreelancing is the best way to explore tech writing but you need proof to show to your freelance gig that you have some experience with writing There are multiple platforms are available to get your first freelance gig FiverrOutsourcelyFreelancer OpenSource ProgramsOpenSource programs such as Google Season of Docs GSOD provide you with a complete guide to contributing to open source with your writing skills There are other project projects also available that pay you as a writer to contribute to their project Tech Product BloggingIn the market there are some products that have good quality and due to lack of promotion and not having proper guides to use they can t grow in the market These products need some guide to use where you can write and make some commission on every sale Tech Writers HackathonThere are programs and hackathons that organize to empower the tech writer community These hackathons provide you a mentorship a guide and also paid for content that you re going to deliver HackmambaThere are other hackathons also available for tech writers you can search and explore more with the communities Tech Writing CommunitiesCommunities are the most essential term for every developer tech writer and open source organization You can find a project partner mentor and next job with the help of the community Below are some communities for writers to join Technical Typers community Reddit Non Technical in Tech Linkedin Technical Writing Group Wrap upTechnical writing is more about how better you know the concept and definitely you can make money through it but the best piece of advice is to focus more on learning and then focus on making money Skill is always first money second Try to learn more about how technical writing works and how you can contribute something to it Reading is the best thing that you can start to become better at technical writing if you learned something exciting from this article then share it on Twitter Recent Writes A Complete Guide to WavesA Practical Guide to Brain jsDevOps SimplifiedWavy Backgrounds with CSS amp SVGEverything you need to know about Markdown 2023-01-13 16:32:46
海外TECH DEV Community 7 steps to Angular Material Dialog instead of Angular Component https://dev.to/juliecherner/7-steps-to-angular-material-dialog-instead-of-angular-component-4jlb steps to Angular Material Dialog instead of Angular ComponentAnother way to create Angular UI Component is using Dialog from Angular Material It is not recommended to replace all components with it but it is rather useful for interactive elements like pop ups warnings errors etc There are steps on how to start using dialogs in your Angular project Step Adjust Angular Material for your project and create a basic Angular component current name example MyCreatedDialog and add dialog reference Import MatDialogRef from angular material and add it to the constructor class MyCreatedDialog implements OnInit constructor public dialogRef MatDialogRef lt MyCreatedDialog gt … ngOnInit … … Step Set modules in app module ts Import MatDialogModule MatButtonModule and others if needed from Angular Material to app module ts and imported your MyCreatedDialog component ts Add your imported component to declarations and entryComponents of NgModule Add needed dialog modules to import of NgModule Example NgModule declarations MyCreatedDialog entryComponents MyCreatedDialog imports MatDialogModule MatButtonModule … Step Import MyCreatedDialog into its father component current name FatherComponent Import MatDialog from Angular Material and add it to the constructor Example class FatherComponent constructor … private dialog MatDialog Step Control dialogs open and get outputs Example openMyCreatedDialog const myCreatedDialogRef this dialog open MyCreatedDialog myCreatedDialogRef afterClosed subscribe res gt do things according to the received response and the aim Step Add data input to MyCreatedDialog Add it to the function that opens the dialog openMyCreatedDialog const myCreatedDialogRef this dialog open MyCreatedDialog data title I am a dialog myCreatedDialogRef afterClosed subscribe res gt do things according to the received response and the aim Step Use passed data in MyCreatedDialog Import MAT DIALOG DATA from angular material and inject it in the constructor Import Inject from angular core as well class MyCreatedDialog implements OnInit dialogTitle string constructor public dialogRef MatDialogRef lt MyCreatedDialog gt Inject MAT DIALOG DATA public data any … ngOnInit this dialogTitle this data title … Step Add function to html file of MyCreatedDialog Example lt button click openMyCreatedDialog “New meaningful title gt lt button gt Step Extra continue enjoying Angular 2023-01-13 16:14:43
海外TECH DEV Community 5 GitHub Repositories That Will Make Your Life Easier https://dev.to/onlydevs_/5-github-repositories-that-will-make-your-life-easier-l0j GitHub Repositories That Will Make Your Life EasierGitHub is a code hosting platform for version control and collaboration It allows you to Collaborate on projects from anywhere Almost Every Developer know about GitHub and would love to spend their time on it for learning new stuff exploring different projects and for contributing to open source projects So if you are someone who visit GitHub frequently then we have curated a list of GitHub repositories that you should definitely check out Computer ScienceThis Github Repository provides you with a Path to a free self taught education in Computer Science It is free and open source and is maintained by the Open Source Society University Developer RoadmapThis Repository contains Interactive roadmaps guides and other educational content to help developers grow their careers FreeCodeCampFreecodecamp is a non profit organization that provides a free online learning platform for those who want to learn to code This community has already helped more than people get their first developer job The README file in the repository contains links to courses on the site Coding Interview UniversityThis website has a large number of professionally designed interview questions and a complete computer science study plan to become a software engineer Tech Interview HandbookThis GitHub Repository contains Curated coding interview preparation materials for busy software engineers you can Practice questions interview techniques and more 2023-01-13 16:07:36
Apple AppleInsider - Frontpage News Apple might use LG to produce micro LED Apple Watch displays https://appleinsider.com/articles/23/01/13/apple-might-use-lg-to-produce-micro-led-apple-watch-displays?utm_medium=rss Apple might use LG to produce micro LED Apple Watch displaysAn analyst believes that LG Display is building a small line of micro LED components for next gen Apple Watch models Apple Watch Series left and Apple Watch Ultra right Display analyst Ross Young of Display Supply Chain Consultants DSCC tweeted on Friday that the small line of backplanes a type of electrical component will start production in the second half of It is this small line Young believes that will likely assemble micro LED displays for an official launch in Read more 2023-01-13 16:28:56
海外TECH Engadget House Republicans form panel to shape crypto policy https://www.engadget.com/house-republican-crypto-subcommittee-165521735.html?src=rss House Republicans form panel to shape crypto policyNow that Republicans have control of the House of Representatives they re hoping to set the agenda for crypto Financial Services committee Chair Patrick McHenry above has announced a Subcommittee on Digital Assets Financial Technology and Inclusion that aims to set policy for technologies like cryptocurrency Headed by Rep French Hill the panel hopes to establish quot clear rules of the road quot for federal regulators create policies that bring financial technology to poorly served communities and bolster diversity and inclusiveness in digital assets In an interview with Politico McHenry said he was creating the subcommittee to address a quot big hole quot in Financial Services approach to crypto issues McHenry considers crypto regulation his main legislative priority and panel chair Hill has led the GOP s investigation of a potential central bank backed cryptocurrency The move comes as regulators struggle to find common ground on crypto While agencies like the Securities and Exchange Commission SEC and Commodity Futures Trading Commission CFTC agree that digital assets are subject to existing laws there have been tussles over just who should step in and when Senators put forward a bill that would create a clear regulatory framework but it has been stuck in committee There s pressure on the House subcommittee to act The implosion of crypto giant FTX has underscored the risks of letting the technology go unchecked Officials are also investigating major industry names like Celsius and Coinbase over possible rule violations Clearer rules would theoretically improve the federal government s responses to violations like these It s uncertain how effective the House panel will be While there are crypto proponents across both main parties the Democrats expanded control of the Senate could prevent bills from becoming law if there are any substantial disagreements Both sections of Congress have to pass and reconcile legislation before it reaches the President s desk The very existence of the subcommittee suggests that Congress is taking crypto more seriously however and there s a chance it could accelerate bipartisan efforts to oversee digital money and tokens 2023-01-13 16:55:21
海外TECH Engadget Google's Pixel 7 is on sale for $499, plus the rest of the week's best tech deals https://www.engadget.com/google-pixel-7-drops-to-499-best-tech-deals-this-week-163827715.html?src=rss Google x s Pixel is on sale for plus the rest of the week x s best tech dealsIt s Friday which means it s time for another roundup of the week s best tech deals Today we re seeing good prices on Google s Pixel and Pixel Pro phones a couple of all time lows on the inch iPad and iPad mini and a sweeping sale on Nintendo Switch games among other discounts on gadgets and gear we like Here are the best tech deals from this week that you can still get today We gave Google s Pixel and Pixel Pro review scores of and respectively last year calling them the best bargain in flagship phones along the way Both handsets are back on sale this week with the inch Pixel down to and the inch Pixel Pro available for We ve seen the phones hit these prices multiple times over the past year and neither represents an absolute low but they re still roughly and lower than the average street price we ve seen in recent months nbsp Either way you re getting top notch cameras pleasing build quality and a clean version of Android with regular updates though there are faster flagships out there for more money If you re on a tighter budget the inch Pixel a is smaller lacks the Pixel s faster refresh rate and has a lesser camera but it s otherwise similar enough to remain a strong value at its current sale price of For those who aren t totally overwhelmed by their gaming backlog Nintendo is running a New Year Sale at its online store that includes a number of discounts on digital Switch games we like Several of these deals are available at third party retailers like Walmart and Amazon as well if you re buying digitally and want to snag a few extra Gold Points toward future Nintendo store purchases Walmart in particular looks to have a handful of games available for lower than Nintendo itself nbsp Many Nintendo published games either aren t included in the sale or not available for an all time low ーdon t expect any major Mario or Pokémon deals ーbut the discounts do include a few picks from our guides to the best Nintendo Switch games and best couch co op games among others The D platformer Celeste for one is down to a new low of while the popular Metroidvania Hollow Knight nbsp is available for Elsewhere the relaxing farming sim Stardew Valley is down to the gentle adventure Chicory A Colorful Tale is discounted to and the charming puzzler Captain Toad Treasure Tracker is on sale for There are many more deals beyond those though so it s worth perusing through the selection if you re looking to add to your Switch library Apple s iPad mini is back down to at Best Buy and Amazon which matches the lowest price we ve tracked This is about off the diminutive tablet s typical price in recent months and off Apple s MSRP We gave the mini a review score of back when it launched in late and it remains the only real option if you specifically want a compact iPad whether you have smaller hands or just want something easier to throw in a bag It still looks and feels like a smaller iPad Air and its A Bionic chip remains more than fast enough for streaming e book reading and web browsing Just be aware that this SKU only comes with GB of storage and that stock at Amazon has been dipping in and out for much of the week If you don t want to spend as much cash on a new iPad though the entry level th gen model is also on sale for a new all time low of at Amazon and Best Buy That s off Apple s MSRP and roughly below the inch tablet s average price on Amazon as of late This is the budget pick in our guide to the best iPads and our review gave it a score of at launch It has a more dated design and older A chip than the rest of Apple s iPad lineup but it s still a massive step up over say Amazon s Fire HD tablets At this price it s easy to recommend if you use your tablet casually but don t want something that feels cheap The entry level version of Apple s latest and greatest MacBook Air is once again available for which is the lowest price we ve seen We gave the M powered Air a review score of last year and it s currently the top overall pick in our guide to the best laptops For everyday use it still ticks nearly all the boxes in terms of design display battery life and performance This specific configuration does have slower storage performance than the higher capacity models but that shouldn t be a serious hindrance unless you plan on doing more involved tasks like media editing at which point you should probably pony up for a pricier SKU anyway For a laptop better suited to gaming meanwhile Razer has discounted a number of its Blade and Blade notebooks These devices come as a significant premium and if you can wait a few months it s worth remembering that Razer introduced new Blade laptops at CES last week For those with money to burn though the current models still pack enough power to play modern games in a relatively slim and stylish design nbsp We gave the Blade a review score of last year and we currently recommend it as the best premium option in our guide to the best gaming laptops A configuration with an RTX Ti GPU a Core i H CPU a Hz p display GB of RAM and a TB SSD is down to a new low of for instance which is about less than usual Amazon introduced a refreshed version of its Fire TV Cube back in September but this week the media streamer received its first discount dropping by to a sale price of Though it isn t a recommendation in our guide to best streaming devices ーRoku s Streaming Stick K or Google s Chromecast offer much better value for most ーthe Fire TV Cube is worth considering if the idea of having hands free Alexa functionality baked into your K streamer sounds appealing It s technically the fastest of Amazon s Fire TV streamers too though you still have to deal with the usual glut of ads baked into Amazon s streaming UI even with the higher upfront cost nbsp If you re partial to Amazon services and want something more affordable note that the Fire TV Stick K Max streamer is also on sale for while the p Fire TV Stick Lite is down to We ve seen better deals for both of those in the past but they re still decent values if you need a streamer today A couple of wallet friendly Bluetooth speakers we like from audio brand Tribit are even further discounted this week The ultra portable StormBox Micro for one is down to with a percent on page coupon while the XSound Go is available for with a percent coupon Neither of these deals are all time lows and you shouldn t expect any miracles in terms of audio performance either way Still these are good buys if you just need a travel or shower speaker for less than The StormBox Micro is a pick in our best Bluetooth speakers guide due to its fuller than expected sound and built in strap that helps it connect to backpacks or bike handlebars The XSound Go offers generally similar performance and IPX waterproofing just in a more traditional pill shaped design nbsp The Beats Fit Pro is still on sale for an all time low of which is a discount we saw for much of the holiday season but still comes in about below the wireless earbuds average street price of late We gave the Fit Pro a review score of last year and it s currently the best for workouts pick in our guide to the best wireless earbuds It has an enjoyably bass forward sound and it brings many of the benefits you d get from a set of AirPods ー Find My tracking hands free Siri simple pairing with other Apple devices etc ーjust in a smaller and sportier design It doesn t totally sacrifice its features when paired with an Android phone either That said its ANC is merely average compared to the AirPods Pro there s no wireless charging and the included case is a bit chunky Still for those interested in new wireless workout earbuds the Fit Pro is a fine option at this deal price Fitbit s Charge is back down to which is within a dollar of the wearable s all time low Again this is the sale price we saw during the holidays but it remains about below the wearable s usual street price over the last few months The Charge is the top recommendation in our guide to the best fitness trackers and it earned a review score of at launch for its reliable activity tracking built in GPS and full color OLED display Just don t expect it to match an Apple Watch in terms of features and app support Sony is running a sale on the higher tiers of its PlayStation Plus service discounting and month subscriptions to its Extra and Premium memberships between and percent depending on which subscription you choose The catch unfortunately is that the deal is only available to new PS Plus subscribers Still if you haven t signed up you can get a year of PlayStation Plus Extra ーwhich adds an on demand library of a few hundred games to the standard Essential tier ーfor which is a discount Given that a month Essential plan normally goes for the same price you re effectively getting access to the game library for no extra cost nbsp The month Premium plan meanwhile is on sale for that tier probably isn t worth it to most but if you want cloud streaming and a further selection of older games it s an option Either way Sony says this sale is set to end on Friday While it s not a formal pick in any of our buying guides Logitech s G Lightspeed is a worthy choice for those in need of a quality wireless gaming mouse for less than It s on the smaller side lacks Bluetooth and requires a AA battery for power but its performance is smooth and consistent and Logitech says it can get up to hours of battery life per charge It s on sale this week for which is only about below its typical street price but still within of its all time low If you can afford to take a step up or just want something more accommodating to larger hands Razer s Basilisk Ultimate is also worth a shout at its current deal price of which is about below its usual going rate It s technically been replaced and its design is for righties only but it has a wider range of customizable buttons and RGB lighting zones as well as a comfy thumb rest Its performance should still yield few complaints and it can work over an included cable in a pinch It also comes with a charging dock Garmin s Index S is the best for athletes pick in our guide to the best smart scales and right now it s on sale for at Amazon and Garmin s own online store That s a discount and tied for the lowest price we ve tracked To be clear most people interested in a more advanced scale do not need to spend quite this much We wish the display on this model was a bit faster too But for those who train consistently we found the Index S to provide a wealth of useful data without being overly complicated to use We also enjoy its sturdy and stylish design If you want a more affordable scale meanwhile Fitbit s Aria Air is the budget pick in our guide and currently on sale for LG s C OLED TV is steeply discounted as part of a wider sale at eBay with the and inch models available for and respectively when you use the code NEWYEARTWENTY at checkout Depending on which size you want this is about to below the sets typical selling price in recent months Each listing here comes via Electronic Express which LG lists as an authorized dealer LG unveiled its OLED TV lineup at CES promising improvements to OLED s longstanding issues with maximum brightness along the way If you don t place your TV in a particular bright room though the C still provides the kind of high contrast vivid colors and wide viewing angles you d expect from a high end OLED panel Do note though that we re likely to see steeper discounts on other still decent sets from last year in the coming weeks as manufacturers look to clear out inventory before launching their newest models Sony s well reviewedXK LED TV for instance is on sale for less than usual Follow EngadgetDeals on Twitter and subscribe to the Engadget Deals newsletter for the latest tech deals and buying advice 2023-01-13 16:39:02
Cisco Cisco Blog #CiscoChat – Become a Collaboration Hero of the Hybrid World https://blogs.cisco.com/learning/ciscochat-become-a-collaboration-hero-of-the-hybrid-world world 2023-01-13 16:35:34
金融 金融庁ホームページ 第146回 自動車損害賠償責任保険審議会を開催します。 https://www.fsa.go.jp/news/r4/singi/20230120.html 自動車損害賠償責任保険 2023-01-13 18:00:00
金融 金融庁ホームページ 金融審議会「顧客本位タスクフォース」(第5回)議事録を公表しました。 https://www.fsa.go.jp/singi/singi_kinyu/kokyakuhoni_tf/gijiroku/20221206.html 金融審議会 2023-01-13 17:00:00
ニュース BBC News - Home Byron Burger chain owner shuts sites and axes jobs https://www.bbc.co.uk/news/business-64260312?at_medium=RSS&at_campaign=KARANGA company 2023-01-13 16:13:25
ニュース BBC News - Home Kamila Valieva: Russia clears figure skater over doping case https://www.bbc.co.uk/sport/winter-sports/64268527?at_medium=RSS&at_campaign=KARANGA russia 2023-01-13 16:46:22
ニュース BBC News - Home Hero Cup: Continental Europe lead Great Britain and Ireland 3-2 after opening day https://www.bbc.co.uk/sport/golf/64267165?at_medium=RSS&at_campaign=KARANGA dhabi 2023-01-13 16:15:00
GCP Cloud Blog Cultural drivers of DevOps success https://cloud.google.com/blog/products/devops-sre/culture-in-the-2022-state-of-devops-report/ Cultural drivers of DevOps successWhile there are as many ways of defining DevOps as there are people most would agree that at the most basic level DevOps is about tools practices and how people work together to deliver software quickly reliably and safely A big part of how people work together has to do with their organization s culture  Research conducted by the DORA team over the past eight years has consistently shown that culture is foundational to an organization s success and the well being of its employees Our data has shown that high performing organizations those that meet their performance and profitability goals are more likely to have a generative culture the State of DevOps report s findings continue to support this claim  This year we examined three main areas related to the impact of culture on DevOps If the shift in work arrangements that has occurred since the start of the Covid pandemic has had an impact on organizational performance  Whether higher team churn impacts organizational performance The impact of employee burnout Work arrangement shiftsFlexible work arrangements have now become the norm at many organizations Employees across many industries have the opportunity to choose between in person hybrid or fully remote work arrangements that best fit their unique needs Our research indicates that this shift has been a good one Specifically we find that flexible work arrangements are associated with higher organizational performance compared to organizations with more rigid work arrangements This is good news These findings demonstrate that being employee centric can have tangible and direct benefits to organizations  Employee churnConstant churn can impact productivity and morale as new team members need time to onboard And those who stay might need to adapt to changes in their workload and team dynamics We found that stable teams ーteams whose composition hadn t changed much over the last months were more likely to exist within high performing organizations Our research also showed that stable teams were more likely to report producing quality documentation compared to teams that experienced more churn A team that is constantly dealing with change may have a harder time keeping up with practices that lead to quality documentation  Employee burnoutLastly we focused again on burnout the feeling of dread apathy and cynicism surrounding work Experiencing burnout can lead people to have lower levels of job satisfaction and increases in turnover not to mention the increased risk of poor mental and physical health outcomes such as increased risk for depression and anxiety heart disease and suicidal thoughts Our findings from this year showed that rigid work arrangements increase the likelihood of employee burnout by  Taken together these three findings underscore the importance of creating a healthy and inclusive culture for employees both at the organizational and team level  While we continue to emphasize the importance of culture we acknowledge that changing or even improving an organization s culture is no easy task We recommend that organizations seek to first understand their employees experiences and subsequently invest resources in addressing culture related issues as part of DevOps transformation efforts  To learn more about how culture impacts organizational performance check out the State of DevOps Report And if you have a story about how you are implementing DORA devops practices don t forget to share your transformation journey by applying to the DevOps Awards by January Maslach C Leiter MP Understanding the burnout experience recent research and its implications for psychiatry World Psychiatry Jun doi wps PMID PMCID PMC 2023-01-13 17:00:00
GCP Cloud Blog Connecting Google Kubernetes Engine to Cloud SQL using the Auth Proxy Operator https://cloud.google.com/blog/products/databases/public-preview-for-cloud-sql-auth-proxy-kubernetes-operator/ Connecting Google Kubernetes Engine to Cloud SQL using the Auth Proxy OperatorWe are constantly looking for ways to simplify the developer experience on Google Cloud Google Kubernetes Engine GKE is a simple way to automatically deploy scale and manage Kubernetes Cloud SQL is a fully managed relational database service for MySQL PostgreSQL and SQL Server Developers often deploy their applications to GKE and store their data in Cloud SQL so connecting GKE to Cloud SQL is typically one of the first big steps in deploying a full stack application The Kubernetes operator simplifies that process How to connect from GKE to Cloud SQLGenerally the easiest way to connect to Cloud SQL is with a language specific Cloud SQL connector There are Cloud SQL connectors for Java Python and Go ーwith more to come in the future If your application is written in one of those languages we recommend starting with a connector Otherwise the Cloud SQL Auth proxy is likely the right choice for your applications running on Google Kubernetes Engine If you re willing to join us on the leading edge the Kubernetes operator is now in Public Preview Switching to the Cloud SQL Auth Proxy Kubernetes OperatorThe Cloud SQL Proxy Operator is currently in Public Preview Here are a few exciting benefits for those ready to make the switch Configure a Cloud SQL Auth Proxy in lines of YAML ーsaving you about lines of YAML configuration or thousands for large clusters Simple configuration of a single Cloud SQL Proxy specific resource ーallowing multiple Kubernetes applications to share the same proxyBest practices by default ーwe maintain the operator and update it to the latest recommendationsAutomatic deployment when the proxy configuration changes coming in the GA release Here s an example of what configuration might look like before the operator Note how much simpler and more elegant the new operator makes deployment code block StructValue u code u apiVersion v r nkind Deployment r nspec r n template r n spec r n containers r n name cloud sql proxy r n args r n http port r n http address r n health check r n structured logs r n my project us central one unix socket csql pg r n env r n name DB SOCKET PATH r n value csql pg r n image gcr io cloud sql connectors cloud sql proxy preview r n imagePullPolicy IfNotPresent r n livenessProbe r n failureThreshold r n httpGet r n path liveness r n port r n scheme HTTP r n periodSeconds r n successThreshold r n timeoutSeconds r n r n u more lines of YAML u u language u u caption lt wagtail wagtailcore rich text RichText object at xe gt And here is what the configuration looks like for the same project after adding the operator code block StructValue u code u apiVersion cloudsql cloud google com valpha r nkind AuthProxyWorkload r nmetadata r n name authproxyworkload sample r nspec r n workloadSelector r n kind Deployment r n name gke cloud sql app r n instances r n connectionString my project us central one r n unixSocketPathEnvName DB SOCKET PATH r n socketType unix r n unixSocketPath csql pg u language u u caption lt wagtail wagtailcore rich text RichText object at xea gt We want your feedbackWhile the Cloud SQL Proxy Kubernetes operator is in Public Preview we want to hear what could make it even better for you We are working on this project in our public GitHub Repository You can find the code quickstart and contribution guidelines there We d love to accept your patches and contributions to this project We re hoping with all of the typing we save you on YAML you might have enough time to create issues or make a pull request Then someday we can give your fingers the much needed vacation they deserve 2023-01-13 17:00: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件)