投稿時間:2023-02-20 18:23:17 RSSフィード2023-02-20 18:00 分まとめ(29件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
TECH Techable(テッカブル) 「攻め型」と「守り型」で違う!企業の「NO.2」採用で考えるべきこと/追跡!エグゼクティブ採用のいま&これから【第五回】 https://techable.jp/archives/197573 井上和幸 2023-02-20 08:30:57
TECH Techable(テッカブル) 【LINEリサーチ】マネー・決済系サービスの年代別利用状況!スマホ決済は現金払いを超えた? https://techable.jp/archives/196697 日本全国 2023-02-20 08:00:18
IT 情報システムリーダーのためのIT情報専門サイト IT Leaders 東京システムハウスとサイバートラスト、メインフレームのLinux移行支援で協業、2023年4月にサービス提供 | IT Leaders https://it.impress.co.jp/articles/-/24476 東京システムハウスとサイバートラスト、メインフレームのLinux移行支援で協業、年月にサービス提供ITLeaders東京システムハウスTSHとサイバートラストは年月日、メインフレーム移行支援サービスで協業したと発表した。 2023-02-20 17:14:00
AWS AWS Japan Blog 週刊AWS – 2023/2/13週 https://aws.amazon.com/jp/blogs/news/aws-weekly-20230213/ 週刊 2023-02-20 08:15:14
python Pythonタグが付けられた新着投稿 - Qiita 特定のデータの平均値を取得する方法 https://qiita.com/Mitsu_I/items/5dfc08fd0575b67ff8a4 dfgroupbycolumnnamemean 2023-02-20 17:31:14
js JavaScriptタグが付けられた新着投稿 - Qiita 【jQuery】ヘッダーが固定されているページ内でアンカーリンクがずれないようにする https://qiita.com/EkanTw/items/bc15040e729b473f0c4d jquery 2023-02-20 17:48:39
Ruby Rubyタグが付けられた新着投稿 - Qiita optparseの使い方 https://qiita.com/songcunreon/items/0415ea4e5efac116bf34 optparse 2023-02-20 17:34:45
海外TECH DEV Community Passwordless.ID - Screenshots 🖥️ https://dev.to/dagnelies/passwordlessid-screenshots-2g0j Passwordless ID Screenshots ️Passwordless ID is a free public identity provider allowing users to sign in up in web apps using their fingerprint face recognition or local authentication mechanisms like swipe pattern or PIN code The results are no more passwords a much smoother user experience and vastly improved security It provides two factor authentication using a single touch or a smile in the camera Awesome right Try it now it s a public service free forever no account necessary Since a picture is worth a thousand words here it comes and actually a bunch of them Authentication on various platformsI used my own phone laptop with a German locale sorry guys The cornerstone of this authentication service is to delegate user verification to the local platform You may use your device s fingerprint sensor some swipe pattern windows hello with face recognition or even plain old passwords whatever is configured on your device locally By the way if anybody could provide me a screenshot from a Mac or IPhone that would be great Creating a new userCreating a new user only requires a username An e mail address although useful is entirely optional Why Because there is no need for I forgot my password Upon clicking Create Account you will be prompted for local authentication Once done your account is created That s it What follows is simply defining your profile if you want to Signing inOnce you pick your avatar you must prove it s you by using local authentication Don t worry none of the information like fingerprint or pin codes is ever sent to the server It is used locally to sign a message using asymmetric cryptography and prove you are you OAuth OpenID flowThat is the whole purpose of this service So that any website on the internet can easily ask Who are you Since it is public you can use it out of the box even without account Managing devicesOne of the more unusual aspects of this kind of authentication is that it is more secure by default Only your registered devices can sign in As such it is important to easily add a new device Once you scan the QR code you will be able to register your other device directly And after a while you may end up with several authorized devices If you cannot scan the QR code or open the link in the e mail you can also enter the OTP code manually Recovery optionsNow if you have registered only a single device without email or phone you might be in trouble In that case losing your device would make it impossible to connect to your account anymore That s why the interface emphasizes user guidance It is a new topic for the users too After a classic e mail confirmation it looks already much better Alternatively you could also have just registered another device per QR Code Both are ways to ensure safety E Mail confirmation and recoveryIMHO the screenshots do not really convey the usage and the feeling of this service very well However it might give a slight idea of it I recommend trying out the demo if you are curious or looking at the main site Although it s usable and has the fundamental things working right it is still a bit rough around the edges It still has to be fleshed out regarding certain aspects and needs some polish too But it s working It is in a kind of an early preview That is why feedback is always welcome 2023-02-20 08:45:08
海外TECH DEV Community How did I upgrade Aurora Postgres RDS clusters in Production using Terraform https://dev.to/chiragdm/how-did-i-upgrade-aurora-postgres-rds-clusters-in-production-using-terraform-2bf4 How did I upgrade Aurora Postgres RDS clusters in Production using TerraformStep by Step Guide which includesPlanning required for the upgradeUsage of terraform module and version dependencyDetailed steps for minor major version upgradeProblems faced and their solutions as part of upgradeBest Practices for Database version UpgradeTake a look at detailed article sk cbadbffeaddb 2023-02-20 08:35:07
海外TECH DEV Community 6 git commands, you may not know. https://dev.to/developeralamin/6-git-commands-you-may-not-know-gob git commands you may not know TABLE OF CONTENTS Updating the last commit message Blank Commit Checking the total number of commits Checking files from different a branch Staging adding and committing the changes in a single command Git tutorial on the terminal Here are some of the top git commands which I handpicked that can be useful to increase your productivity and also save your some time Updating the last commit message If you want to update the message of your last commit because either it didn t look conventional or meaningful use this command to edit it git commit amend m Updated message Blank Commit Sometimes we need a blank commit no changes added or deleted maybe we need to initialize our repo or trigger some kind of action we can use this command git commit allow empty m blank commit message Checking the total number of commits If we want to check the total no of the commit on a particular branch we can use this command git rev list count lt branch name gt Example git rev list count main Checking files from different a branch If we want to view some files from a different branch while working on a different branch we can use this command git show lt branch name gt lt file name gt For Eg If we are working on the test branch and want to see the README md file of the main branch we can use this command git show main README md Staging adding and committing the changes in a single command Instead of doing git add andgit commit separately we can use this single command to perform this git commit am message Git tutorial on the terminal Yes you heard is right with only single command use can have a whole git tutorial at your fingertips git help tutorialShare with your friends 2023-02-20 08:20:02
海外TECH DEV Community AWS open source newsletter, #145 https://dev.to/aws/aws-open-source-newsletter-145-4ee0 AWS open source newsletter Feb th Instalment Welcome to edition of the AWS open source newsletter I hope some of you were able to catch the new Build on Open Source show we live streamed last Friday You can catch up and replay the session by clicking on this link where we went over a number of projects from this and a few previous newsletters and we had special guest Valter who walked us through his project terraform dev containers During this episode we asked viewers to provide some quick feedback as to let me know what you find most useful from reading this newsletter Please take seconds to let me know by clicking on the Twitter Poll hereIt has been two weeks since the last newsletter so this week we have a bumper edition with plenty of great new open source projects for you to try out We have ses sidecar which provides a way of using IAM Roles with Amazon SES centralized logs a tool to help you replicate your CloudWatch logs ccExplorer a cli tool to show your AWS resource costs boto formatter a neat tool that provides additional output formats for boto redshift migrate db a tool to simplify migrations in Amazon RedShift aws break glass role a nice example of implementing this control in your secure environments dynamic ec budget control a tool to help cost optimisation for HPC workloads visualize iam access analyzer policy validation findings does what it says on the tin amazon kinesis data streams health check a tool that helps you ensure your Amazon Kinesis streams are what you expect and many more Also covered this week are some great open source technologies including Apache Flink Apache Spark Kubernetes Amazon EKS Apache Iceberg Argo Workflows Quarkus OpenSearch PostgreSQL AWS Amplify AWS ParallelCluster AWS SAM AWS CDK Apache Airflow Amazon EMR Redis OCSF HBase Grafana Prometheus Karpenter and more Before you dive into the newsletter check out the following information in how you can possible help with the recent Turkey Syria Earthquake disaster VOLUNTEERS NEEDED Active disaster volunteer opportunitiesTurkey Syria Earthquake Humanitarian Mapping OpportunityHOW YOU CAN HELP Volunteers will use HOT s Map Tasking Manager to trace satellite imagery that helps responders identify priority areas and more efficiently plan aid to people in need HOT runs on AWS and is built on top of OpenStreetMap data OSM is a free editable map of the world created and maintained by volunteers and available for use under an open license Celebrating open source contributorsThe articles and projects shared in this newsletter are only possible thanks to the many contributors in open source I would like to shout out and thank those folks who really do power open source and enable us all to learn and build on top of what they have created So thank you to the following open source heroes Aidan Steel Colin Dugan Syed Rehan Lukonde Mwila Paul Hidalgo Rupal Mahajan Joshua Bright Anirudha Jadhav Joshua Li Sayali Gaikawad Fabio Oliveira Petri Kallberg George Zhao Kalen Zhang Jiseong Kim SungYoul Park Luis Gerardo Baeza SaiKiran Reddy Aenugu Narendra Merla Subhro Bose Eva Fang Ketan Karalkar Andriy Redko Francesco Tisiot and Payal Singh Latest open source projectsThe great thing about open source projects is that you can review the source code If you like the look of these projects make sure you that take a look at the code and if it is useful to you get in touch with the maintainer to provide feedback suggestions or even submit a contribution Toolsses sidecarses sidecar the first of two tools from Aidan Steel This repo contains code that allows you to deploy an SMTP server sidecar to allow AWS SES usage with IAM roles AWS SES has an SMTP interface but it doesn t support IAM roles so this proof of concept helps fix that As Aidan says I m on a personal crusade against IAM users so I made an SMTP server designed to run as a sidecar to your legacy app that speaks SMTP but needs to use IAM role credentials centralized logscentralized logs another tool from Aidan Steel that provides a code less solution to aggregating AWS CloudWatch log subscriptions across multiple AWS accounts and regions It uses Kinesis Firehose for aggregation and forwarding EventBridge for notifications about new log group creation and Step Functions for assuming roles cross account and calling the AWS SDK aws cloudwatch dashboard generator for infrastructure event managementaws cloudwatch dashboard generator for infrastructure event management is a command line tool is to generate a CloudWatch Dashboard which is based on a list of resources you provide and contains predefined useful CloudWatch metrics selected by AWS Support engineers for monitoring AWS resources during special events or IEM AWS Infrastructure Event Management scenarios The tool is quite simple It reads a CSV file to get your resource IDs then output the dashboard JSON to the directory you specified The README provides examples on how to create the CSV input file the supported AWS resource types and more ccExplorerccExplorer Cloud cost explorer is a simple command line tool from Colin Duggan to help you explore the cost of your cloud resources It s built on open source tools like cobra go echarts and go pretty It lets you quickly surface cost and usage metrics associated with your AWS account and visualise them in a human readable format like a table csv file or chart It was created so I could quickly explore and reason about service costs without switching context from the command line It s not designed as a replacement for the official AWS COST Explorer CLI but does provide some nice features for visualisation and sorting I deployed this using the information in the README and it was easy to get started There are also plenty of example recipes to get you going For folk who love living in the terminal this project is a must check out boto formatterboto formatter is decorator that convert standard boto function response returned as python list in flattened JSON or tabular CSV formats for list of supported services and functions You can output the response to print file or send flattened columnar JSON list to another function to continue your process boto formatter simplifies the process and reduce the need of writing custom codebase potentially of s of line of code to lines of code for simple use cases like generating list of lambda functions or list of cloudfront distriubtions with all the attributes that AWS Python SDK provides redshift migrate dbredshift migrate db this tool helps you to migrate a single database within an Amazon Redshift cluster to another cluster via Datasharing Datasharing is a capability within Amazon Redshift where you can share live data with relative security and ease across Amazon Redshift clusters AWS accounts or AWS Regions for read purposes aws break glass roleaws break glass role this repo helps you create a break glass role for emergency use in order to limit production console access Why would you need such a thing I can hear you all thinking my Jedi skills are strong Often when undergoing security reviews for applications in a full CI CD deployment environment it is recommended to restrict console access to the AWS account that hosts the production environment A popular way to implement this recommendation is to remove all production write access completely from user and role policies In these cases it may be necessary to provision a user or role with elevated permissions to be used only in emergency cases This type of role is typically called a Break Glass Role and is usually used in On Call situations or other circumstances when quick mitigating action is needed Read the rest of the README to help you understand more how you can go about implementing this approach in your own environments dynamic ec budget controldynamic ec budget control is a project for those running HPC workloads that will provide you with some more options to help manage costs This solution uses a dynamic EC cores allocation limit for each business unit BU automatically adapted according to a past time frame e g one week spending that can be adapted anytime according to workload spikes or priorities EC cores allocation limit is enforced in the HPC workload scheduler itself with the use of its dynamic resources HPC jobs breaking the limit will be kept in queue pending status until more cores are released by completed older jobs With this approach a related job pending reason is also provided to both business or job owners making them aware of their spending implications visualize iam access analyzer policy validation findingsvisualize iam access analyzer policy validation findings how to create an Amazon QuickSight dashboard to visualise the policy validation findings from AWS Identity and Access Management IAM Access Analyser You can use this dashboard to better understand your policies and how to achieve least privilege by periodically validating your IAM roles against IAM best practices amazon kinesis data streams health checkamazon kinesis data streams health check provides an example approach to demonstrate health checking the Kinesis Data Streams service by producing a tracer message to a health check stream and consuming it to produce a realtime custom metric to CloudWatch The custom metric can in turn be used to setup an Alarm for immediate alerting in case producing and consuming capabilities to the service are impaired Demos Samples Solutions and WorkshopsData Lake for NonprofitsData Lake for Nonprofits is an open source application that helps nonprofit organisations set up a data lake in their AWS account and populate it with the data that they have in the Salesforce Non Profit Success Pack NPSP schema It uses AWS Amplify to provide a nice easy to use front end and you can see what this looks like and dive deeper by reading the post Dive Deeper into Data Lake for Nonprofits a New Open Source Solution from AWS for Salesforce for Nonprofitsspark on aws lambdaspark on aws lambda is a standalone installation of Spark running on AWS Lambda The Spark is packaged in a Docker container and AWS Lambda is used to execute the image along with the PySpark script Currently heavier engines like Amazon EMR AWS Glue or Amazon EMR serverless are required for event driven or streaming smaller files to use Apache Spark When processing smaller files under MB in size per payload these engines incur resource overhead costs and operate more slowly slower than pandas This container based strategy lowers overhead costs associated with spinning up numerous nodes while processing the data on a single node Use Apache Spark on AWS Lambda for event based pipelines with smaller files if you re seeking for a less expensive choice according to customers multi pipeline serverless web application with cdkmulti pipeline serverless web application with cdk This project allows you to build a serverless web application with multiple pipelines managed separately by your infrastructure and development teams By provisioning this project you can see and experience whether a serverless architecture will behave the same as a traditional architecture Detailed and comprehensive README will help you navigate this sample eks container pipeline cdk templateeks container pipeline cdk template is a CDK TypeScript project that packages a sample application into a container This does require you have an existing Amazon EKS Cluster up and running before hand but the README shares a link to help you The code sample deploys the following resources CodeCommit repository to store the Sample AppECR registry to store the Sample App imageCodeBuild project to build Sample App images on ARM or xSNS Notifications to update end users on the status of the buildCodePipeline to perform the build stages and release to productionUnit tests definition and a report group to display unit tests results in CodeBuildCodeBuild project to deploy a container to EKSbreweries sitewise simulatorbreweries sitewise simulator This repository contains a Python based simulation of a Brewery manufacturing process The code produces factory like data exposed via an OPC UA Server a cross platform open source IEC standard for data exchange from sensors to cloud applications developed by the OPC Foundation for consumption by an OPC UA Client like the IoT SiteWise OPC UA Collector In addition you can configure the publishing of values directly to IoT SiteWise at a specified interval You can then if you want use it to exercise the capabilities of IoT SiteWise Monitor IoT Greengrass IoT TwinMaker and other IoT based AWS services serverless patient engagement stackserverless patient engagement stack is a simple implementation that leverages the powers of Amazon Pinpoint and Amazon Connect to influence positive healthcare outcome through timely notifications to the patients about their upcoming events related their health protocol The assignment of health protocol begins when the patient meets their physician health care provider The care provider develops a health protocol that is inline with patient care events and activities Then the physician assigns that protocol with a specific patient As someone who has recently started to take blood pressure medication I might give this a try employee shift scheduling optimization cdkemployee shift scheduling optimization cdk this project let you provision an example employee shift scheduling application using Amazon ECS The application provides REST API using a private load balancer AWS and Community blog postsSustainable open sourceEssential reading this week is this post from David Nalley AWS Why We Support Sustainable Open Source David covers the three key areas on why AWS invests heavily in open source and how these combine to help ensure sustainable open source On a related note also published last week was this post AWS Teams with OSTIF on Open Source Security Audits where Mark Ryland announced that AWS is sponsoring open source software security audits by the Open Source Technology Improvement Fund OSTIF a non profit dedicated to securing open source This funding is part of a broader initiative at AWS to support open source software supply chain security Apache AirflowIn the post Improve observability across Amazon MWAA tasks Payal Singh provides an overview of logging enhancements when working with Amazon MWAA and then discuss a solution to further enhance end to end observability by modifying the task definitions that make up the data pipeline This is a very cool post and solution so if you are using Apache Airflow then this is a must read hands on Apache Flink and OpenSearchGreat post from Andriy Redko and Francesco Tisiot taking a look at how the Apache Flink Connector for OpenSearch bridges both by enabling you to push the outcome of data transformations directly to an OpenSearch index Sound interesting If so read on in Apache Flink Connector for OpenSearch hands on Apache HudiApache Hudi is a transactional data lake platform that brings database and data warehouse capabilities to the data lake As your data changes often this will lead to updating of your table structure Schema evolution is the addition of new columns removal of existing columns update of column names and so on In the post Automate schema evolution at scale with Apache Hudi in AWS Glue Subhro Bose Eva Fang and Ketan Karalkar focus on how you can drive those schema changes automatically between your databases and data lakes in a cost effective way Apache IcebergIn the post Automate replication of relational sources into a transactional data lake with Apache Iceberg and AWS Glue Luis Gerardo Baeza SaiKiran Reddy Aenugu and Narendra Merla show you how you how to easily replicate all your relational data stores into a transactional data lake in an automated fashion with a single ETL job using Apache Iceberg and AWS Glue HadoopIn the AWS open source newsletter I shared a project called migration hadoop to emr tco simulator that provides you with help if you are looking to move off self managed Hadoop and migrate onto a managed service like Amazon EMR You can now read this post Introducing the AWS ProServe Hadoop Migration Delivery Kit TCO tool where George Zhao Kalen Zhang Jiseong Kim and SungYoul Park look at the use case and the functions and components of the tool share case studies to show you the benefits of using the tool and finally show you the technical information to use the tool QuarkusIn the post Implementing a custom ConfigSource in Quarkus using AWS AppConfig Fabio Oliveira and Petri Kallberg show you how the configuration mechanism in Quarkus can be extended and how we can access configuration stored in AWS AppConfig over the standard ConfigProperty API available in Quarkus so developers can enjoy the smooth developer experience they are used to in Quarkus hands on KarpenterKarpenter is an open source project built to solve issues pertaining to optimal node selection in Kubernetes Karpenter s what you need when you need it model simplifies the process of managing compute resources in Kubernetes by adding compute capacity to your cluster based on a pod s requirements In this post Optimizing your Kubernetes compute costs with Karpenter consolidation Lukonde Mwila explores Karpenter s consolidation capabilities and walks through the impact it can have on optimising Kubernetes data plane costs with a hands on example hands on Other posts and quick readsDriving Action and Communication in AWS Amplify Open Source Projects looks at some processes and tools that the AWS Amplify team use to help build a vibrant and responsive open source communityAchieve up to better price performance for Spark workloads with AWS Graviton on Amazon EMR Serverless discusses the performance improvements observed while running Apache Spark jobs using AWS Graviton on EMR ServerlessAnnouncing General Availability of Amazon EKS Anywhere on Snow provides a hands on guide on getting EKS Anywhere up and running on AWS Snowball Edge devices hands on Monitor Apache HBase on Amazon EMR using Amazon Managed Service for Prometheus and Amazon Managed Grafana shows how to use Prometheus exporters to monitor EMR HBase clusters and set up dashboards to visualise key metrics in Grafana hands on Analyze healthcare FHIR data with Amazon Neptune looks at how you can reduce the complexity of analysing healthcare Fast Healthcare Interoperability Resources FHIR an open industry standard for passing healthcare data between systems data using SPARQL to perform different queries on the data hands on Manage collation changes in PostgreSQL on Amazon Aurora and Amazon RDS explores how text collations work in PostgreSQL the effect on PostgreSQL when the collation changes and how to detect these changes hands on Quick updatesKubernetesIf you were a fan and user of the Amazon EKS Workshop then you will be happy to hear that this has been redesigned and relaunched You can still access the old workshop if you want Find out more by reading the announcement Introducing the Amazon EKS WorkshopAWS SDK for Java xAnnounced last week was the AWS Common Runtime CRT HTTP Client in the AWS SDK for Java x With release version of the SDK the AWS CRT HTTP Client can now be used in production environments The AWS CRT HTTP Client is an asynchronous non blocking HTTP client that can be used by AWS service clients to invoke AWS APIs You can use it as an alternative to the default Netty implementation of the SdkAsyncHttpClient interface It offers faster SDK startup time and smaller memory footprint which is especially important with AWS Lambda as well as lower P latency and enhanced connection management Dive deeper by reading the post Announcing availability of the AWS CRT HTTP Client in the AWS SDK for Java xAWS ParallelClusterPrevious versions of AWS ParallelCluster enabled HPC clusters in a single Amazon EC Availability Zone With AWS ParallelCluster you can now create clusters that use multiple Availability Zones in a Region This gives you more options to provision computing capacity for your HPC workloads You can find out more by reading the post Multiple Availability Zones now supported in AWS ParallelCluster MySQLAmazon Relational Database Service Amazon RDS for MySQL now supports MySQL minor versions and We recommend that you upgrade to the latest minor versions to fix known security vulnerabilities in prior versions of MySQL and to benefit from the numerous fixes performance improvements and new functionality added by the MySQL community PostgreSQLPostgreSQL extensions are libraries that supply extra functions operators or data types to the core database engine Amazon Relational Database Service Amazon RDS for PostgreSQL now supports the tcn extension which provides a trigger function that allows you to asynchronously notify listeners of changes to a table tcn or triggered change notification is a function that generates NOTIFY events on changes to data in specified tables This is useful for applications that need to take action on data changes in near real time such as updating displays of information or cached data Another extension that was also added last week was the seg extension which provides the seg data type for representing line segments or floating point intervals The seg extension provides a data type with operators that allow for storing and querying of line segments or intervals with arbitrary variable precision This is useful for applications needing to represent laboratory measurements OpenSearchThe OpenSearch Project announced last week the release of the Reporting CLI making it convenient to generate reports externally without logging in to OpenSearch Dashboards This gives you the flexibility to programmatically generate reports and connect them to your preferred messaging system You can now schedule and transport reports efficiently through email Check out the post What s new OpenSearch Reporting CLI where Rupal Mahajan Joshua Bright Anirudha Jadhav Joshua Li and Sayali Gaikawad dive deeper into this new release Amazon EMRLast week a new capability was announced for Amazon EMR on EKS to increase job execution resiliency Until now users had to build their own custom job execution retry mechanism outside of Amazon EMR on EKS to make sure their Spark jobs keep running in case of failure With this feature users can now save time and keep their business critical and long running streaming workloads running by having Amazon EMR on EKS automatically re submit jobs in case of failure With job retries once you define a retry policy by providing the amount of attempts to limit executions to Amazon EMR on EKS will enforce and monitor this policy during each job execution giving you visibility via the DescribeJobRun API and AWS CloudWatch events of each retry being performed Also announced was an update to Amazon EMR Serverless Previously the largest worker configuration available on EMR Serverless was vCPUs with up to GB memory Today we are excited to announce that EMR Serverless now offers worker configurations of vCPUs with up to GB memory and vCPUs with up to GB memory allowing you to run more compute or memory intensive workloads on EMR Serverless You can read more about this by checking out the blog post Amazon EMR Serverless supports larger worker sizes to run more compute and memory intensive workloadsRedisAmazon ElastiCache for Redis now includes enhanced I O multiplexing which delivers significant improvements to throughput and latency at scale Enhanced I O multiplexing is ideal for throughput bound workloads with multiple client connections and its benefits scale with the level of workload concurrency As an example when using rg xlarge node and running concurrent clients you can achieve up to increased throughput read and write operations per second and up to decreased P latency compared with ElastiCache for Redis For throughput bound workloads with multiple client connections network I O processing can become a limiting factor in the ability to scale Since March ElastiCache for Redis optimizes compute utilization by handling network I O on dedicated threads allowing the Redis engine to focus on processing commands With this launch each dedicated network I O thread pipelines commands from multiple clients into the Redis engine taking advantage of Redis ability to efficiently process commands in batches You can read more about this in the supporting blog post New for Amazon ElastiCache for Redis Get up to better throughput with enhanced I O multiplexingAWS SAMThe AWS Serverless Application Model SAM Command Line Interface CLI announces the launch of sam list command helping developers access information about deployed resources while they are testing their SAM applications The AWS SAM CLI is a developer tool that makes it easier to build test package and deploy serverless applications Customers can now use the SAM CLI to inspect resources that are defined in their SAM application or deployed within a CloudFormation stack including the endpoints methods and stack outputs required to test the deployed application Previously customers had to use AWS Console to retrieve specific values per resource like endpoint URL and use these retrieved values in their preferred testing tool to invoke their application With this launch SAM CLI users can avoid the context switch during testing their applications and retrieve the information they need via sam list command speeding up their iteration cycles This feature is available with SAM CLI version Videos of the weekOpen Sourcery Ep VGV AWS AmplifyIt is always great to see new open source shows on Twitch and You Tube Open Sourcery started off as a show and tell from VGV and I am delighted they are going public Make sure you support these kinds of shows to get even more open source content out there In this episode join Felix Renan and Jochum and special guests Salih and Abdallah from AWS Amplify as they discuss interesting projects they re working on and share some of the magic happening in the Flutter community and beyond Unifying Your Security Data with Amazon Security Lake and OCSFLaunched at re Invent the Open Cybersecurity Schema Framework OCSF is an open source project delivering an extensible framework for developing schemas along with a vendor agnostic core security schema In this video taken from the AWS User Group in Singapore Paul Hidalgo looks at how this fits in with Amazon Security Lake allowing it to normalise and combine data from AWS and a range of other sources Protobuf with AWS IoT using Open source toolingJoin Syed Rehan as he look at how we can use binary payload such as Protobuf using open source tools and send that payload to the AWS IoT core and see the decoded data downstream into the Amazon S bucket Self Service Kubernetes Development with ArgoCDIf you missed this session from the Containers from the Couch show Subscribe if you have not already you can thank me later in this video Lukonde Mwila shows you how you can create a self service model for Kubernetes development demonstrating how you can create such a workflow with a hands on example using ArgoCD s ApplicationSets Build on Open SourceBuild on Open Source is BACK Season Two has kicked off with the first episode just streamed I hope some of you were able to catch it If not you can watch it on replay hereFor those unfamiliar with this show Build on Open Source is where we go over this newsletter and then invite special guests to dive deep into their open source project Expect plenty of code demos and hopefully laughs We have put together a playlist so that you can easily access all eight of the episodes of the Build on Open Source show Build on Open Source playlist Events for your diaryIf you are planning any events in either virtual in person or hybrid get in touch as I would love to share details of your event with readers Data Science on AWSFeb th OnlineJoin regular hosts Antje Barth and Chris Fregly as they are joined by guests to talk about moving from research to production at scale with PyTorch and look at generative AI in action Find out more and register on the meetup page Research to Production at Amazon Scale With PyTorch Generative AI in actionPGConf IndiaFeb nd to th Radisson Blu Bengaluru IndiaIf you are in or can get to Bengaluru then checkout this conference for PostgreSQL developers and enthusiasts Check out the session line up and get your tickets here Power Up your KubernetesMarch th AWS Office Zurich SwitzerlandIf you want to improve architecture scaling and monitoring of your applications that run on AWS Elastic Kubernetes Service this event is for you During this event you will learn to scale Kubernetes applications with Karpenter monitor your workloads and build SaaS architectures for Kubernetes Find out more and save your place by heading over to the registration page Power up your Kubernetes on AWSEverything OpenMarch th Melbourne AustraliaA new event for the fine folks in Australia Everything Open is running for the first time and the organisers Linux Australia have decided to run this event to provide a space for a cross section of the open technologies communities to come together in person Check out the event details here The CFP us currently open so why not take a look and submit something if you can FOSSASIAApril th th SingaporeFOSSASIA Summit returns as an in person and online event taking place from Thursday th April to Saturday th April at the Lifelong Learning Institute in Singapore If you are interested in attending in person or virtually find out more about the event at the FOSSASIA Summit page CortexEvery other Thursday next one th FebruaryThe Cortex community call happens every two weeks on Thursday alternating at UTC and UTC You can check out the GitHub project for more details go to the Community Meetings section The community calls keep a rolling doc of previous meetings so you can catch up on the previous discussions Check the Cortex Community Meetings Notes for more info OpenSearchEvery other Tuesday pm GMTThis regular meet up is for anyone interested in OpenSearch amp Open Distro All skill levels are welcome and they cover and welcome talks on topics including search logging log analytics and data visualisation Sign up to the next session OpenSearch Community Meeting Stay in touch with open source at AWSRemember to check out the Open Source homepage to keep up to date with all our activity in open source by following us on AWSOpen 2023-02-20 08:05:53
海外TECH DEV Community Refactor your CSS NOW!! https://dev.to/hellonehha/refactor-your-css-now-3oo8 Refactor your CSS NOW Global ResetWhen working with CSS the user agent stylesheet is automatically applied to HTML elements It s crucial to reset this stylesheet before creating your own styles for the project One common practice is to reset the margin and padding values to Why To avoid repetitive line of codes margin padding CSS VariablesMaintaining consistency in your code is crucial especially when it comes to CSS where it s important to maintain consistency in areas such as color font size and spacing One way to ensure consistency is by using variables which can be declared once and reused throughout the code CSS variables not only help maintain consistency but also make it easier to maintain the code over time For example if you need to update a color in your CSS you can do it in one place using CSS variables root primary color h color var primary color box sizingThe box model is a fundamental concept in CSS that involves calculating an element s width and height based on its border and padding If an element has a fixed width or height as well as padding or a border it may result in extra pixels being added to the width or height which can cause bugs in the layout To calculate the width of an element with the box model you would add its width to its border and padding width of element width border paddingLooking at the image above we can see that the width of the div is px However due to the presence of padding and border the actual width of the element has increased to px To prevent this issue from occurring it s recommended to set the box sizing property to border box This ensures that the container s width is not affected by the padding and border and any padding or border added to the element is included within the specified width of the element div width px height px background eee padding px border px solid box sizing border box box sizing box model By setting the box sizing property to border box you can avoid a lot of time and frustration spent trying to fix layout issues such as elements breaking or extra pixels being added to a container with a fixed width This simple technique can save you a lot of time and headaches in the long run is is is a CSS pseudo class function that allows you to test if an element matches a certain selector It returns a boolean value of true or false depending on whether the element matches the specified selector This helps in writing less do more and ease of readability lt input type text gt lt input type email gt input type text input type email section h section h section h instead of the above do this input is type text type email section is h h h font size unitsWhile px is the most commonly used unit in CSS it has its limitations One major issue is that it doesn t adjust based on screen size which can make it difficult to create responsive layouts and maintain the code over time Fortunately there are other units available such as em and rem that can make it easier to create responsive designs and maintain the code When selecting units for your CSS it s important to follow these guidelines Maintain consistency throughout your code Choose units that are responsive to different screen sizes Select units that are easy to change and maintain over time For fonts it s recommended to use rem and for spacing it s best to use em However you should still use px units when necessary based on the requirements of your design has has is a CSS pseudo class selector that matches elements based on whether they contain a specific element or not It allows you to select an element that has another element as a descendant regardless of how deep the descendant is nested For example you could use has to style all div elements that contain an H and H element differently Happy Learning Twitter Linkedin 2023-02-20 08:03:28
海外TECH CodeProject Latest Articles Task EventHandlers – The Little Secret You Didn’t Know https://www.codeproject.com/Articles/5354964/Task-EventHandlers-The-Little-Secret-You-Didn-t-Kn Task EventHandlers The Little Secret You Didn t KnowAs C programmers we ve all been burned by asynchronous EventHandlers And if you still haven t yet then hopefully this article will arm you for being able to better navigate long debugging sessions where functionality mysteriously stops working in your application 2023-02-20 08:20:00
医療系 医療介護 CBnews 介護医療院3カ月間で12施設増、ペース鈍化-厚労省調べ、全国で751施設に https://www.cbnews.jp/news/entry/20230220161856 介護医療院 2023-02-20 18:00:00
医療系 医療介護 CBnews 精神科病院の虐待疑い、患者から丁寧に聞き取りを-厚労省が都道府県・指定都市に事務連絡 https://www.cbnews.jp/news/entry/20230220170055 保健福祉部 2023-02-20 17:10:00
金融 RSS FILE - 日本証券業協会 公社債投資家別条件付売買(現先)月末残高 (旧公社債投資家別現先売買月末残高) https://www.jsda.or.jp/shiryoshitsu/toukei/jyouken/index.html 条件 2023-02-20 09:00:00
金融 RSS FILE - 日本証券業協会 公社債店頭売買高 https://www.jsda.or.jp/shiryoshitsu/toukei/tentoubaibai/index.html 店頭 2023-02-20 09:00:00
金融 金融庁ホームページ 入札公告等を更新しました。 https://www.fsa.go.jp/choutatu/choutatu_j/nyusatu_menu.html 公告 2023-02-20 10:00:00
金融 ニッセイ基礎研究所 今週のレポート・コラムまとめ【2/14~2/20発行分】 https://www.nli-research.co.jp/topics_detail1/id=73968?site=nli 今週のレポート・コラムまとめ【発行分】研究員の眼nbsp物流業界の年問題ーポチる経済を支える物流、生産性向上なるかnbsp成年後見制度はパターナリスティックな制約を課しているのかnbspスパゲッティにみる主観確率ー麺の端を結んでいったら、ldquo輪rdquoはいくつできるnbspーWeeklyエコノミスト・レターnbsp年度経済見通し年月nbspQE速報月期の実質GDPは前期比年率ー四半期ぶりのプラス成長も、月期の落ち込みを取り戻せずnbspー基礎研レポートnbspコミュニケーションの促進に向けた対境住民の活用ー外国人集住地区における異文化共生に向けてーnbsp経過措置の適用を年月から順次終了東証市場再編後の課題nbsp年月に話題になった改革案や園児の募金が年金ツイートの契機にー「年金」を含むツイートの投稿契機年月nbsp当面の株価見通しと年の投資戦略ーレバレッジ型ETFの正しい活用法nbspー基礎研マンスリーnbsp意外にしぶとい円安、持続性をどうみるかマーケット・カルテ月号nbspー基礎研レターnbsp米株高は続かない株高継続には厳しいつの条件nbspマスク着用において、子どもは大人よりも周囲に合わせる傾向nbspー保険・年金フォーカスnbspEIOPAが年の監督上のコンバージェンス計画を公表nbsp米国生保市場で、個人生命保険オンライン販売の進展に寄与するインシュアテック企業nbspー経済・金融フラッシュnbspタイ経済年月期の成長率は前年同期比増観光業の回復続くも、輸出が急ブレーキnbsp米住宅着工・許可件数年月ー着工件数はヵ月連続の減少、市場予想も下回るnbsp貿易統計年月ー輸出の低迷が一段と鮮明にnbsp英国雇用関連統計年月ー賃金伸び率は相変わらず高いnbspNoなぜ、炎上は繰り返されるのかー迷惑動画投稿がされてしまう構造を考えるnbspNo年度の年金額の見通しは、歳までは増、歳からは増だが、実質的には目減りー年金額改定の仕組み・見通し・注目ポイントnbspNo韓国の出生率がまで低下ーOECD加盟国の中でを下回るのは韓国が唯一nbspNoなぜ韓国では不動産価格が暴落しているだろうか身nbspNo行きたくなるオフィスとは何かーフルパッケージ型オフィスのすすめnbspNo年度の年金額確定値は、歳までは増、歳からは増だが、実質的には目減りー年金額改定の仕組み・確定値・注目ポイントnbspNo米国株式に集中それとも分散投資nbspNoなぜ日本の賃金は大きく上がらなかっただろうかー名目賃金の増加にもかかわらず、物価上昇により実質賃金は低下ーnbspNoオフィス市場の調整は小休止。 2023-02-20 18:00:01
ニュース BBC News - Home Nicola Bulley: Missing woman's partner says family in 'agony' after body found https://www.bbc.co.uk/news/uk-64701028?at_medium=RSS&at_campaign=KARANGA identification 2023-02-20 08:08:19
ニュース BBC News - Home Free school meals for all London primary pupils https://www.bbc.co.uk/news/uk-england-london-64677228?at_medium=RSS&at_campaign=KARANGA primary 2023-02-20 08:46:29
ビジネス 不景気.com ケア21が中国子会社2社を解散、中国から一旦撤退 - 不景気com https://www.fukeiki.com/2023/02/care21-liquidate-china.html 介護施設 2023-02-20 08:42:43
マーケティング MarkeZine ビービーメディア、ハイブランドのクリエイティブ制作に特化した会社「ランベントプロダクションズ」を設立 http://markezine.jp/article/detail/41420 制作 2023-02-20 17:30:00
IT 週刊アスキー Amazonプライム会員向けサービスPrime Gamingで『原神』のスペシャルコンテンツ「Wings of the Starlit Feast」を配信すると発表! https://weekly.ascii.jp/elem/000/004/125/4125641/ Amazonプライム会員向けサービスPrimeGamingで『原神』のスペシャルコンテンツ「WingsoftheStarlitFeast」を配信すると発表PrimeGamingは、『原神』のスペシャルコンテンツ配信キャンペーン第弾「WingsoftheStarlitFeast」を配信すると年月日に発表。 2023-02-20 17:50:00
IT 週刊アスキー NTT、6Gを見据えた100GHzの超広帯・超小型ベースバンド増幅器ICモジュールの実現に成功 https://weekly.ascii.jp/elem/000/004/125/4125659/ 高速 2023-02-20 17:50:00
IT 週刊アスキー Googleカレンダーのリマインダーが「ToDoリスト」に統合 https://weekly.ascii.jp/elem/000/004/125/4125656/ googlekeep 2023-02-20 17:30:00
IT 週刊アスキー 新たに手と足それぞれの専用モードを搭載 猫型マッサージャー「ルルド ハンド&フットケアコードレス リラニャー」3月4日発売 https://weekly.ascii.jp/elem/000/004/125/4125657/ 月日 2023-02-20 17:30:00
IT 週刊アスキー 富士通、NVIDIAのGPU採用で機能向上の5G仮想化基地局ソリューションを提供開始 https://weekly.ascii.jp/elem/000/004/125/4125660/ 提供開始 2023-02-20 17:30:00
IT 週刊アスキー 「#新宿地下ラーメン」、2月21日からは栃木県「YOKOKURA STOREHOUSE」が出店 https://weekly.ascii.jp/elem/000/004/125/4125646/ shinjukudelishpark 2023-02-20 17:20:00

コメント

このブログの人気の投稿

投稿時間:2021-06-17 05:05:34 RSSフィード2021-06-17 05:00 分まとめ(1274件)

投稿時間:2021-06-20 02:06:12 RSSフィード2021-06-20 02:00 分まとめ(3871件)

投稿時間:2020-12-01 09:41:49 RSSフィード2020-12-01 09:00 分まとめ(69件)