投稿時間:2023-06-02 04:22:15 RSSフィード2023-06-02 04:00 分まとめ(29件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
AWS AWS Database Blog Migrate SQL Server databases in Azure to Amazon RDS Custom for SQL Server using backup and bacpac files and Amazon S3 https://aws.amazon.com/blogs/database/migrate-sql-server-databases-in-azure-to-amazon-rds-custom-for-sql-server-using-backup-and-bacpac-files-and-amazon-s3/ Migrate SQL Server databases in Azure to Amazon RDS Custom for SQL Server using backup and bacpac files and Amazon SIn this post we show you how to migrate from Azure to Amazon Relational Database Service Amazon RDS Custom for SQL Server using the native backup and restore method We also dive deep into the data tier application backup package file Amazon RDS Custom for SQL Server is a managed database service for legacy custom and … 2023-06-01 18:21:13
AWS AWS Database Blog Model molecular SMILES data with Amazon Neptune and RDKit https://aws.amazon.com/blogs/database/model-molecular-smiles-data-with-amazon-neptune-and-rdkit/ Model molecular SMILES data with Amazon Neptune and RDKitModeling chemical structures can be a complex and tedious process even with the help of modern programs and technology The ability to explore chemical structures at the most fundamental level of atoms and the bonds that connect them is an essential process in drug discovery pharmaceutical research and chemical engineering By infusing chemical research with … 2023-06-01 18:05:58
AWS AWS Machine Learning Blog Implement a multi-object tracking solution on a custom dataset with Amazon SageMaker https://aws.amazon.com/blogs/machine-learning/implement-a-multi-object-tracking-solution-on-a-custom-dataset-with-amazon-sagemaker/ Implement a multi object tracking solution on a custom dataset with Amazon SageMakerThe demand for multi object tracking MOT in video analysis has increased significantly in many industries such as live sports manufacturing and traffic monitoring For example in live sports MOT can track soccer players in real time to analyze physical performance such as real time speed and moving distance Since its introduction in ByteTrack remains to … 2023-06-01 18:19:35
AWS AWS Government, Education, and Nonprofits Blog A life of service: From restaurant server to nonprofit senior executive, meet Allyson Fryhoff https://aws.amazon.com/blogs/publicsector/meet-allyson-fryhoff-nonprofit-senior-executive/ A life of service From restaurant server to nonprofit senior executive meet Allyson FryhoffI sat down with Allyson Fryhoff managing director of nonprofit and nonprofit healthcare business at AWS to uncover her life s purpose who inspires her what drives her to make the world a better place her favorite Amazon Leadership Principle and how the power of technology can be used for good Learn more about Allyson and watch our conversation now 2023-06-01 18:38:45
海外TECH MakeUseOf How to Use the DiskUsage Command to Analyze Drive Space on Windows https://www.makeuseof.com/diskusage-command-analyze-drive-space-windows/ windows 2023-06-01 18:16:17
海外TECH MakeUseOf How to Avoid the 5 Most Common Injuries Associated With Cell Phone Use https://www.makeuseof.com/avoid-most-common-cell-phone-injuries/ common 2023-06-01 18:01:18
海外TECH DEV Community PaceTrace ⏳: A Lightweight Progress Bar CLI Library https://dev.to/guaregua19/pacetrace-a-lightweight-progress-bar-cli-library-1a01 PaceTrace A Lightweight Progress Bar CLI LibraryHey there fellow code enthusiasts ️Ever found yourself staring at the screen waiting for an endless script to finish or a gigantic file to upload Well I ve been there done that After some sleepless nights of coding and tons of coffee I m proud to present PaceTrace a progress bar library for Node js that s as customizable as it is user friendly Here s What PaceTrace Can Do So why should PaceTrace be your new darling in the vast sea of progress bar libraries Let s dive in Make it your own With PaceTrace you choose your progress bar s length and appearance Stick with the trusty or go for a sleek █ or add some fun with ⣿ or even a character of your own choosing Pick a side or the middle Left Right Center Your progress bar your call Show or hide the progress percentage It s your choice whether to display the progress percentage or keep it hidden ️Play with the format PaceTrace lets you set your progress bar format You can use placeholders for the bar percentage current value and total value ️Automatic stop and clear Configure PaceTrace to pause the progress bar automatically when it s done or even wipe the console clean Cursor visibility If you prefer not having the console cursor showing while the progress bar is active simply hide it Installation A Walk in the Park Getting PaceTrace on your system is a breeze All it takes is a simple npm command npm install pace traceFor those of you using yarn fear not We ve got you covered npm install pace trace How Do You Use PaceTrace Getting PaceTrace up and running is as easy as pie Just import it create a new instance and you re off to the races import PaceTrace from pacetrace const progress new PaceTrace barStyle star Then increment or decrement the progress to your heart s content progress increment progress decrement When you re ready to show off the progress bar simply call the log method progress log ‍Behind the Scenes ‍PaceTrace is brought to life with TypeScript promising type safety and providing Visual Studio Code users with top notch IntelliSense support And of course we ve got a suite of tests to ensure the library is as reliable as it gets covering both main functionalities and those tricky edge cases Wrapping Up In a nutshell PaceTrace is here to jazz up your console output with a customizable progress bar It s open source and just an npm install away So what are you waiting for Give it a whirl and drop a line to let me know your thoughts Happy coding Let s Collaborate and Innovate Together PaceTrace is more than just a library it s a testament to the power of open source collaboration Your insights your creativity and your passion can take it to new heights So don t be a stranger If you ve got a great idea or a constructive critique we re all ears Feel free to open issues submit pull requests or just drop a if you like what you see After all it s the thoughts and contributions from you the amazing coding community that keep the wheels of innovation turning Here s where the magic happens PaceTrace on GitHubTogether we can make PaceTrace an even more powerful tool for Node js developers worldwide Ready to jump in Let s code a better tomorrow one progress bar at a time ️ 2023-06-01 18:20:46
海外TECH DEV Community Move your mouse pointer with hand gestures https://dev.to/orthymarjan/move-your-mouse-pointer-with-hand-gestures-1gp1 Move your mouse pointer with hand gesturesThere is a game called slither io Link I enjoy playing It s kinda hard playing from my phone curse my small hands and the huge phone and playing it using the built in touchpad of my laptop is not something comfortable either This is how the idea of a virtual mouse came to my mind Controlling the mouse pointer with your gesture would need three parts Firstly you would need some sort of input method that would decide which direction the pointer should go Secondly the input needs to be interpreted and processed And finally the actual movement of the mouse pointer according to those inputs has to be executed Hand gestures can be easily captured from the webcam of my laptop A very close friend recently used MediaPipe to interpret sign language from hand movement and I thought why don t I try using that library too And then for the movement of the mouse a few google searches made me want to use pyautogui Now we start writing the code I used pip to install the above libraries according to the documentation After installing the first thing we do is to import them import cvimport mediapipe as mpimport pyautogui Taking input from the webcam The first step is simple We gotta capture the video from the webcam video cv VideoCapture Understanding MediaPipe Now we gotta use this video to detect movement I wanted my mouse pointer to follow the direction of my index finger MediaPipe is a great option to identify these human gestures In order to use this library we need to understand how the library is identifying the gestures MediaPipe can detect movements of your eyes or hands or your posture in general by identifying some important points of your body These points are called landmarks Let s have a look at the landmarks of our hands So you can see if we want to track the motion of our index finger we need to find out what the landmark is doing at that moment It might look a bit complex but the library already has the facilities of identifying the points done for you You can create a hand object from the Hands class of this library and use it to analyse your movements like this handGesture mp solutions hands Hands You might also need the drawing utilities from MediaPipe if you wanna draw the landmarks of your hand on the output screen drawingTools mp solutions drawing utils The loop Now as you are taking input from the webcam you have to process the input over and over for every frame you d need a continuous loop It might look somewhat like this while True lt read the captured video gt lt format the video gt lt do something to detect the landmark gt lt move the mouse pointer according to the movements of landmark gt cv imshow Virtual Mouse frame cv waitKey Here the imshow creates a window to show your video output and waitKey introduces a delay of ms to let the window respond to the actions Reading and formatting the video You ve already got the video variable where you kept your input video from the webcam while True frame video read frame cv flip frame rgbConvertedFrame cv cvtColor frame cv COLOR BGRRGB lt do something to detect the landmark gt lt move the mouse pointer according to the movements of landmark gt cv imshow Virtual Mouse frame cv waitKey The video read gives us two things a boolean that says if the reading was successful and the actual frame data I don t particularly wanna do anything with the boolean therefore it goes to the placeholder I found the video got flipped in the output window therefore added the cv flip function to horizontally flip the image back This frame contains three attributes height weight and number of channels In this part I added cv cvtColor frame cv COLOR BGRRGB to convert the frame from BGR to RGB My code worked without this one but it is recommended to use this process if you are using MediaPipe with cv as these libraries by default use different colour spaces Finding the landmark Now the frame we got from the RGB conversion needs to be analyzed to find the index finger while True frame video read frame cv flip frame rgbConvertedFrame cv cvtColor frame cv COLOR BGRRGB output handGesture process rgbConvertedFrame hands output multi hand landmarks if hands for hand in hands drawingTools draw landmarks frame hand landmarks hand landmark for id landmark in enumerate landmarks if id lt move the mouse pointer gt cv imshow Virtual Mouse frame cv waitKey We have to process the RGB converted video frame to find the landmark using the handGesture object of the Hands class we declared earlier Here multi hand landmarks lets you get all the landmarks of your hand from the video and we have that stored in the hands variable Now we draw all the landmarks we ve got inside this hands variable using draw landmarks just to get a better view on the output screen However we re gonna work with the landmark only in our current case So the code of the mouse binding will execute only when we find the landmark Moving the mouse pointer When we can find the landmark aka your index finger we have to locate its position and somehow bind it with the mouse Say if the tip of my index finger is at the center of the frame right now and I moved it to the right the mouse pointed needs to move to the right too We can easily do that using ​​pyautogui moveTo mousePositionX mousePositionY function My first intuition was if id x int landmark x frameWidth y int landmark y frameHeight cv circle img frame center x y radius color pyautogui moveTo mousePositionX mousePositionY However the dimension of the frame you are capturing using the camera and the dimension of the screen of your computer might not be the same In my case my mouse pointer was moving but crashing within seconds and I couldn t understand why I needed to scale the values of x and y within the screen screenWidth screenHeight pyautogui size pyautogui size gives you the size of the screen andframeHeight frameWidth frame shapeFrame shape gives you the size of the frame Combining these two it became something like this if id x int landmark x frameWidth y int landmark y frameHeight cv circle img frame center x y radius color mousePositionX screenWidth frameWidth x mousePositionY screenHeight frameHeight y pyautogui moveTo mousePositionX mousePositionY And the final code looks like this import cvimport mediapipe as mpimport pyautoguivideo cv VideoCapture handGesture mp solutions hands Hands drawingTools mp solutions drawing utilsscreenWidth screenHeight pyautogui size while True frame video read frame cv flip frame frameHeight frameWidth frame shape rgbConvertedFrame cv cvtColor frame cv COLOR BGRRGB output handGesture process rgbConvertedFrame hands output multi hand landmarks if hands for hand in hands drawingTools draw landmarks frame hand landmarks hand landmark for id landmark in enumerate landmarks if id x int landmark x frameWidth y int landmark y frameHeight cv circle img frame center x y radius color mousePositionX screenWidth frameWidth x mousePositionY screenHeight frameHeight y pyautogui moveTo mousePositionX mousePositionY cv imshow Virtual Mouse frame cv waitKey And the output was like 2023-06-01 18:03:06
Apple AppleInsider - Frontpage News Zero-click iOS malware attack through iMessage is actively infecting iPhones https://appleinsider.com/articles/23/06/01/zero-click-ios-malware-attack-through-imessage-is-actively-infecting-iphones?utm_medium=rss Zero click iOS malware attack through iMessage is actively infecting iPhonesAntivirus provider Kaspersky has discovered a malware campaign explicitly aimed at infecting iPhones running up to iOS through iMessage ーbut it can be found and prevented iOS devices have been specifically targeted with malwareKaspersky s team identified potentially suspicious behavior emanating from multiple iOS devices However due to the security limitations that restrict direct internal examination of iOS devices the company had to generate offline backups Read more 2023-06-01 18:27:37
海外TECH Engadget The best gifts for the new grads in your life https://www.engadget.com/best-graduation-gifts-111518948.html?src=rss The best gifts for the new grads in your lifeSurviving years of college is no small feat so the graduates in our lives deserve rightful praise and celebration Whether your graduate is going out into the world to get their first job or continuing with their education there are a number of gadgets you can gift them that will make them smile and also come in handy on a daily basis If you re stumped on what to give to the tech savvy grad in your life to celebrate their big accomplishment we ve compiled a list of our favorite graduation gift ideas for you to consider Roku Streaming Stick KSmart TVs are getting more affordable but a quality one still isn t cheap If your grad wants to smarten up their existing TV the Roku Streaming Stick K can do so by opening up a huge selection of streaming options The dongle plugs into the TV s HDMI port and on most sets stays hidden behind the screen The Roku interface is straightforward and the remote can even be used for voice commands In addition to supporting most streaming services available Roku also has its own set of channels with free live TV movies shows sports and news Amy Skorheim Commerce WriterApple Watch Series If your grad is an iPhone user an Apple Watch could end up being their favorite phone accessory Not only is it the best smartwatch available for those that have iPhones but we consider the Series to be the best smartwatch period This graduation gift has a comfortable simple design that you can jazz up with funky bands of all materials and it does a great job of keeping you connected to your phone even when you don t want to whip it out Call text and app alerts from your phone are delivered directly to your wrist and that s while the Watch passively monitors your activity all day long It s a fantastic workout wearable as well giving you access to a bunch of trackable activities and of course it works well with Apple Fitness classes too Performance is solid even if not that much better than the Series that came before it and the Series supports crash detection ECG measurements and blood oxygen monitoring ーValentina Palladino Senior Commerce EditorYouTube TV subscriptionRegardless of whether or not your giftee has a Chromecast we think a YouTube TV subscription will make an excellent grad gift for them The service essentially replaces cable or satellite and your graduate can easily use their phone laptop or connected TV to access it The platform offers pretty much all the standard network and cable offerings including sports channels like ESPN so they won t have to worry about missing their favorite team s game You can either pay for the subscription directly or buy them a Google Play gift card ーNicole Lee Commerce WriterSony WH XMThere s a good chance that your graduate will be working from a few different locations when they start their first job Maybe they ll spend half of their time in an office and the other half in their new apartment but you can help them stay focused anywhere by gifting them the Sony WH XM headphones These are our current favorite high end cans thanks to their excellent sound quality and equally stellar active noise cancellation Their Adaptive Sound Control feature automatically changes the level of noise cancellation depending on your location and what you re doing blocking out as much of the world as necessary without the user needing to do much work There s also multi device connectivity so your graduate can seamlessly go from listening to music on their laptop to taking a call from their smartphone ーV P Chipolo OneLosing stuff is a bummer for anyone grads included I tried out Apple s AirTags Tile trackers and Chipolos for our Bluetooth tracker guide and ended up picking the Chipolo One as the best option for most people That s because it simply does what it s supposed to do without hassle help people locate their keys and let them know when they ve been left behind Chipolo One doesn t have the massive community enabled and potentiallycreepy location tracking of Apple s FindMy but it rings loud with a tap from your phone and sends alerts about forgotten items faster than any other tracker we tried A S Instant Vortex Mini air fryerThe Instant Vortex Mini is a powerful little air fryer that any new college grad should be able to fit into even the most cramped of kitchen setups It has an easy to use touchscreen with a few different cooking modes but we expect most graduates will use it to cook snacks like mozzarella sticks and reheat leftovers to crispy perfection We recommend checking out our air fryer guide if you want to give them something a little bigger that can cook more food at once ーbut if you re only looking out for your grad and maybe their partner or favorite roommate the Instant Vortex Mini will feed them well ーV P Apple iPad AirIf your grad needs a new tablet for checking emails reading e books or binging YouTube the iPad Air is the best mix of price and long term performance The top pick in our guide to the best iPads it has a fast M chip an elegant design a inch display wide accessory support and the extensive app library you get with any iPad All of this comes at a much lower price than the iPad Pro No iPad is a bad buy though so the th or th gen models are worth a look if your grad uses their slate more casually ーJeff Dunn Senior Commerce WriterMarshall Emberton IIThe Marshall Emberton II is a stylish Bluetooth speaker that offers impressively smooth and balanced sound for its compact size It s not the loudest or most bass heavy device of its kind but it s a pleasant listen for smaller get togethers and personal use The six inch frame has an IP rating so your grad can safely use it to listen to podcasts in the shower and Marshall says it can last up to hours on a charge Most appealingly the guitar amp style design looks classy in both its cream or black finishes All of this was enough to earn the Emberton II a spot in our guide to the best Bluetooth speakers ーJ D Logitech Brio There s a good chance your grad will have to take regular video conference calls at their new job even if they go into the office from time to time Sure they could use their laptop s built in basic camera but a webcam like the Logitech Brio can help them put their best face forward on every call they take The Brio shoots p video and they can customize aspects of their feed including brightness contrast and additive filters by using the free Logi Tune software But most of the time the cam will do the hard work for them it has remarkably good auto light correction which will help them look better in dark environments noise reducing dual microphones and auto framing with RightSight If the latter is enabled your grad can shift in their chair and move around and the Brio will adjust automatically to keep them in the center of the frame And when they re not on a call there s a handy shutter that covers the camera lens for extra privacy ーV P Xbox Game Pass subscriptionXbox Game Pass remains a great value for any grad who owns an Xbox or gaming PC and likes to play games in their downtime The subscription s library includes big name series like Halo and Minecraft alongside more experimental gems like Hi Fi Rush nbsp and Pentiment and it still gets you access to first party Xbox games on day one Each title is available to download on demand The Ultimate tier includes perks like cloud gaming and online play but there are cheaper options for just Xbox consoles or PCs as well If your graduate plays more on PlayStation or the Nintendo Switch there are similar services you can gift PlayStation Plus for the former Switch Online for the latter These will almost certainly be appreciated if you re buying for someone who games frequently though they re not quite as strong a value as Game Pass in terms of cost or included games ーJ D Audio Technica AT LPXUSBAudio Technica s AT LPXUSB is a versatile turntable for music loving grads looking to start their own vinyl collection It sounds great its DJ style design is durable and its USB output makes it possible to convert records into digital MP files It s simple to set up and change speeds and because it has a phono preamp it can work with most stereo systems right out of the box If the LP is too expensive the company s AT LPXBT is a less feature rich but still easy to use alternative that also supports Bluetooth ーJ D iRobot Roomba There are a lot of things you need to learn and remember when you first move out of your dorm room and into your own space ーkeeping your home clean is one of them And even if your grad isn t “moving out as much as they are moving into a dedicated portion of their parents home they still need to make sure they re tidying up on a regular basis iRobot s Roomba is one gadget that can help them partially automate their cleaning routine Our favorite budget robot vacuum the Roomba is dead simple to use ーit can be a one button process if they want it to be ーand it does a good job sucking up dirt and debris across carpet and hard flooring We also like iRobot s mobile app which is just as easy to use as the machine alone and it gives them the ability to set cleaning schedules If they go that route it s a one and done situation and they can sit back and watch the robo vac do the work for them ーV P Anker MagGo in Wireless Charging StationAnker s MagGo in wireless charging station is a useful gift to give if you want to set your grad up with basically everything they d need to never run out of power again The bundle includes a wireless charging stand that can power both a phone and a pair of earbuds at the same time and the phone portion detaches into a portable magnetic mAh battery pack The MagGo lineup is MagSafe compatible so if your grad has a newer iPhone they ll be able to take the slim pack with them by snapping it to the back of their smartphone Also included is a W USB C adapter which can power the whole system with the proper speed ーV P Kobo Clara ENow that they re done with syllabi recent grads can read whatever they want and maybe enjoy it Topping our list of the best ereaders is the Clara E from Kobo which has a six inch ppi E Ink display that s far easier on the eyes than a tablet The Clara E is waterproof comfortable to hold and has a quick responsive interface It can access titles from the Kobo store the local public library via built in Overdrive integration or any other e book source except the Kindle store On top of that the warm light is great for reading late into the night something that s far more fun when you re not doing so to cram for a test A S Otterbox Otterspot wireless chargerA recent graduate might be simultaneously looking for jobs apartments and new places to hang out so they ll be out and relying on their phone a lot If they have a model that accommodates wireless charging they could probably use the OtterSpot wireless charging system from Otterbox It earned the top spot in our guide to wireless chargers because it pulls double duty as a desk based charger and a portable battery The disc shaped accessory accommodates up to three coaster like mAh batteries that can charge devices on the go The batteries stack on the charger and the phone goes on top allowing everything to power up at once The batteries can even deliver a charge via USB C too A S Headspace subscriptionThose early days in the working world can be an especially stressful time in anyone s life If your grad has expressed interest in using meditation to help manage their mental health a Headspace subscription could be useful It has a large and well organized selection of guided meditations and mindful exercises to help reduce anxiety and build self control including several sessions for beginners There are one off exercises designed to help with specific real world crises nerves before a job interview for example as well as courses that seek to address more complex states grief self doubt lack of focus etc over multiple sessions A “sleepcasts feature meanwhile combines guided relaxation exercises with soothing narration to create a more healthy sleep environment Apps like this aren t cure alls for mental distress nor are they the only ways to meditate Still they can provide a more organized way for your grad to work toward better peace of mind ーJ D Blue Apron subscriptionA meal kit service should be an approachable way to get your grad in the habit of cooking regularly There are approximately two quintillion meal kit services to choose from nowadays few of which are actually bad and some of which may be better than others depending on your grad s preferences Blue Apron is an especially thoughtful gift and a no fuss choice for newbie cooks though with straightforward recipes various menu options and generally quality ingredients Its website is easy to navigate and while none of these services deliver meals on par with a good restaurant they should still please most tastes ーJ D This article originally appeared on Engadget at 2023-06-01 18:29:57
海外TECH Engadget ‘Spider-Man 2’ will let you swap between Peter and Miles with the push of a button https://www.engadget.com/spider-man-2-will-let-you-swap-between-peter-and-miles-with-the-push-of-a-button-182502190.html?src=rss Spider Man will let you swap between Peter and Miles with the push of a buttonThe Marvel s Spider Man gameplay that Sony showed during last week s PlayStation Showcase shed some light on what it will be like to play as both Peter Parker and Miles Morales in the same game During a spectacular set piece the action switched between the two characters One of the burning questions fans were left with was how swapping between the Spider Men would work throughout the single player game and now developer Insomniac has provided an answer quot When you re playing the main story we control when you switch between Pete and Miles it s done in service to the story when we re making those switches for sure quot Spider Man creative director Bryan Intihar told Eurogamer quot We have content designed around Peter we have content designed around Miles and we have content where you can play either You ll be able to in the open world freely switch between them with a simple button press quot It seems that the Grand Theft Auto V style character switching will happen swiftly too thanks to the PS s capabilities One of the early examples of the console s speedy loading times was seen in Spider Man Miles Morales where players could use the fast travel system to get from one end of Manhattan to the other in just a couple of seconds In addition Miles and Peter will each have their own skill trees and there will be a third one that they share so you can use some of the same abilities with either character quot We saw in the gameplay reveal where Miles has the evolved Venom powers whereas Peter has the Symbiote abilities And so those those change a bit of how you play and you can upgrade those in their respective trees as well game director Ryan Smith said Meanwhile by expanding to Queens and Brooklyn in the sequel Insomniac says the sequel s map is around double the size of the previous two games “Since these two areas are somewhat smaller and residential I think you ll find them different from Manhattan Intihar said in a Gematsu translation of a Famitsu interview “We ve prepared some unexpected situations we haven t done before like a battle on the river between two of the cities so I hope you ll look forward to them Insomniac hasn t revealed a release date for Spider Man However it said the PlayStation exclusive is still on track to arrive this fall This article originally appeared on Engadget at 2023-06-01 18:25:02
海外TECH Engadget Hit cat game 'Stray' is coming to Macs https://www.engadget.com/hit-cat-game-stray-is-coming-to-macs-181521626.html?src=rss Hit cat game x Stray x is coming to MacsFeline focused cyberpunk adventure Stray is officially coming to Mac The critically acclaimed title will be available for all Apple silicon models from the most powerful Mac Studio desktops to standard Macbook Air laptops This is only for silicon models however so older Intel based Macs need not apply There s no release date yet but developer BlueTwelve Studio and publisher Annapurna Interactive urge fans to keep an eye on its Twitter accounts for up to date information Stray originally launched last year for PS PS and PC via Steam The game has gone on to rack up glowing reviews and several industry awards nabbing Best Independent Game and Best Debut Indie Game at The Game Awards As the marketing suggests you play as a cat navigating a cyberpunk world solving puzzles and fooling around with a robot drone companion This is yet another feather in Apple s gaming cap For years decades really the platform struggled to lure top tier developers and high quality titles This has been changing thanks to the power of Apple s silicon chipsets and upscaling tools like MetalFX Hit space sim No Man s Skyjust launched on Mac computers and the platform currently hosts titles like Resident Evil Village Hades Disco Elysium and more This article originally appeared on Engadget at 2023-06-01 18:15:21
海外TECH Engadget Moto Razr 2023 hands-on: Two promising foldable updates to an iconic phone https://www.engadget.com/moto-razr-2023-hands-on-two-promising-foldable-updates-to-an-iconic-phone-specs-price-180043133.html?src=rss Moto Razr hands on Two promising foldable updates to an iconic phoneWhen Motorola rebooted the legendary Razr line as a foldable phone in it felt like such a natural evolution Unfortunately we haven t gotten a ton of updates since then aside from a mildly upgraded G variant in and a China only version late last year But that changes now because today Motorola is announcing not one but two new members of the Razr family with the Razr and Razr And after getting a chance to check both of them out I feel like each one has some interesting features you don t get on competing devices In terms of general design both the Razr and Razr share the same chassis and internal flexible display The main difference is that the Razr sports a inch Hz pOLED screen on its front which Motorola claims is the largest exterior display on any foldable available today while the standard Razr has a much smaller inch external panel The Razr also boasts faster performance thanks to a Snapdragon Gen chip that helps the phone achieve a Hz refresh rate on its main screen whereas the Razr uses a Snapdragon Gen chip that can only support Hz Both also feature watt wired charging and wireless Qi charging though the latter is capped to a slow watts Both feature a side mounted fingerprint sensor GB of RAM and up to GB of storage or GB on the Razr They have the same megapixel hole punch selfie cameras on the interior with the Razr packing a MP main rear camera and a MP ultra wide macro setup while the regular Razr s sensors are MP and MP respectively And as a nod towards everyday durability both Razrs do have some form of water resistance though their IP ratings aren t good for protecting against more than a weak splash or light rain With that out of the way I m going to focus on the Razr because it s the more interesting of the two Unlike the previous foldable Razrs from and the new model doesn t sport the line s iconic chin which is a bit sad But in exchange you get a much bigger screen that feels more usable when compared to rivals like Samsung s Z Flip And the way the display wraps around the phone s two main cameras looks better too Photo by Sam Rutherford EngadgetOn top of that Motorola optimized the exterior display so you can access your most important apps notifications and more without things feeling too cramped Heck there are even some simple games that have been tweaked specifically for the outside display That means you can do stuff like look at a map respond to texts or check your calendar without having to open the phone This gives you some of the adaptability of a big foldable like the Z Fold but in a more compact device Then when you open up the Razr you re greeted by a beautiful inch flexible OLED display with great brightness up to nits And while there technically is a crease that you can feel if you run your fingers over the middle of the screen visually it s almost undetectable It s a really nice acheivement and when you combine that with a chassis that folds completely flat and measures just mm when closed you start to really appreciate the many subtle design tweaks Moto made to get here You even get Gorilla Glass Victus in the front and back for a bit of extra toughness except for on the Viva Magenta model which gets a vegan leather material in the rear In a lot of ways the Razr s body feels like a more polished and functional take on the Z Flip s template The outside screen is bigger and easier to use while the flexible display on the inside doesn t suffer from any distracting furrows or wrinkles Moto even included a slightly larger mAh battery which is great because longevity has never been a strong suit of flip style foldable phones And thanks to a new hinge that can hold its position when half open Moto was even able to include a number of nifty camera modes so you can hold the phone like an old school camcorder use the exterior screen to give your subjects a preview of your shot or trigger the new Photobooth mode by holding your hand up As for the standard Razr the benefit of having a smaller exterior screen is that it leaves room for a larger sensor on its main camera in addition to a slightly bigger mAh battery And while you don t get Gorilla Glass Victus on its exterior subbing that out for vegan leather seems like a great choice both for style and durability Photo by Sam Rutherford EngadgetBut my favorite thing about the Razr family is that by expanding the line into two devices it feels like Motorola is making foldable phones a lot more approachable At the Razr is almost bridging the gap between modern flip phones and bigger foldable devices and could be ideal for people who want a compact device that doesn t sacrifice much in terms of usability My one concern at this point is Moto s timing Currently the Razr is slated to be available for pre order starting on June th before official sales begin on June rd That s close to when Samsung typically announces new foldables in the late summer which means the Razr may only be on the market for a month or two before fresh opposition likely with faster silicon appears Photo by Sam Rutherford EngadgetMeanwhile for those curious about foldable handsets there s the standard Razr Sure it s got a slower chip and its exterior screen isn t meant for much more than checking notifications The one hang up is that at least for now there s no official info about an expected price or release date But according to Motorola executives it will also be “meaningfully cheaper than the Razr which could make it a great entry level foldable especially if Moto can get the price down around or less But if you re like me and you ve been waiting for more foldable phones to hit shelves between Moto s two new Razrs and Google s upcoming Pixel Fold this summer has gotten a lot more exciting real quick This article originally appeared on Engadget at 2023-06-01 18:00:43
海外科学 NYT > Science Allina Health System in Minnesota Cuts Off Patients With Medical Debt https://www.nytimes.com/2023/06/01/business/allina-health-hospital-debt.html Allina Health System in Minnesota Cuts Off Patients With Medical DebtDoctors at the Allina Health System a wealthy nonprofit in the Midwest aren t allowed to see poor patients or children with too many unpaid medical bills 2023-06-01 18:44:03
ニュース BBC News - Home Government to launch legal action over Covid inquiry WhatsApps https://www.bbc.co.uk/news/uk-politics-65782535?at_medium=RSS&at_campaign=KARANGA messages 2023-06-01 18:45:19
ニュース BBC News - Home FonaCab: Taxi firm sacks driver over 'gun' video https://www.bbc.co.uk/news/uk-northern-ireland-65780875?at_medium=RSS&at_campaign=KARANGA online 2023-06-01 18:05:03
ニュース BBC News - Home England v Ireland: Stuart Broad takes five as hosts dominate at Lord's https://www.bbc.co.uk/sport/cricket/65747365?at_medium=RSS&at_campaign=KARANGA England v Ireland Stuart Broad takes five as hosts dominate at Lord x sStuart Broad presses his case for inclusion in the first Ashes Test by taking five wickets as England dominate Ireland on the first of the four day Test at Lord s 2023-06-01 18:06:43
ビジネス ダイヤモンド・オンライン - 新着記事 ラスベガスのカジノ、客が負けやすくなった理由 - WSJ PickUp https://diamond.jp/articles/-/323786 wsjpickup 2023-06-02 03:55:00
ビジネス ダイヤモンド・オンライン - 新着記事 ゲーム知財に黄金期到来か マリオなど映画化相次ぐ - WSJ PickUp https://diamond.jp/articles/-/323785 wsjpickup 2023-06-02 03:50:00
ビジネス ダイヤモンド・オンライン - 新着記事 企業の本当の姿を見極める!就活生が取得したい「財務会計系」「法務系」資格 - 自分の価値の見つけ方・伝え方 https://diamond.jp/articles/-/323600 企業の本当の姿を見極める就活生が取得したい「財務会計系」「法務系」資格自分の価値の見つけ方・伝え方志望企業を理想やブランドイメージだけで選ぶと、思わぬミスマッチに出くわすリスクがある。 2023-06-02 03:40:00
ビジネス ダイヤモンド・オンライン - 新着記事 頭のいい人が「人生を決める」1つの物差し - 創始者たち https://diamond.jp/articles/-/320963 特別 2023-06-02 03:35:00
ビジネス ダイヤモンド・オンライン - 新着記事 「非リーダータイプでも管理職になれる」たった1つの質問 - とにかく仕組み化 https://diamond.jp/articles/-/323240 「非リーダータイプでも管理職になれる」たったつの質問とにかく仕組み化人の上に立つと、やるべき仕事や責任が格段に増える。 2023-06-02 03:30:00
ビジネス ダイヤモンド・オンライン - 新着記事 【精神科医が教える】 頭のいい人が「開運」のためにやっていること・ベスト1 - 精神科医Tomyが教える 40代を後悔せず生きる言葉 https://diamond.jp/articles/-/322489 【精神科医が教える】頭のいい人が「開運」のためにやっていること・ベスト精神科医Tomyが教える代を後悔せず生きる言葉【大好評シリーズ万部突破】誰しも悩みや不安は尽きない。 2023-06-02 03:25:00
ビジネス ダイヤモンド・オンライン - 新着記事 同志社大学のキャンパス環境はどんな雰囲気?【各キャンパス紹介付き】 - 大学図鑑!2024 有名大学82校のすべてがわかる! https://diamond.jp/articles/-/323794 2023-06-02 03:20:00
ビジネス ダイヤモンド・オンライン - 新着記事 職場で「成長し続けられる人」と「伸び悩んでしまう人」の決定的な差とは - 1秒で答えをつくる力 お笑い芸人が学ぶ「切り返し」のプロになる48の技術 https://diamond.jp/articles/-/323769 2023-06-02 03:15:00
ビジネス ダイヤモンド・オンライン - 新着記事 「競争社会でも挫折しない子」に育つ親の習慣・ベスト1 - 世界標準の子育て https://diamond.jp/articles/-/323245 「競争社会でも挫折しない子」に育つ親の習慣・ベスト世界標準の子育て子どもたちが生きる数十年後は、いったいどんな未来になっているのでしょうか。 2023-06-02 03:10:00
ビジネス ダイヤモンド・オンライン - 新着記事 プルデンシャル生命“伝説の営業マン”が教える、100%結果が出る「超シンプルな方法」【書籍オンライン編集部セレクション】 - 超★営業思考 https://diamond.jp/articles/-/323463 プルデンシャル生命“伝説の営業マンが教える、結果が出る「超シンプルな方法」【書籍オンライン編集部セレクション】超営業思考プルデンシャル生命保険で「前人未到」の圧倒的な業績を残した「伝説の営業マン」である金沢景敏さん。 2023-06-02 03:05:00
ビジネス 不景気.com 山梨「八ヶ岳リゾートアウトレット」が破産へ、負債15億円 - 不景気com https://www.fukeiki.com/2023/06/yatsugatake-resort-outlet.html 八ヶ岳リゾートアウトレット 2023-06-01 18:26:21
GCP Cloud Blog What’s new with Google Cloud https://cloud.google.com/blog/topics/inside-google-cloud/whats-new-google-cloud/ What s new with Google CloudWant to know the latest from Google Cloud Find it here in one handy location Check back regularly for our newest updates announcements resources events learning opportunities and more  Tip  Not sure where to find what you re looking for on the Google Cloud blog Start here  Google Cloud blog Full list of topics links and resources Week of May June Google Cloud Deploy The price of an active delivery pipeline is reduced Also single target delivery pipelines no longer incur a charge Underlying service charges continue to apply See Pricing Page for more details Week of May Security Command Center SCC Premium pricing for project level activation is now lower for customers who use SCC to secure Compute Engine GKE Autopilot App Engine and Cloud SQL Please see our updated rate card Also we have expanded the number of finding types available for project level Premium activations to help make your environment more secure Learn more Vertex AI Embeddings for Text Grounding LLMs made easy Many people are now starting to think about how to bring Gen AI and large language models LLMs to production services You may be wondering How to integrate LLMs or AI chatbots with existing IT systems databases and business data We have thousands of products How can I let LLM memorize them all precisely or How to handle the hallucination issues in AI chatbots to build a reliable service Here is a quick solution grounding with embeddings and vector search What is grounding What are embedding and vector search In this post we will learn these crucial concepts to build reliable Gen AI services for enterprise use with live demos and source code Week of May Introducing the date time selector in Log Analytics in Cloud Logging You can now easily customize the date and time range of your queries in the Log Analytics page by using the same date time range selector used in Logs Explorer Metrics Explorer and other Cloud Ops products There are several time range options such as preset times custom start and end times and relative time ranges For more information see Filter by time in the Log Analytics docs Cloud Workstations is now GA We are thrilled to announce the general availability of Cloud Workstations with a list of new enhanced features providing fully managed integrated development environments IDEs on Google Cloud Cloud Workstations enables faster developer onboarding and increased developer productivity while helping support your compliance requirements with an enhanced security posture Learn MoreWeek of May Google is partnering with regional carriers Chunghwa Telecom Innove subsidiary of Globe Group and AT amp T to deliver the TPU Taiwan Philippines U S cable system ーconnecting Taiwan Philippines Guam and California ーto support growing demand in the APAC region We are committed to providing Google Cloud customers with a resilient high performing global network NEC is the supplier and the system is expected to be ready for service in Introducing BigQuery differential privacy SQL building blocks that analysts and data scientists can use to anonymize their data We are also partnering with Tumult Labs to help Google Cloud customers with their differential privacy implementations Scalable electronic trading on Google Cloud A business case with BidFX Working with Google Cloud BidFX has been able to develop and deploy a new product called Liquidity Provision Analytics “LPA launching to production within roughly six months to solve the transaction cost analysis challenge in an innovative way LPA will be offering features such as skew detection for liquidity providers execution time optimization pricing comparison top of book analysis and feedback to counterparties Read more here AWS EC VMs discovery and assessment mFit can discover EC VMs inventory in your AWS region and collect guest level information from multiple VMs to provide technical fit assessment for modernization  See demo video Generate assessment report in Microsoft Excel file mFit can generate detailed assessment report in Microsoft Excel XLSX format which can handle large amounts of VMs in a single report few s which an HTML report might not be able to handle Regulatory Reporting Platform Regulatory reporting remains a challenge for financial services firms We share our point of view on the main challenges and opportunities in our latest blog accompanied by an infographic and a customer case study from ANZ Bank We also wrote a white paper for anyone looking for a deeper dive into our Regulatory Reporting Platform Week of May Microservices observability is now generally available for C Go and Java This release includes a number of new features and improvements making it easier than ever to monitor and troubleshoot your microservices applications Learn more on our user guide Google Cloud Deploy Google Cloud Deploy now supports Skaffold as the default Skaffold version for all target types Release Notes Cloud Build You can now configure Cloud Build to continue executing a build even if specified steps fail This feature is generally available Learn more hereWeek of April General Availability Custom Modules for Security Health Analytics is now generally available Author custom detective controls in Security Command Center using the new custom module capability Next generation Confidential VM is now available in Private Preview with a Confidential Computing technology called AMD Secure Encrypted Virtualization Secure Nested Paging AMD SEV SNP on general purpose ND machines Confidential VMs with AMD SEV SNP enabled builds upon memory encryption and adds new hardware based security protections such as strong memory integrity encrypted register state thanks to AMD SEV Encrypted State SEV ES and hardware rooted remote attestation Sign up here Selecting Tier networking for your Compute Engine VM can give you the bandwidth you need for demanding workloads Check out this blog on Increasing bandwidth to Compute Engine VMs with TIER networking Week of April Use Terraform to manage Log Analytics in Cloud Logging  You can now configure Log Analytics on Cloud Logging buckets and BigQuery linked datasets by using the following Terraform modules Google logging project bucket configgoogle logging linked datasetWeek of April Assured Open Source Software is generally available for Java and Python ecosystems Assured OSS is offered at no charge and provides an opportunity for any organization that utilizes open source software to take advantage of Google s expertise in securing open source dependencies BigQuery change data capture CDC is now in public preview BigQuery CDC provides a fully managed method of processing and applying streamed UPSERT and DELETE operations directly into BigQuery tables in real time through the BigQuery Storage Write API This further enables the real time replication of more classically transactional systems into BigQuery which empowers cross functional analytics between OLTP and OLAP systems Learn more here Week of April Now Available Google Cloud Deploy now supports canary release as a deployment strategy This feature is supported in Preview Learn moreGeneral Availability Cloud Run services as backends to Internal HTTP S Load Balancers and Regional External HTTP S Load Balancers Internal load balancers allow you to establish private connectivity between Cloud Run services and other services and clients on Google Cloud on premises or on other clouds In addition you get custom domains tools to migrate traffic from legacy services Identity aware proxy support and more Regional external load balancer as the name suggests is designed to reside in a single region and connect with workloads only in the same region thus helps you meet your regionalization requirements Learn more New Visualization tools for Compute Engine Fleets TheObservability tab in the Compute Engine console VM List page has reached General Availability The new Observability tab is an easy way to monitor and troubleshoot the health of your fleet of VMs Datastream for BigQuery is Generally Available  Datastream for BigQuery is generally available offering a unique truly seamless and easy to use experience that enables near real time insights in BigQuery with just a few steps Using BigQuery s newly developed change data capture CDC and Storage Write API s UPSERT functionality Datastream efficiently replicates updates directly from source systems into BigQuery tables in real time You no longer have to waste valuable resources building and managing complex data pipelines self managed staging tables tricky DML merge logic or manual conversion from database specific data types into BigQuery data types Just configure your source database connection type and destination in BigQuery and you re all set Datastream for BigQuery will backfill historical data and continuously replicate new changes as they happen Now available  Build an analytics lakehouse on Google Cloud whitepaper The analytics lakehouse combines the benefits of data lakes and data warehouses without the overhead of each In this paper we discuss the end to end architecture which enable organizations to extract data in real time regardless of which cloud or datastore the data reside in use the data in aggregate for greater insight and artificial intelligence AI all with governance and unified access across teams  Download now Week of March Faced with strong data growth Squarespace made the decision to move away from on premises Hadoop to a cloud managed solution for its data platform Learn how they reduced the number of escalations by with the analytics lakehouse on Google Cloud  Read nowLast chance Register to attend Google Data Cloud amp AI Summit  Join us on Wednesday March at AM PDT PM EDT to discover how you can use data and AI to reveal opportunities to transform your business and make your data work smarter Find out how organizations are using Google Cloud data and AI solutions to transform customer experiences boost revenue and reduce costs  Register today for this no cost digital event New BigQuery editions flexibility and predictability for your data cloud  At the Data Cloud amp AI Summit we announced BigQuery pricing editionsーStandard Enterprise and Enterprise Plusーthat allow you to choose the right price performance for individual workloads Along with editions we also announced autoscaling capabilities that ensure you only pay for the compute capacity you use and a new compressed storage billing model that is designed to reduce your storage costs Learn more about latest BigQuery innovations and register for the upcoming BigQuery roadmap session on April Introducing Looker Modeler A single source of truth for BI metrics  At the Data Cloud amp AI Summit we introduced a standalone metrics layer we call Looker Modeler available in preview in Q With Looker Modeler organizations can benefit from consistent governed metrics that define data relationships and progress against business priorities and consume them in BI tools such as Connected Sheets Looker Studio Looker Studio Pro Microsoft Power BI Tableau and ThoughtSpot Bucket based log based metrics ーnow generally available ーallow you to track visualize and alert on important logs in your cloud environment from many different projects or across the entire organization based on what logs are stored in a log bucket Week of March Chronicle Security Operations Feature Roundup Bringing a modern and unified security operations experience to our customers is and has been a top priority with the Google Chronicle team We re happy to show continuing innovation and even more valuable functionality In our latest release roundup we ll highlight a host of new capabilities focused on delivering improved context collaboration and speed to handle alerts faster and more effectively Learn how our newest capabilities enable security teams to do more with less here Announcing Google s Data Cloud amp AI Summit March th  Can your data work smarter How can you use AI to unlock new opportunities Join us on Wednesday March to gain expert insights new solutions and strategies to reveal opportunities hiding in your company s data Find out how organizations are using Google Cloud data and AI solutions to transform customer experiences boost revenue and reduce costs  Register today for this no cost digital event Artifact Registry Feature Preview Artifact Registry now supports immutable tags for Docker repositories If you enable this setting an image tag always points to the same image digest including the default latest tag This feature is in Preview Learn moreWeek of March A new era for AI and Google Workspace  Google Workspace is using AI to become even more helpful starting with new capabilities in Docs and Gmail to write and refine content Learn more Building the most open and innovative AI ecosystem  In addition to the news this week on AI products Google Cloud has also announced new partnerships programs and resources This includes bringing bringing the best of Google s infrastructure AI products and foundation models to partners at every layer of the AI stack chipmakers companies building foundation models and AI platforms technology partners enabling companies to develop and deploy machine learning ML models app builders solving customer use cases with generative AI and global services and consulting firms that help enterprise customers implement all of this technology at scale Learn more From Microbrows to Microservices  Ulta Beauty is building their digital store of the future but to maintain control over their new modernized application they turned to Anthos and GKE Google Cloud s managed container services to provide an eCommerce experience as beautiful as their guests Read our blog to see how a newly minted Cloud Architect learnt Kubernetes and Google Cloud to provide the best possible architecture for his developers Learn more Now generally available understand and trust your data with Dataplex data lineage a fully managed Dataplex capability that helps you understand how data is sourced and transformed within the organization Dataplex data lineage automatically tracks data movement across BigQuery BigLake Cloud Data Fusion Preview and Cloud Composer Preview eliminating operational hassles around manual curation of lineage metadata Learn more here Rapidly expand the reach of Spanner databases with read only replicas and zero downtime moves Configurable read only replicas let you add read only replicas to any Spanner instance to deliver low latency reads to clients in any geography Alongside Spanner s zero downtime instance move service you have the freedom to move your production Spanner instances from any configuration to another on the fly with zero downtime whether it s regional multi regional or a custom configuration with configurable read only replicas Learn more here Week of March Automatically blocking project SSH keys in Dataflow is now GA This service option allows Dataflow users to prevent their Dataflow worker VMs from accepting SSH keys that are stored in project metadata and results in improved security Getting started is easy enable the block project ssh keys service option while submitting your Dataflow job Celebrate International Women s Day Learn about the leaders driving impact at Google Cloud and creating pathways for other women in their industries Read more Google Cloud Deploy now supports Parallel Deployment to GKE and Cloud Run workloads This feature is in Preview  Read more Sumitovant doubles medical research output in one year using LookerSumitovant is a leading biopharma research company that has doubled their research output in one year alone By leveraging modern cloud data technologies Sumitovant supports their globally distributed workforce of scientists to develop next generation therapies using Google Cloud s Looker for trusted self service data research To learn more about Looker check out Week of Feb Mar Add geospatial intelligence to your Retail use cases by leveraging the CARTO platform on top of your data in BigQueryLocation data will add a new dimension to your Retail use cases like site selection geomarketing and logistics and supply chain optimization Read more about the solution and various customer implementations in the CARTO for Retail Reference Guide and see a demonstration in this blog Google Cloud Deploy support for deployment verification is now GA  Read more or Try the DemoWeek of Feb Feb Logs for Network Load Balancing and logs for Internal TCP UDP Load Balancingare now GA Logs are aggregated per connection and exported in near real time providing useful information such as tuples of the connection received bytes and sent bytes for troubleshooting and monitoring the pass through Google Cloud Load Balancers Further customers can include additional optional fields such as annotations for client side and server side GCE and GKE resources to obtain richer telemetry The newly published Anthos hybrid cloud architecture reference design guideprovides opinionated guidance to deploy Anthos in a hybrid environment to address some common challenges that you might encounter Check out the architecture reference design guidehere to accelerate your journey to hybrid cloud and containerization Week of Feb Feb Deploy PyTorch models on Vertex AI in a few clicks with prebuilt PyTorch serving containers which means less code no need to write Dockerfiles and faster time to production Confidential GKE Nodes on Compute Optimized CD VMs are now GA Confidential GKE Nodes help to increase the security of your GKE clusters by leveraging hardware to ensure your data is encrypted in memory helping to defend against accidental data leakage malicious administrators and “curious neighbors Getting started is easy as your existing GKE workloads can run confidentially with no code changes required Announcing Google s Data Cloud amp AI Summit March th Can your data work smarter How can you use AI to unlock new opportunities Register for Google Data Cloud amp AI Summit a digital event for data and IT leaders data professionals developers and more to explore the latest breakthroughs Join us on Wednesday March to gain expert insights new solutions and strategies to reveal opportunities hiding in your company s data Find out how organizations are using Google Cloud data and AI solutions to transform customer experiences boost revenue and reduce costs  Register today for this no cost digital event Running SAP workloads on Google Cloud Upgrade to our newly released Agent for SAP to gain increased visibility into your infrastructure and application performance The new agent consolidates several of our existing agents for SAP workloads which means less time spent on installation and updates and more time for making data driven decisions In addition there is new optional functionality that powers exciting products like Workload Manager a way to automatically scan your SAP workloads against best practices Learn how to install or upgrade the agent here Leverege uses BigQuery as a key component of its data and analytics pipeline to deliver innovative IoT solutions at scale As part of the Built with BigQuery program this blog post goes into detail about Leverege IoT Stack that runs on Google Cloud to power business critical enterprise IoT solutions at scale  Download white paper Three Actions Enterprise IT Leaders Can Take to Improve Software Supply Chain Security to learn how and why high profile software supply chain attacks like SolarWinds and Logj happened the key lessons learned from these attacks as well as actions you can take today to prevent similar attacks from happening to your organization Week of Feb Feb Immersive Stream for XRleverages Google Cloud GPUs to host render and stream high quality photorealistic experiences to millions of mobile devices around the world and is now generally available Read more here Reliable and consistent data presents an invaluable opportunity for organizations to innovate make critical business decisions and create differentiated customer experiences But poor data quality can lead to inefficient processes and possible financial losses Today we announce new Dataplex features automatic data quality AutoDQ and data profiling available in public preview AutoDQ offers automated rule recommendations built in reporting and serveless execution to construct high quality data  Data profiling delivers richer insight into the data by identifying its common statistical characteristics Learn more Cloud Workstations now supports Customer Managed Encryption Keys CMEK which provides user encryption control over Cloud Workstation Persistent Disks Read more Google Cloud Deploy now supports Cloud Run targets in General Availability Read more Learn how to use NetApp Cloud Volumes Service as datastores for Google Cloud VMware Engine for expanding storage capacity Read moreWeek of Jan Feb Oden Technologies uses BigQuery to provide real time visibility efficiency recommendations and resiliency in the face of network disruptions in manufacturing systems As part of the Built with BigQuery program this blog post describes the use cases challenges solution and solution architecture in great detail Manage table and column level access permissions using attribute based policies in Dataplex Dataplex attribute store provides a unified place where you can create and organize a Data Class hierarchy to classify your distributed data and assign behaviors such as Table ACLs and Column ACLs to the classified data classes Dataplex will propagate IAM Roles to tables across multiple Google Cloud projects according to the attribute s assigned to them and a single merged policy tag to columns according to the attribute s attached to them  Read more Lytics is a next generation composableCDP that enables companies to deploy a scalable CDP around their existing data warehouse lakes As part of the Built with BigQuery program for ISVs Lytics leverages Analytics Hub to launch secure data sharing and enrichment solution for media and advertisers This blog post goes over Lytics Conductor on Google Cloud and its architecture in great detail Now available in public preview Dataplex business glossary offers users a cloud native way to maintain and manage business terms and definitions for data governance establishing consistent business language improving trust in data and enabling self serve use of data Learn more here Security Command Center SCC Google Cloud s native security and risk management solution is now available via self service to protect individual projects from cyber attacks It s never been easier to secure your Google Cloud resources with SCC Read our blog to learn more To get started today go to Security Command Center in the Google Cloud console for your projects Global External HTTP S Load Balancer and Cloud CDN now support advanced traffic management using flexible pattern matching in public preview This allows you to use wildcards anywhere in your path matcher You can use this to customize origin routing for different types of traffic request and response behaviors and caching policies In addition you can now use results from your pattern matching to rewrite the path that is sent to the origin Run large pods on GKE Autopilot with the Balanced compute class When you need computing resources on the larger end of the spectrum we re excited that the Balanced compute class which supports Pod resource sizes up to vCPU and GiB is now GA Week of Jan Jan Starting with Anthos version Google supports each Anthos minor version for months after the initial release of the minor version or until the release of the third subsequent minor version whichever is longer We plan to have Anthos minor release three times a year around the months of April August and December in with a monthly patch release for example z in version x y z for supported minor versions For more information read here Anthos Policy Controller enables the enforcement of fully programmable policies for your clusters across the environments We are thrilled to announce the launch of our new built in Policy Controller Dashboard a powerful tool that makes it easy to manage and monitor the policy guardrails applied to your Fleet of clusters New policy bundles are available to help audit your cluster resources against kubernetes standards industry standards or Google recommended best practices The easiest way to get started with Anthos Policy Controller is to just install Policy controller and try applying a policy bundle to audit your fleet of clusters against a standard such as CIS benchmark Dataproc is an important service in any data lake modernization effort Many customers begin their journey to the cloud by migrating their Hadoop workloads to Dataproc and continue to modernize their solutions by incorporating the full suite of Google Cloud s data offerings Check out this guide that demonstrates how you can optimize Dataproc job stability performance and cost effectiveness Eventarc adds support for new direct events from the following Google services in Preview API Gateway Apigee Registry BeyondCorp Certificate Manager Cloud Data Fusion Cloud Functions Cloud Memorystore for Memcached Database Migration Datastream Eventarc Workflows This brings the total pre integrated events offered in Eventarc to over events from Google services and third party SaaS vendors  mFit release adds support for JBoss and Apache workloads by including fit analysis and framework analytics for these workload types in the assessment report See the release notes for important bug fixes and enhancements Google Cloud Deploy Google Cloud Deploy now supports Skaffold version  Release notesCloud Workstations Labels can now be applied to Cloud Workstations resources  Release notes Cloud Build Cloud Build repositories nd gen lets you easily create and manage repository connections not only through Cloud Console but also through gcloud and the Cloud Build API Release notesWeek of Jan Jan Cloud CDN now supports private origin authentication for Amazon Simple Storage Service Amazon S buckets and compatible object stores in Preview This capability improves security by allowing only trusted connections to access the content on your private origins and preventing users from directly accessing it Week of Jan Jan Revionics partnered with Google Cloud to build a data driven pricing platform for speed scale and automation with BigQuery Looker and more As part of the Built with BigQuery program this blog post describes the use cases problems solved solution architecture and key outcomes of hosting Revionics product Platform Built for Change on Google Cloud Comprehensive guide for designing reliable infrastructure for your workloads in Google Cloud The guide combines industry leading reliability best practices with the knowledge and deep expertise of reliability engineers across Google Understand the platform level reliability capabilities of Google Cloud the building blocks of reliability in Google Cloud and how these building blocks affect the availability of your cloud resources Review guidelines for assessing the reliability requirements of your cloud workloads Compare architectural options for deploying distributed and redundant resources across Google Cloud locations and learn how to manage traffic and load for distributed deployments Read the full blog here GPU Pods on GKE Autopilot are now generally available Customers can now run ML training inference video encoding and all other workloads that need a GPU with the convenience of GKE Autopilot s fully managed Kubernetes environment Kubernetes v is now generally available on GKE GKE customers can now take advantage of the many new features in this exciting release This release continues Google Cloud s goal of making Kubernetes releases available to Google customers within days of the Kubernetes OSS release Event driven transfer for Cloud Storage Customers have told us they need asynchronous scalable service to replicate data between Cloud Storage buckets for a variety of use cases including aggregating data in a single bucket for data processing and analysis keeping buckets across projects regions continents in sync etc Google Cloud now offers Preview support for event driven transfer serverless real time replication capability to move data from AWS S to Cloud Storage and copy data between multiple Cloud Storage buckets Read the full blog here Pub Sub Lite now offers export subscriptions to Pub Sub This new subscription type writes Lite messages directly to Pub Sub no code development or Dataflow jobs needed Great for connecting disparate data pipelines and migration from Lite to Pub Sub See here for documentation 2023-06-01 19: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件)