投稿時間:2023-08-23 02:21:08 RSSフィード2023-08-23 02:00 分まとめ(27件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
AWS AWS Big Data Blog Automate the archive and purge data process for Amazon RDS for PostgreSQL using pg_partman, Amazon S3, and AWS Glue https://aws.amazon.com/blogs/big-data/automate-the-archive-and-purge-data-process-for-amazon-rds-for-postgresql-using-pg_partman-amazon-s3-and-aws-glue/ Automate the archive and purge data process for Amazon RDS for PostgreSQL using pg partman Amazon S and AWS GlueThe post Archive and Purge Data for Amazon RDS for PostgreSQL and Amazon Aurora with PostgreSQL Compatibility using pg partman and Amazon S proposes data archival as a critical part of data management and shows how to efficiently use PostgreSQL s native range partition to partition current hot data with pg partman and archive historical cold data in … 2023-08-22 16:07:02
AWS AWS Machine Learning Blog Machine learning with decentralized training data using federated learning on Amazon SageMaker https://aws.amazon.com/blogs/machine-learning/machine-learning-with-decentralized-training-data-using-federated-learning-on-amazon-sagemaker/ Machine learning with decentralized training data using federated learning on Amazon SageMakerIn this post we discuss how to implement federated learning on Amazon SageMaker to run ML with decentralized training data 2023-08-22 16:24:35
AWS AWS for SAP Event-Driven Architectures with the AWS SDK for SAP ABAP https://aws.amazon.com/blogs/awsforsap/event-driven-architecture-aws-abap-sdk/ Event Driven Architectures with the AWS SDK for SAP ABAPOmnichannel strategies have become the norm for organizations across industries In this environment businesses often face the challenge of integrating different systems to ensure seamless data flow and near real time updates Especially in e commerce businesses showing up to date inventory of a product that customers want to buy is extremely critical Lack of access to accurate inventory … 2023-08-22 16:32:10
AWS AWS - Webinar Channel Analytics in 15: Governed Data Sharing with Amazon DataZone- AWS Analytics in 15 https://www.youtube.com/watch?v=qZehI3V-XGw Analytics in Governed Data Sharing with Amazon DataZone AWS Analytics in Data driven organizations need to ensure that the right data is accessed by the right user for the right purposeーin accordance with the organization s security regulationsーwithout relying on individual credentials Learn how Amazon DataZone can help you provide transparency on data asset usage and approve data subscriptions with a governed workflow with the ability to monitor data assets across projects through usage auditing capabilities Learning Objectives Objective Explore how data driven teams can share data assets Objective Navigate an end to end data sharing demo Objective Learn how to ensure permissions and governance policies are followed in Amazon DataZone To learn more about the services featured in this talk please visit To download a copy of the slide deck from this webinar visit Subscribe to AWS Online Tech Talks On AWS AWSOnlineTechTalks sub confirmation Follow Amazon Web Services Official Website Twitch Twitter Facebook Instagram ️AWS Online Tech Talks cover a wide range of topics and expertise levels through technical deep dives demos customer examples and live Q amp A with AWS experts Builders can choose from bite sized minute sessions insightful fireside chats immersive virtual workshops interactive office hours or watch on demand tech talks at your own pace Join us to fuel your learning journey with AWS AWS 2023-08-22 16:15:03
python Pythonタグが付けられた新着投稿 - Qiita Pandas操作 https://qiita.com/kai_0/items/c312aad7c400eba43452 pandas 2023-08-23 01:08:14
python Pythonタグが付けられた新着投稿 - Qiita Custom Search APIを利用して検索結果を取得してCSVに出力する https://qiita.com/lulu_sekki/items/2ffeed3640d7fc7d67c8 rgooglecustomsearchapik 2023-08-23 01:05:14
js JavaScriptタグが付けられた新着投稿 - Qiita JavaScript の Selenium 使い方メモ (Node.js (Mocha)) https://qiita.com/sueasen/items/33152ff57134f9e6cdea javas 2023-08-23 01:29:15
海外TECH Ars Technica Google says its Android runtime makes apps faster, even without an OS update https://arstechnica.com/?p=1962157 android 2023-08-22 16:07:32
海外TECH MakeUseOf The Pros and Cons of Voice Cloning for Creating Content at Scale https://www.makeuseof.com/voice-cloning-for-content-pros-cons/ The Pros and Cons of Voice Cloning for Creating Content at ScaleVoice cloning significantly reduces time spent on projects like voiceovers But artificial intelligence will always lack the human touch 2023-08-22 16:30:25
海外TECH MakeUseOf What to Do When You’re Unable to Download Any Files on a Windows 10 & 11 https://www.makeuseof.com/unable-to-download-files-windows/ windows 2023-08-22 16:15:26
海外TECH MakeUseOf The 8 Best Invitation Maker Apps for Android and iOS https://www.makeuseof.com/best-invitation-apps-android-ios/ guest 2023-08-22 16:01:26
海外TECH DEV Community Setup SonarQube locally for your Next.js project https://dev.to/elisabethleonhardt/setup-sonarqube-locally-for-your-nextjs-project-497m Setup SonarQube locally for your Next js project What is SonarQube SonarQube is an inspection tool that analyzes aspects of your code like code quality code smells but also tech dept and security vulnerabilities It s a good addition to Prettier and Eslint to ensure code quality Sometimes adding SonarQube to your CICD or even paying SonarCloud is out of scope and out of budget for your project In this guide I show you how to set it up locally ️All the instructions I give are tested on a Debian based distribution you might have to adjust them slightly for other operating systems ️ Install the SonarLint extensionSonarLint works together with Eslint and prettier to notify you about possible issues as you are coding Install the extension in your editor it to make your life easier For VSCode it looks like this Setup the SonarQube serverIn a location of your choice create a docker compose yml file with the following content version services SonarQube image sonarqube community depends on db environment SONAR JDBC URL jdbc postgresql db sonar SONAR JDBC USERNAME sonartest SONAR JDBC PASSWORD sonartest volumes SonarQube data opt sonarqube data SonarQube extensions opt sonarqube extensions SonarQube logs opt sonarqube logs ports db image postgres environment POSTGRES USER sonartest POSTGRES PASSWORD sonartest POSTGRES DB sonar volumes postgresql var lib postgresql postgresql data var lib postgresql datavolumes SonarQube data SonarQube extensions SonarQube logs postgresql postgresql data This contains the images for two containers The first one is the SonarQube server and the second one is a database that SonarQube needs to store all its configurations Start up the docker compose with the command docker compose up d Fixing SonarQube Errors Part In the beginning you will maybe notice that the SonarQube container dies and if you execute the command docker compose logs you will see the following error message ecl frontend SonarQube bootstrap check failure of max virtual memory areas vm max map count is too low increase to at least To solve this change the vm max map count setting in etc sysctl conf with the following command echo vm max map count sudo tee a etc sysctl confThen reload the configurations sudo sysctl pFor Docker on Windows you can go to the Docker Desktop settings and under Deamon switch to Advanzed There you can add the following configuration sysctls vm max map count You will have to restart Docker Desktop afterward for the change to be available Fixing SonarQube Errors Part Most likely the SonarQube container will still fail with the error FATAL database sonar does not existTo fix this get a shell inside the PostgreSQL container docker compose exec db psql U sonartestAnd once inside the container create the sonar database with the command CREATE DATABASE sonar Then exit the psql shell with qNow that the database is created you can run docker compose up d again or restart the SonarQube service with docker compose restart SonarQubeThe SonarQube server should now be available at localhost the default credentials are username admin and password admin Run SonarQube in your projectFirst follow the steps to install the sonar scanner for your operating system Create a file with the name sonar project properties in your project root and adjust it accordingly Organization and project keys are displayed in the right sidebar of the project homepagesonar organization my organizationsonar projectKey my projectsonar host url optional properties defaults to project key sonar projectName My project defaults to not provided sonar projectVersion Path is relative to the sonar project properties file Defaults to sonar sources Encoding of the source code Default is default system encoding sonar sourceEncoding UTF Enter the server on localhost and create a new projectSelect a name and a baseline branch for the projectChoose how SonarQube should analyze your code changes In my case I choose the reference branch option because we are working with feature branches but you will have to adapt this option to your workflow In the next step you will be asked how you want to analyze your repository Since we are configuring a local setup let s select “locally Now generate a token for your project This will link your SonarQube server with your code Once you have your token SonarQube will let you choose a programming language and an operating system and based on that will give you the command you can execute to run your analysis Run the command that SonarQube gives you at the root of your project After running the command SonarQube should show the project results in your Dashboard Click on the project and inspect its findings Make sure to click on “Overall Code to be able to see problems in your whole codebase and not only for the latest changes That s it you did successfully configure SonarQube on your local machine As long as you don t delete the volumes of the docker compose the data will stay even if you turn off your machine or kill the docker containers Is there a better way Let me know in the comments I hope this was helpful 2023-08-22 16:43:16
Apple AppleInsider - Frontpage News iPhone 14 Pro's LiDAR helps create custom prosthetics for dogs https://appleinsider.com/articles/23/08/22/iphone-14-pros-lidar-helps-create-custom-prosthetics-for-dogs?utm_medium=rss iPhone Pro x s LiDAR helps create custom prosthetics for dogsApple s latest Shot on iPhone feature demonstrates an unusual use for the iPhone Pro LiDAR with it used to create custom pet prosthetics Posted to Apple s official YouTube channel on Tuesday the video titled The Invincibles explains how an iPhone Pro has helped the lives of numerous animals by being used to scan them to create prosthetic limbs Following the story of Trip a dog who was adopted at four months old saved from potential euthanasia due to his deformed leg After the leg was surgically amputated Trip then had to face life with three legs but one that would be assisted by technology Read more 2023-08-22 16:41:31
海外TECH Engadget Destiny 2's main storyline comes to an end with 'The Final Shape' on February 27th https://www.engadget.com/destiny-2s-main-storyline-comes-to-an-end-with-the-final-shape-on-february-27th-165616802.html?src=rss Destiny x s main storyline comes to an end with x The Final Shape x on February thAfter nearly a decade the main Destiny story arc is nearing its conclusion Bungie has revealed that Destiny The Final Shape will be available on February th You re tasked with nothing less than stopping The Witness from remaking the universe and have to enter the Traveler itself to save the day As you might guess this involves both an amped up story Bungie has already confirmed the return of Cayde as well as new gameplay mechanics To start your proximity to the Traveler gives you access to new Light powers including some that augment the abilities of nearby players You ll also see new weapons such as a support rifle that can switch to healing teammates Enemies can use new powers of their own too The company is also rethinking how it tells stories with The Final Shape ーinstead of four seasons you ll see three large episodes divided into a trio of smaller acts There could be a stronger incentive to stick around as the story unfolds in other words Bungie is still committed to finishing the current phase and is kicking off the Season of the Witch this week It sees Eris Morn take on Hive attributes to deal with a mounting threat There are a few new systems to enhance your talents and you can even craft hard to get exotic weapons after they ve been unlocked through missions Season that is the season starting in November will make it easier to complete cooperative events There will be a dedicated Fireteam Finder to locate buddies for a mission and everyone can boost to the Light level of the most advanced player in the team The Final Shape isn t necessarily the end of Destiny It does tie together many of the loose ends that have emerged since however It also reflects Bungie s determination to evolve its brand ーit s moving past Destiny to produce a Marathon follow up and other projects This article originally appeared on Engadget at 2023-08-22 16:56:16
海外TECH Engadget The Game Awards 2023 will stream live on December 7th https://www.engadget.com/the-game-awards-2023-will-stream-live-on-december-7th-160040230.html?src=rss The Game Awards will stream live on December thThe Game Awards has grown enormously and has become a much awaited annual year end celebration for video game fans around the world since it first took place in If you re looking forward to watching it this year you can now fire up your calendars and add a reminder The th annual show is scheduled to stream live from the Peacock Theater in Los Angeles on December th Just like in the previous years the event will stream for free across various platforms including Twitch YouTube Facebook TikTok Live Steam and X the website formerly known as Twitter nbsp Last year s show was the biggest one yet with an estimated million viewers tuning in which was almost million more than s numbers It also introduced the Best Adaptation category reserved for projects that translate video games into popular media like movies TV shows and books Plus Pedro Pascal and Bella Ramsey stars of The Last of Us which fans were still looking forward to and had yet to premiere back then attended the event to present an award The organizers haven t revealed just yet whether they ll have big stars guesting again this year but they did say that the event will feature musical performances by The Game Awards Orchestra and other artists Of course you can expect to see new game trailers and announcements for launch dates and expansions among other things nbsp Geoff Keighley creator and executive producer of The Game Awards said quot Each year we look forward to hosting a show that honors the stand out games of the year while also announcing and previewing some of the world s biggest and most anticipated video games With so many beloved video game franchises exploring new mediums and developers creating new experiences across platforms whether in games television movies and beyond the industry continues to expand in many surprising ways and we can t wait to honor the year s best games and to show viewers around the world what s next quot This article originally appeared on Engadget at 2023-08-22 16:00:40
海外科学 NYT > Science Sliman Bensmaia, Who Enabled Prosthetic Limbs to Feel, Dies at 49 https://www.nytimes.com/2023/08/22/science/sliman-bensmaia-dead.html Sliman Bensmaia Who Enabled Prosthetic Limbs to Feel Dies at His work in the neuroscience of touch led to devices that allow amputees and quadriplegics not just to move about the world but also to sense temperature and pressure 2023-08-22 16:12:23
海外TECH WIRED Disney's ESPN Bet Is a Play for Younger Gamblers https://www.wired.com/story/espn-bet-future-disney/ entertainment 2023-08-22 16:33:12
ニュース BBC News - Home British Museum bosses first alerted to thefts in 2021 https://www.bbc.co.uk/news/entertainment-arts-66582935?at_medium=RSS&at_campaign=KARANGA gradel 2023-08-22 16:00:59
ニュース BBC News - Home Lucy Letby: NHS managers must be held to account, doctor says https://www.bbc.co.uk/news/uk-66578698?at_medium=RSS&at_campaign=KARANGA hospital 2023-08-22 16:38:59
ニュース BBC News - Home Greece wildfires: Eighteen bodies found in Greek forest https://www.bbc.co.uk/news/world-europe-66579193?at_medium=RSS&at_campaign=KARANGA greece 2023-08-22 16:48:52
ニュース BBC News - Home Nicky Campbell claims 'Savile scale' teacher abuse https://www.bbc.co.uk/news/uk-scotland-66580604?at_medium=RSS&at_campaign=KARANGA paedophile 2023-08-22 16:07:31
ニュース BBC News - Home Birmingham pub bombings: Relatives angry over no charge decision https://www.bbc.co.uk/news/uk-england-birmingham-66582250?at_medium=RSS&at_campaign=KARANGA birmingham 2023-08-22 16:22:53
ニュース BBC News - Home Lucy Letby: What happens next with inquiry, prison and police review https://www.bbc.co.uk/news/explainers-66573845?at_medium=RSS&at_campaign=KARANGA child 2023-08-22 16:33:50
ニュース BBC News - Home Solheim Cup 2023: Europe team to face United States in Spain confirmed https://www.bbc.co.uk/sport/golf/66570013?at_medium=RSS&at_campaign=KARANGA september 2023-08-22 16:09:20
ビジネス ダイヤモンド・オンライン - 新着記事 アーム上場、AI相場の試金石に - WSJ発 https://diamond.jp/articles/-/328084 試金石 2023-08-23 01:22:00
Azure Azure の更新情報 Public preview: Rate-limit rules for Application Gateway Web Application Firewall https://azure.microsoft.com/ja-jp/updates/public-preview-ratelimit-rules-for-application-gateway-web-application-firewall/ Public preview Rate limit rules for Application Gateway Web Application FirewallProtect applications from abnormally high levels of traffic with rate limit rules on Azure s regional Web Application Firewall running on Application Gateway 2023-08-22 16:00:39
Azure Azure の更新情報 Generally available: Cross Subscription Restore for Azure Virtual Machines https://azure.microsoft.com/ja-jp/updates/generally-available-cross-subscription-restore-for-azure-virtual-machines/ azure 2023-08-22 16:00:37

コメント

このブログの人気の投稿

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