投稿時間:2023-05-13 01:24:03 RSSフィード2023-05-13 01:00 分まとめ(27件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
AWS AWS Architecture Blog Enable transparent connectivity to Oracle Data Guard environments using Amazon Route 53 CNAME records https://aws.amazon.com/blogs/architecture/enable-transparent-connectivity-to-oracle-data-guard-environments-using-amazon-route-53-cname-records/ Enable transparent connectivity to Oracle Data Guard environments using Amazon Route CNAME recordsCustomers choose AWS for running their Oracle database workload to help increase resiliency performance and scalability of the database layer A high availability HA solution for the database stack is an important aspect to consider when migrating or deploying Oracle databases in AWS to help ensure that the architecture can meet the service level agreement … 2023-05-12 15:12:04
AWS AWS Management Tools Blog Align Business and IT to achieve and sustain PCI DSS compliance https://aws.amazon.com/blogs/mt/align-business-and-it-to-achieve-and-sustain-pci-dss-compliance/ Align Business and IT to achieve and sustain PCI DSS complianceThe Payment Card Industry Data Security Standard PCI DSS contains hundreds of individual requirements that apply to broad swaths of an organization s personnel and IT landscape PCI DSS compliance can be a challenge for customers involved with payments and for those that interact with credit and debit cardholder data The PCI DSS refers to this … 2023-05-12 15:44:38
AWS AWS Back to Basics: Using AWS as Your Disaster Recovery Site for On-Prem Applications https://www.youtube.com/watch?v=nklQq40OiNk Back to Basics Using AWS as Your Disaster Recovery Site for On Prem ApplicationsThere s nothing worse than not being able to deliver results to your customers because of a service outage So how to you protect your teams against this without without breaking the bank Join Peter as he walks you through using AWS for disaster recovery or DR as a common hybrid pattern when using AWS as your backup site This pattern implements continuously replication for your on prem applications and databases into AWS to maintain business continuity Creating a DR strategy with low recovery time and recovery point objectives helps you quickly recover from a failure and minimize data loss   Additional Resources Check out more resources for architecting in the AWS cloud AWS AmazonWebServices CloudComputing BacktoBasics DisasterRecovery 2023-05-12 15:30:44
Docker dockerタグが付けられた新着投稿 - Qiita 【Docker】コンテナからホストにアクセスする https://qiita.com/P-man_Brown/items/19227747eb7916cac14e docker 2023-05-13 00:42:39
海外TECH Ars Technica Anthropic’s Claude AI can now digest an entire book like The Great Gatsby in seconds https://arstechnica.com/?p=1938873 anthropic 2023-05-12 15:44:42
海外TECH Ars Technica Right-wing Twitter worried Musk’s CEO pick could return Twitter to its roots https://arstechnica.com/?p=1938908 linda 2023-05-12 15:24:05
海外TECH Ars Technica Vietnam’s first export EV, Vinfast VF8, makes shaky but promising US debut https://arstechnica.com/?p=1938657 debutleases 2023-05-12 15:00:25
海外TECH DEV Community Intermediate Cypher Query Topics: Exploring Graph Data with Examples https://dev.to/abdulsamad4068/intermediate-cypher-query-topics-exploring-graph-data-with-examples-3ck9 Intermediate Cypher Query Topics Exploring Graph Data with Examples Introduction In our previous blog post embed Getting Started with Cypher Query Language A Beginner s Guide we covered the basics of Cypher the declarative graph query language used for working with graph data in Neoj databases Building upon that foundation this second part of our series will delve into intermediate Cypher query topics We will explore more advanced features and techniques that will enable you to unlock the full potential of Cypher when querying and manipulating graph data Through practical examples we ll cover topics such as path traversal pattern matching conditional queries and data modification Path Traversal One of the powerful features of Cypher is its ability to traverse paths in a graph Path traversal allows you to navigate through nodes and relationships uncovering connections and patterns Here s an example of using path traversal in Cypher MATCH path person Person name Ahmed FRIEND friend Person WHERE friend age gt RETURN path This query starts at a node labeled Person with the name Ahmed and explores paths of length to via the FRIEND relationship It then filters the results based on the age of the friend returning the paths that meet the criteria Pattern Matching Cypher provides a powerful pattern matching capability allowing you to express complex patterns within the graph Patterns are defined using nodes relationships and their properties Here s an example of pattern matching in Cypher MATCH a Person FRIEND gt b Person LIKES gt c Product category Electronics RETURN a name b name c name This query matches a person who is friends with another person and the second person likes a product of the Electronics category It then returns the names of the people and the name of the product Conditional Queries Cypher supports conditional queries enabling you to perform different actions based on specific conditions This allows for dynamic and flexible querying Here s an example of a conditional query in Cypher MATCH person Person WHERE person age gt WITH person CASE WHEN person gender Male THEN Mr person name ELSE Ms person name END AS salutation RETURN salutation This query matches persons older than and assigns a salutation based on their gender It then returns the salutation for each person Data Modification Cypher not only allows querying but also provides capabilities for modifying graph data You can create update or delete nodes and relationships Here s an example of data modification in Cypher CREATE p Person name Ali age RETURN p MATCH p Person name Ali SET p age RETURN p MATCH p Person name Ali DELETE p These queries demonstrate creating a new node updating the age property of an existing node and deleting a node respectively Conclusion In this second part of our Cypher series we explored intermediate Cypher query topics focusing on path traversal pattern matching conditional queries and data modification By mastering these concepts you can gain a deeper understanding of how to effectively navigate and manipulate graph data using Cypher With Cypher s rich set of features you can extract valuable insights from complex graph structures and unlock the full potential of your graph database Stay tuned for the next part of our series where we will dive into advanced Cypher query techniques and optimizations to further enhance your graph data exploration journey 2023-05-12 15:41:18
海外TECH DEV Community How to Build an Internal Company Wiki from Scratch https://dev.to/ravgeetdhillon/how-to-build-an-internal-company-wiki-from-scratch-3lbk How to Build an Internal Company Wiki from ScratchA company wiki is a knowledge hub where organization specific information can be easily accessed by the individuals working in an organization Information in the hub can be related to engineering operations hiring procedures employee information and other company specific information Creating and maintaining a company wiki can be complex but tools like GraphQL and Hygraph previously GraphCMS can make it easier GraphQL is a query language for APIs that allows you to request and fetch only the data that you want Hygraph is a cloud platform for creating databases tables and powerful GraphQL APIs It allows you to create content on the fly with features such as text editors workflows and advanced roles In this tutorial you ll learn to create an internal company wiki from scratch The backend and content management will be implemented with Hygraph and the frontend with Next js Read the full blog on Hygraph Thanks for reading I publish a monthly newsletter in which I share personal stories things that I am working on what is happening in the world of tech and some interesting dev related posts which I come across while surfing the web Connect with me through Twitter •LinkedIn •GitHub or send me an Email ーRavgeet Full Stack Developer and Technical Content Writer 2023-05-12 15:21:12
海外TECH DEV Community Recursion explained with the help from Inception https://dev.to/alexhyettdev/recursion-explained-with-the-help-from-inception-2jg2 Recursion explained with the help from InceptionPeople love to joke about recursion As the saying goes “In order to understand recursion one must first understand recursion You will see recursion mentioned in Twitter threads and Reddit comments If you search for recursion on Google they even joke about it by adding a Did you mean recursion at the top of the search results Even though these are funny they don t really explain recursion very well or why we use it At its simplest level recursion is a function that calls itself but there is more to it than that The point of recursion isn t just to call itself over and over again in an infinite loop If you do that you will just end up with a stack overflow exception Recursion is more like the film Inception Here is a quick recap if you haven t watched Inception before or don t remember much Don t worry I won t spoil it for you if you haven t watched it yet Dom Cobb aka Leonardo DiCaprio makes his living doing corporate espionage Instead of spying he steals the information from people s subconscious while they are dreaming In the film a guy called Saito hires Cobb and offers him the chance to wipe his criminal record clean if he can implant the idea of dissolving a company in the mind of one of his competitors To be able to implant an idea into the subconscious it isn t good enough to go into one dream he has to go several layers deep So a dream inside a dream inside a dream In order to wake someone up from the dream they need to receive a kick a sudden jolt that will wake them up This has to be done at each level so they can wake up from each of their dreams They also have to be mindful of not going too deep otherwise they will enter what they call limbo a dream realm where anything is possible and you can experience a year in the space of minutes in the real world So where am I going with all this Well a recursive function is like a dream it can call itself in the same way that you can enter a dream inside a dream In your recursive function you will always have an exit condition which is like the kick that wakes you up and takes you back to the calling function Without this kick you will keep going into deeper and deeper levels of recursion and eventually enter limbo which in our case is met with a stack overflow exception If you still have lots of questions about recursion like the final scene in Inception then let s have a look at where we can use it Where Recursion is Used Recursive functions are mostly used for navigating tree like structures like the folder structure on your computer Each folder can contain other folders which contain more folders but eventually you will get to a folder that just contains files Then you have to navigate your way back up the folder structure to get where you started The same structure can be seen in the comment threads on YouTube videos or blog posts I will be very disappointed if no one starts a recursion thread in the comments so please leave a comment down below Any place that has an unknown number of nested elements can use recursion to navigate through them For example I have used recursion for parsing logical expressions that contain brackets that contain more expressions that also have to be parsed A common example of recursion is calculating the Fibonacci sequence The sequence starts with and and then each following number is calculated by adding up the previous numbers So let s say we want to calculate the th number in the Fibonacci sequence We can use a recursive function like this one public int Fib int n if n lt return n return Fib n Fib n In this case n starts from so we need to put in to get the th number in the sequence To work out the th number we need to add up the previous numbers But we don t know what they are so we need to call the function again twice in order to work them out This happens again and again until we get to either a or a where we finally return a number and the result works its way back up the call stack until we get our final result of Recursive functions are useful and you get nice simple code but they aren t the most efficient way of doing things For each call we have to push and pop methods from the call stack which results in poor performance In the Fibonacci code we also end up calling the function with the same number multiple times which isn t very efficient In this case you would get better performance from a loop especially at high numbers As with all things in programming it is important to pick the right tool for the job and now that you understand recursion that is one more tool you can use Are you looking to level up your skills in the tech industry My weekly newsletter is written for engineers like you providing you with the tools you need to excel in your career Join here for free → 2023-05-12 15:03:07
Apple AppleInsider - Frontpage News Final Cut Pro & Logic Pro on iPad, iPhone 15 Pro designs, AI at Google I/O https://appleinsider.com/articles/23/05/12/final-cut-pro-logic-pro-on-ipad-iphone-15-pro-designs-ai-at-google-io?utm_medium=rss Final Cut Pro amp Logic Pro on iPad iPhone Pro designs AI at Google I OFinal Cut Pro and Logic Pro officially come to iPad hands on with iPhone and Pro dummy models AI s prominent role at Google I O and what it means for WWDC ーall on the AppleInsider Podcast iPhone ProApple officially announced that Final Cut Pro and Logic Pro are coming to the iPad on May with a subscription model Your hosts discuss how this might affect the Mac versions of the apps and what it means for the ill fated Analyst Read more 2023-05-12 15:14:57
海外TECH Engadget Elon Musk names NBCU ad exec Linda Yaccarino new Twitter CEO https://www.engadget.com/elon-musk-names-nbcu-ad-exec-linda-yaccarino-new-twitter-ceo-155537363.html?src=rss Elon Musk names NBCU ad exec Linda Yaccarino new Twitter CEOOn Thursday Twitter CEO Elon Musk said he had appointed someone to take over from him as CEO and it didn t take long for that person s identity to be confirmed Less than a day later Musk confirmed that NBCUniversal s head of ad sales Linda Yaccarino is taking on the job Yaccarino is expected to start her new role in around six weeks Yaccarino quot will focus primarily on business operations while I focus on product design and new technology quot Musk wrote quot Looking forward to working with Linda to transform this platform into X the everything app quot I am excited to welcome Linda Yaccarino as the new CEO of Twitter LindaYacc will focus primarily on business operations while I focus on product design amp new technology Looking forward to working with Linda to transform this platform into X the everything app ーElon Musk elonmusk May Shortly after Musk said he is giving up the CEO gig to become Twitter s chief technical officer and executive chair reports suggested that Yaccarino was in talks for the position On Friday NBCU confirmed that Yaccarino was leaving the company That s not exactly ideal timing for NBCU given that the company is set to show off its upcoming programming slate to advertisers early next week nbsp Under Yaccarino s watch NBCU has continued its close ties with Twitter The two sides recently expanded their partnership for the Olympic Games which will see Twitter host video from the event Yaccarino tweeted at Musk around the time news emerged of the companies renewed partnership quot “Hey elonmusk here s an idea for our new partnership Periscope for Paris Let s just go hi res first quot Yaccarino wrote Hey elonmusk here s an idea for our new partnership Periscope for Paris Let s just go hi res first…pic twitter com KTknXVJiーLinda Yaccarino lindayacc May Yaccarino could help Twitter to smooth over its fractured relationships with some advertisers In the months after Musk assumed control of Twitter reports suggested that many of the company s top advertisers had temporarily stopped spending ad dollars on the platform Some were said to have expressed concern about their ads appearing next to hate speech and misinformation under Musk s looser approach to content moderation Musk bought Twitter in October and his tenure has been chaotic to say the least From swiftly firing the former leadership team and laying off thousands of workers to moving forward with a plan to purge inactive accounts including those of the deceased it seems like barely a day has gone by over the last seven months without something happening around Elon Musk and Twitter Back in December Musk posted a poll on Twitter asking users if he should remain as CEO or bring someone else in More than million votes later the majority percent voted in favor of Musk stepping down Musk promised to do just that and focus on the technical side of Twitter s operations as soon as he could find someone to take over Five months later it seems he has stuck by his word Shortly after Musk said he is stepping away from Twitter s top job Tesla s share price jumped up With Tesla falling behind on its goal of delivering million vehicles this year despite a litany of price cuts and the Cybertruck perhaps being pushed back again due to a battery production delay Musk may need to pay closer attention to that company Stockholders appear to be pleased that he may be able to devote more time to Tesla ーbut rumors suggest he might be moving on from the CEO position at that company too This article originally appeared on Engadget at 2023-05-12 15:55:37
海外TECH Engadget Amazon's Fire TV Stick 4K Max drops to $35, plus the rest of this week's best tech deals https://www.engadget.com/amazons-fire-tv-stick-4k-max-drops-to-35-plus-the-rest-of-this-weeks-best-tech-deals-151504289.html?src=rss Amazon x s Fire TV Stick K Max drops to plus the rest of this week x s best tech dealsThe biggest news in tech this week came from Google s annual developer conference on Wednesday They announced three new devices The Pixel a smartphone the Pixel Tablet and the Pixel Fold Discounts on brand new products don t happen often but both Amazon and Google were quick to bundle Pixel a orders with a Amazon gift card or a free pair of Pixel Buds respectively ーnot sales per se but free stuff is still compelling for anyone already planning on getting a new phone Of course there were deals unrelated to Google too like savings on Amazon devices including the Fire TV Stick K Max Echo speakers and nearly all Kindle models There s also a sale on Anker charging devices and Apple AirPods Pro Here are the best tech deals from this week that you can still get today nbsp Amazon Fire TV Stick K MaxAs part of a larger sale on Fire streaming devices Amazon s Fire TV Stick K Max is on sale for which is a percent discount and matches the lowest price the streaming device has gone for including during Black Friday sales If the screen you plan to use with the stick isn t K you probably don t need this model The Fire TV Stick Lite is also on sale going for just after a percent discount Our commerce writer Nicole Lee named it the best budget streaming device in our guide It grants access to the latest Fire TV interface and includes an Alexa voice remote so you can find content and change channels just by asking Keep in mind that the Fire TV Stick Lite isn t able to control your TV s power or volume so you ll need to use two remotes Google Pixel aGoogle officially announced the Pixel a towards the end of its I O event on Wednesday Within minutes both Google s storefront and Amazon had the new smartphone for sale Now both are sweetening the deal with add ons Amazon is bundling the phone with a free gift card and Google is throwing in a phone case and a pair of Pixel Buds A Series which have an MSRP of The mobile is a budget alternative to the Pixel and Pro coming in cheaper than the base model Pixel It features the same Tensor G chip as its pricier siblings and actually has higher res cameras and a slightly bigger battery Our senior writer Sam Rutherford already published his review and says it s got everything you need and more The Amazon deal has one caveat that bright coral color option you see in Sam s review isn t available on Amazon because it s a Google Store exclusive Anker chargerAnker has earned numerous accolades from us in our charging and battery guides so it s nice to see the brand putting on a wide sale like this one The Anker Charger is which is a percent discount and only a dollar more than its lowest price ever It will deliver up to W of power as it charges up your devices which should be enough for fast charging smartphones and tablets A slightly newer version of the charging brick confusingly also called the Charger won a top spot in our fast charger guide It s down to after a percent coupon Just be sure to click the coupon box as you add the charger to your cart nbsp If it s time to replace the cable you use for your iPhone you may want to consider the six foot PowerLine II UBC C to Lightning cord which is just after a percent discount nbsp Apple AirPods ProThe second gen AirPods Pro are back on sale for which is a record low There really is no better pair of wireless earbuds out there right now for iPhone users The AirPods Pro pair quickly with iPhones and switch between it and other Apple devices quickly We also appreciate the hands free Siri access it offers so you can get questions answered respond to texts and more just by using voice commands The latest model offers excellent sound quality and active noise cancellation plus much improved Transparency Mode Apple AirTagsA four pack of AirTags is down to again at Amazon which is close to the lowest price we ve seen These Bluetooth trackers let you keep track of items like your keys and wallet from within Apple s Find My app And the latest iPhone can even lead you directly to your lost things provided you re still within Bluetooth range Just make sure to pick up a case or a holder for your AirTags when you buy since they do not have built in holes for keyrings Beats Fit ProSometimes the best colors aren t included in a promotion but this time even the flashy colors of the Beats Fit Pro are percent off unfortunately the earth toned Kardashian shades are only percent off That makes the Coral Pink Tidal Blue and Volt Yellow shades just which is the lowest price we ve seen yet nbsp We named the Beats Fit Pro our favorite earbuds for working out and gave them an in our review thanks to their secure and comfortable fit They ve got enough bass to get your exercise playlists pumping and the six hour battery life will get you through a workout and well beyond It s worth noting that they don t support wireless charging and they tend to work better with iPhones than Android phones possibly because Apple owns the Beats brand nbsp MOOD MKThe MOOD MK effects pedal from Chase Bliss is down to at Reverb and directly from Chase Bliss which is a percent discount off the usual price tag Our managing editor Terrence O Brien wrote about a different pedal from the brand last year and was impressed by the hardware The MOOD MK is similarly well regarded and one of the more popular pedals out there It was discontinued and replaced by the MK this year which is why the deal only lasts as long as units remain but it still a worthy music making companion ーparticularly at this price nbsp Samsung T Shield SSDSamsung TB T Shield SSD is on sale for just at Amazon which handily beats the original list price Of course as is the way with storage devices the price has been steadily dropping since it was released last year but it s still a great way to expand the capacity of your devices This is a more rugged version of the SSD we named the best portable option in our guide The discount is part of a larger Samsung storage sale that also includes the internal Pro SSD TB drive which is off and down to and the GB EVO Select microSD memory card which is perfect for tablets and handheld gaming devices with a memory card slot It s on sale for which is percent off the list price nbsp Eargo As part of a Mother s Day sale the Eargo is off right now at the brand s website an over the counter hearing aid made by a brand that acts more like a tech company than a stodgy medical device organization Our editor at large James Trew tested them out and found them to be pretty comfortable after an hour or so of wear and appreciated the battery life that was enough to get through a full day of use They don t over emphasize sharp sounds or emit feedback like other hearing aids and they adequately amplify sound In the end he said the Eargo s prove that OTC hearing aids don t have to mean scrimping on features and performance Roborock Q Robot Vacuum CleanerA bunch of Roborock robot vacuums are on sale at Amazon right now so you can pick one up for as low as One of our favorite robo vacs the Roborock S has a clippable coupon that will bring the final price down to a record low of While its mobile app left much to be desired the S is a solid dirt sucker with handy zone targeting and cleaning schedule features It also has extra perks like a child lock and a pin and go option which lets you send the machine to a specific location in your home for more precise cleaning Apple HomePod nd gen Apple s latest HomePod is off and down to a record low of While not a huge discount it is the first we ve seen on this model that came out earlier this year Apple fixed one of our biggest complaints about the original HomePod here ーlackluster Siri capabilities The new model can now recognize multiple users play music from voice commands from a number of difference services create recurring smart home automations and more That combined with the HomePod s excellent audio quality clean design and lower price led us to give it a score of in our review Apple Pencil nd gen The second gen Apple Pencil is back on sale for an all time low of If you have a higher end iPad it will come as no surprise that this is the stylus you should get to use with it It s one of the best iPad accessories you can buy and it will be useful for artists note takers and even those who just want a bit more precision when interacting with their tablet It has little to no latency and it magnetically attaches to the side of your iPad so you can keep it handy all the time Kindle Paperwhite Signature EditionAmazon s Kindle Paperwhite Signature is down to which is close to a record low price It s likely overkill for most people but the Signature has a lot of perks that avid readers of ebooks will appreciate including a larger more responsive screen automatic brightness and warm light adjustments and wireless charging We also appreciate its USB C charging port and slim bezels You can also save money on other Kindle models right now too including our favorite budget ereader the Kindle and the Kindle Kids version Google Pixel Buds ProYou can still get Google s Pixel Buds Pro for only at Wellbots when you use the code ENGAD at checkout Google s answer to Apple s AirPods Pro earned a spot on our list of best wireless earbuds thanks to their solid sound quality comfortable design reliable touch controls and wireless charging The buds also have a number of Android specific features including fine tuned Google Assistant perks and automatic switching between Android devices Amazon Echo Show The Echo Show is down to right now which is only more than it was during the holiday shopping season last year This is one of our favorite smart displays and it will be best for those who already use Amazon s Alexa or prefer that virtual assistant over others Its inch size is just right for most rooms of the home and it will be better for watching TV shows and video chatting than other smaller smart displays We also appreciate that it has an upgraded camera with a physical shutter that you can use when you need more privacy Bose QuietComfort Earbuds IIThe Bose QuietComfort Earbuds II are down to right now which is close to their record low price These buds earned a spot on our list of best wireless earbuds for many reasons but the standout is their noise cancellation performance They are by far the best earbuds you can get today if you want to block out the world They also have a comfortable design and great ambient sound as well The discount on these buds is part of a larger sale on Bose headphones at Amazon which also includes the QuietComfort headphones for Follow EngadgetDeals on Twitter and subscribe to the Engadget Deals newsletter for the latest tech deals and buying advice This article originally appeared on Engadget at 2023-05-12 15:15:04
海外TECH Engadget How wood-scanning tech is taking the guesswork out of aging bourbon https://www.engadget.com/penelope-bourbon-oakscan-150047828.html?src=rss How wood scanning tech is taking the guesswork out of aging bourbon“It all came about at PM on a random Wednesday Penelope Bourbon CEO and founder Michael Paladini admitted that late night calls are a regular occurrence for him After his wife goes to bed the kids are asleep and there are no emails hitting his inbox he has time to get creative One of these evening brainstorming sessions was with Robert Crandell a regional sales manager for Tonnellerie Radoux and Pronektar Radoux is a French cooperage that has been making barrels for decades The company has been operating in the US since based in wine country California What s more Radoux has conducted extensive research into the chemical composition and tannins of French oak Since Radoux has completed over trials containing over million analyses to observe polyphenols in the wood that can impact the appearance taste and smell of wine The result is a tool that can instantly measure these properties with Near Infrared Spectrometry rather than using the time consuming process of taking random samples from various batches of staves The technology is called OakScan Tonnellerie Radoux“French oak can be wildly inconsistent Crandell noted All of the variation in French oak can lead to unintended results without careful planning Combine that in with the fact that the wood is more expensive than American oak and companies using it to age wines and spirits can greatly benefit from knowing how their liquid is going to react to the wood It s long been known that trees from different forests that are made into barrels will have different chemical compositions the concept of terroir and thus different levels of tannins There can also be significant variation in trees just a few feet apart or from staves made from different parts of the same tree What s more there can be distinctions in the grain width which affects the extraction time for getting the tannins out of the wood “Even if you ve gone to great lengths and you bought wood from the same forest you still aren t getting the same sort of precision and consistency as with OakScan Crandell said When Radoux uses OakScan to analyze staves bound for production each piece of wood is assigned a barcode and a letter corresponding to its “tannic potential according to the cooperage This not only helps with sorting but it allows the company to build barrels with a specific polyphenolic index PI ensuring the wood is suitable for the style a winery or vineyard is trying to make And since every stave is scanned there s uniformity of the tannin content of each barrel and all the data makes the end result repeatable OakScan also allows customers to select wood from different forests but not by sourcing actual staves from those places Instead Radoux can build the tannin profile and replicate the terroir in a much more consistent way “If someone wanted a Voges style barrel we could work that out based on tannin level said Radoux national sales manager Craig Holme “We can be more precise on what the results are going to be Someone else will get a barrel that may be from two different trees in that forest and they might be completely different According to Holme Radoux can pull extracts from the staves that they can then put in a sample of a prospective customer s product to show them what it s going to do Originally developed exclusively for wine making OakScan was initially used to analyze the chemical characteristics of barrel staves Once the system was developed and fine tuned Radoux began using the same technology for tank staves Thinner than a barrel stave these pieces of wood allow for a quicker extraction process which at the time was intended for larger volumes of wine Where barrels are only toasted on the inside tank staves are finished on all six surfaces and they re designed to be completely submerged “Typically the toasting process for wine is much more precise than the charring process for spirits Crandell explained “So we came up with something very precise and very repeatable However OakScan hadn t really been used extensively in the spirits industry he continued except for a “small experimental project he had done a few years ago Eventually Crandell said he started working with Penelope and another micro distiller to see if the detailed analysis of French oak could work for spirits Penelope BourbonPenelope isn t your traditional bourbon maker The company doesn t actually distill anything Instead it sources aged bourbon from MGP a producer of distilled spirits with operations in ​​Kansas Missouri Indiana Kentucky and Ohio in addition to Mexico and Northern Ireland MGP has its own brands of spirits it actually announced the acquisition of Penelope earlier this week but it also sells bourbon rye whiskey gin and more to other companies to package and sell on their own Penelope buys bourbon of various ages and mashbills from MGP and blends it to their specifications Sometimes they ll bottle those blends as in Four Grain Bourbon and Barrel Strength Bourbon while others undergo additional aging before they re packaged While Radoux primarily caters to vineyards in France Italy Spain the US and more its colleagues at Speyside Cooperage both owned by TFF Group typically work with breweries and distilleries Paladini and Penelope COO and founder Daniel Polise initially worked with Crandell to secure Rosécasks for secondary aging of its bourbon They then collaborated with Speyside Cooperage to source toasted American oak barrels for a secondary finishing of its bourbon For that treatment Penelope would create a blend of aged bourbon and put it in barrels with varying char and toast levels for a period of time In the end Paladini and Polise discovered that even with the same bourbon in the same barrels samples from each would be very different “It would go in completely different wild directions Paladini observed “We found that to be great and that s why that product was incredible Indeed Penelope Toasted Series Bourbon won gold at the San Francisco World Spirits Competition in The company leaned into the variation in the aging results indicating the char and toast levels on the bottles of each batch Of course that means each batch is quite different Following the challenges of the Toasted Series Polise tried using some of the OakScan staves in some samples “We have so many different products that show up and people want us to try and use them he admitted “I finally tried it and I was just shocked Polise explained that the OakScan French oak “stood out from the others greatly Thus the idea for Penelope s Architect Bourbon was hatched The company was hoping to tap into the success of Toasted Series by once again being transparent about the types of wood they were using for secondary aging But while OakScan can create the ultimate consistency batch to batch Paladini says he and Polise weren t sure they really wanted that Photo by Billy Steele Engadget“Our first thought was to take an exploratory approach and highlight the actual flavor profile on the back of the label That profile is coming directly from the oak engineer in France when they run the OakScan process said Paladini On each bottle of Architect there s a spider graph that illustrates the characteristics of that particular “build The company is playing up the idea of constructing a flavor profile so it calls each batch a “build instead Hence the name Architect With Architect Penelope has created six different “builds or stave selections and they re all different However they re still consistent as Crandell explained “We can make a build again it s repeatable he noted And that s because OakScan allows for that consistency rather than the company hoping they can recreate a hit They will of course need to replicate the blended bourbon from MGP that undergoes the secondary aging in order to do so Even if they can t the company can still give a new blend the same “build as a previous version of Architect Since the wood analysis gives them so much control over the end result the combinations and the creative potential are seemingly endless “ OakScan not only gives you the ability to be precise but it also gives you the ability to be creative Crandell said “If you know what the end result is going to be you can change the end result you can control the end result For Penelope French oak that s been analyzed with OakScan is only being used in Architect right now But Paladini and Polise aren t ruling out using the staves for another product in the future “We re constantly playing with different woods and finishes Polise noted “So whatever matches next we may release It just works like that This article originally appeared on Engadget at 2023-05-12 15:00:47
海外科学 NYT > Science Corporate Giants Buy Up Primary Care Practices at Rapid Pace https://www.nytimes.com/2023/05/08/health/primary-care-doctors-consolidation.html medicare 2023-05-12 15:14:42
金融 金融庁ホームページ 「『財務諸表等の用語、様式及び作成方法に関する規則』の取扱いに関する留意事項について(財務諸表等規則ガイドライン)」等の改正(案)の公表について公表しました。 https://www.fsa.go.jp/news/r4/sonota/20230512/20230512.html 様式及び作成方法に関する規則 2023-05-12 17:00:00
金融 金融庁ホームページ 「自己資本比率規制(第1の柱)に関する告示の一部改正(案)」について公表しました。 https://www.fsa.go.jp/news/r4/ginkou/20230512-2.html 自己資本比率 2023-05-12 17:00:00
金融 金融庁ホームページ 株式会社SBI新生銀行に対する公的資金の取扱いに関する契約及び覚書の締結について公表しました。 https://www.fsa.go.jp/news/r4/ginkou/20230512-1.html 公的資金 2023-05-12 16:06:00
金融 金融庁ホームページ 株式会社スプリームスに対する行政処分について公表しました。 https://www.fsa.go.jp/news/r4/sonota/20230512-2/20230512-2.html 株式会社 2023-05-12 16:00:00
ニュース BBC News - Home Eurovision: Ukraine's Zelensky should address contest, says Rishi Sunak https://www.bbc.co.uk/news/uk-politics-65574033?at_medium=RSS&at_campaign=KARANGA president 2023-05-12 15:17:12
ニュース BBC News - Home Harry and others 'long way off' proving hacking claims, Mirror publisher says https://www.bbc.co.uk/news/uk-65570185?at_medium=RSS&at_campaign=KARANGA court 2023-05-12 15:20:48
ニュース BBC News - Home Three teachers in hospital after Johnstone High School disturbance https://www.bbc.co.uk/news/uk-scotland-glasgow-west-65574915?at_medium=RSS&at_campaign=KARANGA school 2023-05-12 15:40:01
ニュース BBC News - Home MP Joanna Cherry's Fringe show to go ahead after trans row https://www.bbc.co.uk/news/uk-scotland-65575748?at_medium=RSS&at_campaign=KARANGA issues 2023-05-12 15:43:36
ニュース BBC News - Home Linda Yaccarino: Twitter CEO rumours circle as ad boss leaves NBCUniversal https://www.bbc.co.uk/news/business-65574826?at_medium=RSS&at_campaign=KARANGA twitter 2023-05-12 15:28:22
ニュース BBC News - Home Pep Guardiola 'can't understand' scheduling of Man City fixtures https://www.bbc.co.uk/sport/football/65574046?at_medium=RSS&at_campaign=KARANGA Pep Guardiola x can x t understand x scheduling of Man City fixturesPep Guardiola says he does not understand the scheduling of Manchester City s fixtures but is beyond fighting against it 2023-05-12 15:46:31
GCP Cloud Blog What is Cloud Scheduler? https://cloud.google.com/blog/products/serverless/what-is-cloud-scheduler/ What is Cloud Scheduler If you want to get right into using Google Cloud Scheduler check out this interactive tutorial So there you are relishing in the fact that you ve just set up a new database and pipeline to process large amounts of your organization s data regularly Feeling alive  Your manager congratulates you great job btw and then informs you that you re now in charge of maintaining this moving forward Something she didn t mention when you started this project  You quickly begin to visualize your weekends taken up by the heavily manual process of backing up the database and making sure that it s properly feeding into the pipeline before the start of each week Long hours using multiple interfaces to make sure nothing fails and starting over when things do  Well you re not alone managing large scale operations that involve many different tasks and dependencies is one of the biggest challenges that developers and businesses face   Not only is it manual time consuming and hard to keep track of everything going on in your cloud environment it also makes it really difficult to scale your organization s IT by creating bottlenecks  If only you could have a way to schedule all of these minute administrative tasks to be completed for you so you could focus on more strategic impactful tasks   Well from the title of this blogpost you can probably guess that Google Cloud Scheduler Cloud Scheduler IS your fully managed highly reliable scheduling service  It allows you to schedule and automate tasks that perform routine maintenance data processing or to trigger workflows Think  scheduled data backups updates batch processing application monitoring automated testing and report generation Plus it comes with an intelligent retry mechanism that you can configure to rerun failed jobs up until the point that you specify It supports a variety of scheduling options including specific date and time recurring intervals and cron expressions or jobs  Cron jobs are a commonly used scheduling tool in the software development industry Linux and Unix world allowing developers to schedule tasks at specific intervals or on specific dates and times These intervals are specified using a formatbased onunix cron You can use Cloud Scheduler to accomplish tasks like easily scheduling recurring data backups ensuring your data is safe and secure in the event of a system failure or data lossprocessing large amounts of data in batches at specific intervals monitoring your applications for errors or performance issues and send notifications to your team if issues are detectedCloud Scheduler is designed to make it easier to manage your cloud environment by allowing you to define schedules run tasks and manage results all from a single centralized location this gives you better control and more visibility over your infrastructure  Plus the fully managed part means you have the reliability of Google s robust infrastructure so you can be confident thatyour jobs will run when they are scheduled to do sothey ll scale automatically to meet your needs handling any volume of jobs from a few tasks per day to thousands of tasks at a time without any additional configuration no worrying about capacity constraints The automation of these processes reduces the risk of human error and frees up your time and mental energy to focus on more important tasks making you more productive and organized So…how does it work Cloud Scheduler works by allowing developers to create jobs that run at specific intervals or when triggered by an event based on specific conditions  Jobs can be created using the Cloud Scheduler UI a command line interface or via the API  Cloud Scheduler can trigger your jobs in a variety of ways and currently supports a wide range of job types including HTTP HTTPS requests and Pub Sub messages You can also define custom job types using Cloud Functions or Cloud Run which gives you the flexibility to run any type of task in your cloud environment Once a job is created you can specify the schedule for it to run on and from there Cloud scheduler takes care of the rest It automatically triggers your task at the specified time or interval and ensures that it runs reliably and consistently   As mentioned above you can create schedules using Unix cron expressions to specify seconds minutes hours days months and weekdays  The scheduler then triggers the job at the target location specified This can be any web service or application and the request can include parameters and data The target location can then process the request and perform the necessary tasks  For example if you wanted to schedule a job to run a data import from BigQuery you could create a job that specifies the file location and the target location cloud storage in this case for the imported data After the job is executed Cloud Scheduler provides detailed information about its status and results This information is stored in logs and can be accessed using the Google Cloud Console APIs or third party tools  It s especially useful to set up Cloud Logging and Cloud Monitoring which provide real time visibility into the status and performance of scheduled jobs enabling you to monitor job execution troubleshoot issues and optimize performance  If you re thinking this all sounds great but am I going to have to give an arm instead of my weekends to make this happen No keep your arm Cloud Scheduler is a cost effective solution where you only pay for the tasks that are executed AND it has a tier that provides up to three jobs a month for free at the account level not project level  With Cloud Scheduler you can schedule Data backups for databases file systems and other data sources ensuring your organizations critical data is backed up regularly and can be restored in case of a disasterResource management tasks such as starting and stopping VM instances deleting temporary files and cleaning up unused resources which can help optimize resource usage and reduce costsData pipeline tasks that move and transform data across different systems both inside and outside of Google Cloud  Fundamentally Cloud Scheduler is more than just a simple job scheduling tool Its flexibility and integration with other Google Cloud services make it a powerful tool for orchestrating complex workflows managing resources automating tasks and saving weekends  For some hands on play time with Cloud Scheduler right now check out this interactive tutorial where you can run your first job for free 2023-05-12 16:00:00
GCP Cloud Blog New Cloud Deploy features make application deployment even more efficient https://cloud.google.com/blog/products/application-development/exploring-new-cloud-deploy-multi-location-and-canary-features/ New Cloud Deploy features make application deployment even more efficientGood practices alone aren t enough to ship software regularly You need good tools There is no shortage of great tools for releasing software into production but Cloud Deploy brings unique value to the table Cloud Deploy is a fully managed opinionated continuous delivery service that makes it faster and easier for you to consistently release software to runtimes like Google Kubernetes Engine and Cloud Run and some exciting new features make it even more powerful We were mindful of the developer experience right from the beginning as you are interacting with Cloud Deploy in the console The GUI navigation experience is unambiguous ーwhat you see is what you have to work with When possible context switching is minimized to reduce developer toil while getting up to speed with new features Let s dive a bit deeper into the feature rich power of Cloud Deploy and how it is streamlining your deployment journey Release promotion rollback and approvalsDetecting problems earlier in the software development life cycle reduces costly outages and makes developers more productive Cloud Deploy brings the idea of shifting left on CI CD to reality For safeguards against unwanted approvals Cloud Deploy allows you to take advantage of flow management features such as release promotion rollback and approvals In fact in arecent developer research study we found that Cloud Deploy helps to automate DevOps style continuous delivery tasks like release promotion and approval are x faster on Google Cloud than with competing cloud services Promotion and approval steps in Google Cloud DeployWhen your release is deployed into a target defined in your delivery pipeline you can promote it to the next target with just one click Promotions kick off right away once initiated This is consistent with any target whether that s a Google kubernetes cluster an Anthos cluster or Cloud Run  Cloud Deploy supports rolling back your deployed application in any target A rollback consists of triggering a rollout against the last successfully deployed release The new rollout uses the same parameters that were used in that successful deployment and can all be controlled within the interface you are used to working with Cloud Deploy brings the idea of shifting left on CI CD to reality For example gone are the days of reaching out to multiple Program Managers Operators etc to get approvals or submitting a ticket and being added to a long queue since we have baked the approval process directly into your interface Now you can require approvals for any target and you can approve or reject releases into that target Approvals can be managed programmatically by integrating your workflow management system such as ServiceNow or other system with Google Cloud Deploy using Pub Sub and the Google Cloud Deploy API By bringing the approval process into the interface helps organizations maintain their policy via software rather than manually time consuming approvals  Multi location deploymentsIn the time since we ran the above mentioned research study in we have made exciting updates to Cloud Deploy features that speed up development For instance we know that being able to deploy to multiple targets at the same time can speed up your rollouts ーand in March we showed you that Cloud Deploy can do just that  Before updating all clusters required waiting for a sequential Cloud Deploy pipeline to run and update each cluster one at a time which was not optimal With this new update to Cloud Deploy you can concurrently deploy to all members in a group of either Google Kuberentes Engine clusters Cloud Run instances or Anthos clusters at once This ability to “parallel deploy clusters will tremendously speed up for example updating all clusters of a globally distributed application  Imagine a scenario where an application is deployed globally In each region there may be multiple clusters In this example the Asia region has four clusters Pipeline shows Google Kubernetes Engine GKE target clusters in regions across Asia asia east asia east asia east and asia eastCloud Deploy makes it possible to deploy to all four clusters in the Asia east region simultaneously If all goes well then a promotion to the clusters in europe west can begin Pipeline view of deployment progression between stagesCanary is now in Public PreviewCanary deployments allow customers to deploy a new version of an application alongside an existing version of that same app The canary new version can be rolled out in customer defined percentages Each percentage increase is called a phase When the phase ends customers can either choose to advance the rollout to the next phase Customers can also opt to rollback for whatever reason This makes it possible to perform safe gradual rollouts that minimize disruption ConclusionWith Cloud Deploy we want to be the simplest and fastest way to deploy your workload onto Google Cloud runtimes and we are excited for you to see future product updates that will continue to drive this mission Not only that but we are making continuous delivery to GKE Cloud Run and Anthos easy and powerful today so be sure to get hands on with Cloud Deploy below  Interactive tutorials GKE Cloud Deploy Cloud Run Cloud DeployQuickstart Deploy an application to two GKE targetsInteractive Tutorial Cloud Deploy End to End 2023-05-12 16: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件)