投稿時間:2022-06-03 17:25:14 RSSフィード2022-06-03 17:00 分まとめ(29件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
ROBOT ロボスタ スマートグラスを装着した店員を通じて自宅から買い物 凸版印刷が長野県飯綱町で実証実験 https://robotstart.info/2022/06/03/smart-glass-shopping-support.html スマートグラスを装着した店員を通じて自宅から買い物凸版印刷が長野県飯綱町で実証実験シェアツイートはてブ長野県飯綱町と凸版印刷株式会社は買い物や移動に課題を抱える住民に向け、スマートグラスを活用した買い物支援の実証実験を行うことを発表した。 2022-06-03 07:44:55
IT @IT 全フォーラム 最新記事一覧 ワシントン大学、オンラインデータ可視化ツールを改善するJavaScriptプラグインを開発 https://atmarkit.itmedia.co.jp/ait/articles/2206/03/news150.html javascript 2022-06-03 16:45:00
IT ITmedia 総合記事一覧 [ITmedia PC USER] アイ・オー、スマートなデザイン筐体を採用したWi-Fi 6無線LANルーター https://www.itmedia.co.jp/pcuser/articles/2206/03/news174.html itmediapcuser 2022-06-03 16:49:00
IT ITmedia 総合記事一覧 [ITmedia News] 「量子超越性」を持つ光量子コンピュータ、AWSで利用可能に スパコン富岳で9000年かかる計算を36マイクロ秒で https://www.itmedia.co.jp/news/articles/2206/03/news172.html amazonwebservicesaws 2022-06-03 16:47:00
IT ITmedia 総合記事一覧 [ITmedia News] バンダイ「紙製カプセル」をカプセル自販機に本格導入 https://www.itmedia.co.jp/news/articles/2206/03/news169.html itmedia 2022-06-03 16:38:00
IT ITmedia 総合記事一覧 [ITmedia PC USER] 周辺機器に付属のケーブルやポーチが低品質になる裏事情 原価はなんとゼロ円? https://www.itmedia.co.jp/pcuser/articles/2206/03/news113.html itmediapcuser 2022-06-03 16:30:00
AWS AWS - Japan 地域・中堅中小企業の挑戦者 -3社のDXの取り組みを紹介- https://www.youtube.com/watch?v=SO2_xQFmwvQ awssummit 2022-06-03 07:01:40
html @IT HTML5 + UXフォーラム 最新記事一覧 ワシントン大学、オンラインデータ可視化ツールを改善するJavaScriptプラグインを開発 https://atmarkit.itmedia.co.jp/ait/articles/2206/03/news150.html javascript 2022-06-03 16:45:00
Ruby Rubyタグが付けられた新着投稿 - Qiita RSpecでsessionメソッドを使えるようにするには? https://qiita.com/kome1996/items/ffc1eecef4948fb09c91 sessionforw 2022-06-03 16:17:10
GCP gcpタグが付けられた新着投稿 - Qiita Cloud SQLのバックアップと復元方法 https://qiita.com/ysmmb12/items/afb5b36aa407bbe81ec3 cloudsql 2022-06-03 16:49:42
Ruby Railsタグが付けられた新着投稿 - Qiita RSpecでsessionメソッドを使えるようにするには? https://qiita.com/kome1996/items/ffc1eecef4948fb09c91 sessionforw 2022-06-03 16:17:10
技術ブログ Developers.IO AWS Systems Manager Automation のクロスアカウントアクセスを試してみる https://dev.classmethod.jp/articles/ssm-automation-cross-account-access/ systemsmanagerautomation 2022-06-03 07:21:12
海外TECH DEV Community Part 2: Building the statistics micro frontend using React and Tailwind https://dev.to/entando/part-2-building-the-statistics-micro-frontend-using-react-and-tailwind-3pmp Part Building the statistics micro frontend using React and TailwindIn the previous part of this blog series we set up our React micro frontend made it ready for bundling and installed and set up Tailwind In this blog we will do the following Write code to create our stats component Build the React app Wrap our micro frontend inside a custom UI element If you re curious about it you can check out this documentation till the time the blog is Live Prepare our project directory for the Ent cli to bundle it Build Push and Deploy the bundle to the Entando Component Repository ECR Drag and drop the stats widget on a page We begin by navigating to our stats widget directory Here we ll write a few lines of code to build our stats widget We create a new file inside src and name it stats js Then add the following content export default function Stats return lt div class bg gray pt sm pt gt lt div class mt pb bg white sm pb gt lt div class relative gt lt div class absolute inset h bg gray gt lt div gt lt div class relative max w xl mx auto px sm px lg px gt lt div class max w xl mx auto gt lt dl class rounded lg bg white shadow lg sm grid sm grid cols gt lt div class flex flex col border b border gray p text center sm border sm border r gt lt dt class order mt text lg leading font medium text gray gt Original lt dt gt lt dd class order text xl font extrabold text green gt lt dd gt lt div gt lt div class flex flex col border t border b border gray p text center sm border sm border l sm border r gt lt dt class order mt text lg leading font medium text gray gt Service lt dt gt lt dd class order text xl font extrabold text green gt lt dd gt lt div gt lt div class flex flex col border t border gray p text center sm border sm border l gt lt dt class order mt text lg leading font medium text gray gt lt dt gt lt dd class order text xl font extrabold text green gt Users lt dd gt lt div gt lt dl gt lt div gt lt div gt lt div gt lt div gt lt div gt And in our app js file we replace the existing content with the following import Statistics from stats function App return lt div gt lt Statistics gt lt div gt export default App Now that we have created our application we need to wrap the entire React app into a custom element We do this by adding a new file src WidgetElement js with the following custom element import React from react import ReactDOM from react dom import App from App class WidgetElement extends HTMLElement connectedCallback this mountPoint document createElement div this appendChild this mountPoint ReactDOM render lt App gt this mountPoint customElements define stats widget WidgetElement export default WidgetElement Then open src index js and replace the entire file with these two lines import index css import WidgetElement Lastly we go to public index html and replace lt div id root gt lt div gt with the custom element lt stats widget gt lt body gt lt noscript gt You need to enable JavaScript to run this app lt noscript gt lt stats widget gt lt body gt Perfect Now we need to build our React app before we build the entire bundle Let s take a look at our Tailwind dashboard We build the app using this command npm run buildNow it s time we deploy this widget to our Entando Component Repository which is accessed from the dashboard of our Entando App Builder This requires a couple of steps First we need to set up the project directory We do this from our terminal by running the following commands from the root directory Prepare the bundle directory cp r bundle src bundle Here the descriptor yaml file gets copied to the bundle folder where all our static resources will be created when we build the bundle In a sense we are preparing the bundle folder Initialize the project ent prj initInitialize publication ent prj pbs initWe need to push our bundled code to an empty GitHub repository and link that here This repository should be named something like statistics bundle Now we publish the bundle to the Entando App Builder Build ent prj fe build a to just build the frontend including changes from bundle src Publish ent prj fe push publish just the frontend Deploy after connecting to ks above ent prj deployAt this point we are pushing everything to the Entando Component Repository That s all Congratulations You just built the stats micro frontend bundled it and deployed it Now it s time we compose the application from the Entando Component Repository First we login to our Entando App Builder Which takes us to our dashboard From there we click on “Repository on the bottom left side of the page We can see our statistics bundle here We click on install to install it Next we go to “Pages in the left sidebar and click on “Management to see a list of pages Here we can create a simple page by clicking on the three dots next to a folder We need to click on “Add to create a new page Make sure to fill all the sections with an asterisk just as I have done Take a look at this screenshot to follow along After this go to the bottom of this page to click on “Save and Design Under “Users we see a list of widgets on the right sidebar We drag and drop the “Sample Stats Dashboard Template to any part of our page frame and click “Publish Finally we click on “View Published Page Congratulations again You did it Let s wrap up here To summarize we learned how to use Tailwind CSS in a React App We created our app deployed it to the Entando Component Repository and used it on one of our pages Soon this will be the way developers build and work on applications Here is the bundle source code for your reference If you found this interesting don t forget to like this blog and share it with your network We are building a community that welcomes a composable approach to building applications You can join us on our Discord server to learn more about it Thank you 2022-06-03 07:39:36
海外TECH DEV Community RootMe: Complete CFT Writeup for Try Hack Me Beginners https://dev.to/christinecdev/rootme-complete-cft-writeup-for-try-hack-me-beginners-5en RootMe Complete CFT Writeup for Try Hack Me BeginnersLately I ve been feeling ready to do more CTF s on Try Hack Me Now previously when I did the Pickle Rick CTF I felt a little lost or a bit in over my head But once I put my mind to it and kept on persisting it turned out to be pretty easy and I promise you that the RootMe CTF is no different Today we will beat the RootMe CTF on Try Hack Me So grab a comfy neck pillow open up your terminal and let s get hacking Task Deploy the MachineConnect to TryHackMe network and deploy the machine If you don t know how to do this complete the OpenVPN room first Task ReconnaissanceScan the machine how many ports are open Open up your terminal and run the command nmap sV to find all the information needed for this task Ports and are open thus ports are open What version of Apache is running We can see that Apache httpd is running What service is running on port We can see that ssh is running on port tcp Find directories on the web server using the GoBuster tool Open up gobuster and run the command gobuster dir u w usr share wordlists dirbuster directory list medium txt t and all will be revealed I use the dirbuster wordlist because it is shorter but you can use the usual rockyou txt if you want What is the hidden directory Uploads is not for users to see since it shows our file directories but panel can be used by users to upload files Thus panel is the hidden directory Task Getting a shellFind a form to upload and get a reverse shell and find the flag Step One Setting up our reverse shell Let s first open up our IP Address in our browser We are met with a simple static page without any navigation links buttons etc From our gobuster results we know that we have two directories that are of importance our panel And our uploads On your Desktop make a new empty php file Call it anything like hello php it does not need to contain any code Try to upload it You will see that we get an error since the php extension is blocked due to site filtering and validation I recommend you have a look at WebSecAcademy s tutorial on this We will need to upload our php file in a different format like php png or phtml Our php file that we will upload will contain our reverse shell script You can download a common php reverse shell file from here Once downloaded copy the php reverse shell php file to your Desktop Before we continue I want you to open up your terminal again and run the ifconfig command Make note of the IP Address of your attacker machine because we will need it Open up your php reverse shell php file that you saved on your Desktop and scroll down to the section listing your ip and port You can enter any port you want that s not taken or leave it as Replace the IP address with the IP address you copied from your ifconfig result Go back into your terminal and start up a netcat scan by running netcat nlvp on the port number you provided in this case When we ve successfully run our reverse shell we will be able to see it here Now open up your terminal and cd into Desktop where we saved our php reverse shell php file We need to turn this file into an executable by running the chmod x php reverse shell php command Now to take care of that pesky php extension Let s convert it into a phtml file by running mv php reverse shell php php reverse shell phtml If you look for the file on your Desktop you will see that it is now called php reverse shell phtml Okay now we can go and upload this file on our panel directory Success Now when we head over to our uploads directory we can see that our file is there Click on it and head over to the terminal where your netcat scan is running We have successfully set up and executed our reverse shel Now we need to go ahead and access our user txt file Step Two Reading our user txt file In your terminal under your netcat scan let s run the ls command to see what we can find in our current directory Now you can go ahead and cd into each and every directory to try and find that user txt file but you ll be wasting your own time We can find it by simply running the command find type f name user txt We now know that the user txt file is in the var www user txt directory We can now cat into it and access it s contents Tada We ve found our flag Task Privilege escalationSearch for files with SUID permission which file is weird To search for files with SUID permission we can run the find type f user root perm gt dev null command We can see that the weird file is usr bin python read more on this at GTFObins Find a form to escalate your privileges If you have a look at the GTFObins link provided above you can see that we can exploit this SUID via the python c import os os execl bin sh sh p command When we run the id and whoami commands we will see that we now have root access We ve successfully escalated our privilege from normal user to root root txt To read what s in the root txt file we first need to cd into root to see what is under our root directory From here on we are clear Run cat root txt and you are done ConclusionAnd that s our RootMe CTF done Good job I hope this was simple enough to follow with and let me if you know of other methods tools that you used to complete this CTF See you next time Check out my GitHub for more 2022-06-03 07:09:17
海外TECH DEV Community AWS open source news and updates, #115 https://dev.to/aws/aws-open-source-news-and-updates-115-3a68 AWS open source news and updates June rd Instalment Welcome to regular and new readers alike to the AWS open source newsletter episode This week we have another great selection of brand new open source projects for you to explore including firec a Rust client library for interacting with Firecracker sfn cli a tool that helps you quickly build StepFunctions definitions ssm cloner a tool to help you replicate across AWS regions your AWS System Manager documents amazon lambda compute tuning an AWS Lambda function benchmarking tool aws iam root user activity monitor a sample project to help you keep track of your root user hpc cost simulator a tool to help estimate costs running your HPC workloads on AWS and many more We also have blog posts and longer form technical articles covering Kubernetes Amazon EMR SUSE Linux Dart AWS Amplify Amazon Genomics CLI OpenZFS AWS CDK Go TensorFlow Hugging Face Apache Cassandra Dicoogle MariaDB Spack Quarkus don t miss this one and more this week This weeks featured videos cover Apache Kylin and Blazor and I finish up events happening that you should watch out for AWS CDKThe AWS Cloud Development Kit AWS CDK version v for JavaScript TypeScript Java Python NET and Go is now in maintenance mode In this post Version of the AWS Cloud Development Kit AWS CDK is now in maintenance mode you find out more about what this means as well as learn resources on how you can begin your migration to v MariaDBIf you are looking to upgrade your MariaDB database from which is End of Life October then you should check out this post Upgrading from Amazon RDS for MariaDB version put together by Vijay Karumajji In it he covers the Amazon RDS for MariaDB end of life timeline your available upgrade choices and then shares some current good practices to follow during the upgrade process 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 Robert Oberhofer Hamzabouissi Bazmahou Forrest Sun Gena Gizzi Noor Fairoza Michael Raney Noah Gift Gary Stafford Oliver Perks Vijay Karumajji Daniel Leu Ben Smith and Lars Jacobsson Make sure you find and follow these builders and keep up to date with their open source projects and contributions 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 Toolsfirecfirec pronounced fyrek is an open source Rust client library to interact with Firecracker It allows you to create manipulate query and stop VMMs Very nice indeed sfn clisfn cli the latest open source project from the lovely folk at MatHem lets you quickly build StepFunctions definitions with a handy SDK integration lookup and snippet generation of all K API actions A bit like a dressed down Workflow Studio but at your fingertips Note that this is an early stage preview and some functionality will be missing A big thanks to AWS Community Builder Lars Jacobsson for sending this through ssm clonerssm cloner this repository is used to simplify the process of cloning the SSM documents across the AWS regions You can use this module and pass on the parameters and it will clone the documents for you You can also use it to unclone or create new version for your documents Sound super useful function stencilfunction stencil very nice tool from our own Ben Smith that is a quickstart AWS Lambda function code generator Downloads a template function code file test harness file sample SAM definition and appropriate file structure Check it out on npm too function stencil fissaafissaa is a CLI that Hamzabouissi Bazmahou created to help him simplify the deployment of applications to AWS ECS including things like setting up domain registration TLS Certification Load Balancing Rolling Back and budget monitoring I love it when there is a story or meaning behind a project name and in this case Fissaa is a Tunisian word that means speed up amazon braket strawberryfields plugin pythonamazon braket strawberryfields plugin python This plugin provides a BraketEngine class for running photonic quantum circuits created in Strawberry Fields on the Amazon Braket service The Amazon Braket Python SDK is an open source library that provides a framework to interact with quantum computing hardware devices and simulators through Amazon Braket Strawberry Fields is an open source library for writing and running programs for photonic quantum computers amazon lambda compute tuningamazon lambda compute tuning when trying to optimise your AWS Lambda functions many people use my colleague Alex Casalboni s project AWS Lambda Power Tuning This project takes a slightly different slant allowing you to try and benchmark the cost and performance differences against x and Arm and different memory options All you need to do is supply the arn s of your AWS Lambda functions in the AWS Amplify front end and away you go aws iam root user activity monitoraws iam root user activity monitor this project contains a sample of how you can monitor root user activity within your AWS accounts using Terraform This implementation is event driven and relies on Amazon EventBridge to communicate AWS IAM root user activity events from member accounts to a central EventBridge custom event bus deployed in a given account aws tf kmsaws tf kms this repo contains a set of Terraform modules and examples It provisions AWS KMS keys that are usable for the supported AWS services Optionally it supports managing key resource policy for cross account access by AWS services and principals An additional module is included that supports creating multi region replica keys in another region hpc cost simulatorhpc cost simulator This package contains scripts to parse scheduler logs and analyze them It analyzes scheduler accounting log files to simulate the cost of running the same jobs on AWS This tool can simulate the use of spot instances for short jobs and help guide the choice of savings plans by breaking the data to hourly consumption Initially supports LSF and Slurm Altair Accelerator support to be added soon Demos Samples and Workshopsdotnet nativeaot labsdotnet nativeaot labs this repo provides a place to learn about and experiment with NET NativeAOT on AWS At a high level NativeAOT for NET is a way to compile your NET projects directly to machine code eliminating the Intermediate Language and Just In Time compilation AOT stands for Ahead of Time as opposed to Just in Time According to this tweet from Norm Johanson We have been experimenting with NET s preview AOT support for improving Lambda cold start For some scenarios we are seeing big improvements aws vpc builder cdkaws vpc builder cdk this repo contains code that provide a simple and repeatable way to deploy and explore complex networking architectures on AWS as well as helping to showcase the capabilities of the AWS Cloud Development Kit CDK to create and orchestrate a complex architecture nodeblog appnodeblog app Daniel Leu has created this sample project that puts together a number of AWS services using AWS CDK to create a functional blogging app which you can use as a base for your own projects deploying unreal engine pixel streaming server on ecdeploying unreal engine pixel streaming server on ec this repo contains code and documentation that allows you to deploy Windows based Unreal Engine Pixel Streaming builds to EC You can check out this blog post Unreal Engine Pixel Streaming in AWS with Ubuntu OS where Gena Gizzi and Noor Fairoza show you how you can get this project running on Ubuntu This project looks fun to try out so its on my weekend to do list hands on rekognition streaming video eventsrekognition streaming video events this project detects objects people pets and packages in live video streams and returns the detected label s bounding box coordinates zoomed in images of the object s detected and timestamps localize content using aws ml serviceslocalize content using aws ml services This sample solution demonstrates how builders can use polly to generate audio different than the source audio generate subtitles from a text file generate speech marks and tie them all together AWS and Community blog postsRealmRealm database is an open source developer friendly project for mobile data storage distributed under the Apache license and backed by MongoDB Robert Oberhofer has put together this post Increase app responsiveness with MongoDB Realm mobile database and AWS Wavelength introduces MongoDB Realm and examines its core characteristics and key benefits While Realm is widely used for building mobile applications its capabilities are also relevant for other problem spaces including IoT and Edge QuarkusAnother cracking post from Gary Stafford this time showing you how go develop test build and then deploy Native Quarkus applications to Kubernetes on AWS using GitOps in his post Building and Deploying Cloud Native Quarkus Applications to Kubernetes This post covers more than Quarkus and is essential reading for anyone looking to understand more about your options cloud native and Java It is a long read so grab your favourite beverage and enjoy SpackSpack is a multi platform package manager that builds and installs multiple versions and configurations of software It works on Linux macOS and many supercomputers In the post Introducing the Spack Rolling Binary Cache hosted on AWS Oliver Perks shares the announcement of a new public Spack Binary Cache hosted on AWS Spack users now have access to a public build cache hosted on Amazon Simple Storage Service Amazon S The use of this Binary Cache will result in up to x faster install times for common Spack packages Read this post to find out more including how this works with other open source tools such as AWS ParallelCluster DicoogleDicoogle is an open source project that provides the functionality of a PACS picture archiving and communication system A PACS stores and indexes DICOM medical image files and uses the DICOM protocol to facilitate the upload download and search of DICOM studies DICOM is a data model organised in the sequence Patient Study Series Instance A patient has one or more studies which may also be known as exams or procedures In this post Running Dicoogle an open source PACS solution on AWS part Forrest Sun provides the first part of a two part series that describes how to host a secure DICOM server on AWS hands on Apache CassandraLightweight transactions LWT is an Apache Cassandra API feature that allows developers to perform conditional update operations against their table data Conditional update operations are useful when inserting updating and deleting records based on conditions that evaluate the current state Michael Raney has written Improved performance for lightweight transactions with Amazon Keyspaces where he shares details about the improved performance characteristics of Amazon Keyspaces LWT API lightweight transactions advanced design patterns and operational best practices Other posts you might like from the past weekMaking your Go workloads up to faster with Go and AWS Graviton shows how moving to the latest Go version can make a difference in performance when using Arm based AWS Graviton instance typesRun text classification with Amazon SageMaker JumpStart using TensorFlow Hub and Hugging Face models provides a step by step walkthrough on how to fine tune and deploy a text classification model using trained models from TensorFlow Hub hands on Amazon EMR Serverless Now Generally Available Run Big Data Applications without Managing Servers walks you through the GA announcement of Amazon EMR Serverless a serverless deployment option for customers to run big data analytics applications using open source frameworks like Apache Spark and Hive without configuring managing and scaling clusters or serversCustomizing scheduling on Amazon EKS demonstrates a proof of concept that makes it easy for you to customise the way Kubernetes schedules your workloads hands on Updated Create CloudEvents from AWS EventBridge and into Direktiv an update from a post I shared in an earlier newsletter this post shows how you can use this open source technology to convert the AWS EventBridge events into a standard CloudEvents Case studiesMobileye s journey towards scaling Amazon EKS to thousands of nodes reviews how Mobileye s AI Engineering Group seamlessly runs their workflows on Amazon Elastic Kubernetes Service Amazon EKS supporting around workflows daily Quick updatesAWS AmplifyEarlier this week was the announcement of the general availability of Geofences for Amplify Geo Amplify Geo enables frontend developers to add location aware features to their web applications Developers looking to display geometric boundaries or Geofences on a map can now implement a complete Geofence management solution in minutes using the cloud connected UI widget and APIs from Amplify Geo powered by Amazon Location Service Geofences are geometric boundaries that can be drawn around places of interest or areas on a map With this release developers can add an interactive Geofence management UI widget to view create and edit Geofences on a map This UI widget is built on top of the popular MapLibre open source library and developers can choose from the wide array of community contributed plugins to further customise their Geofence UI components Amplify Geo also provides developers with client APIs powered by Amazon Location Service to manage Geofences programmatically from their frontend web application Developers can use the guided workflow in the Amplify Command Line Interface CLI to provision all the necessary cloud resources to create Geofences or they can use existing Geofence resources SUSE LinuxAnnounced earlier in the week were price reductions for Amazon EC instances running SLES When you run SLES on Amazon EC you are charged one combined price for the Amazon EC infrastructure and the SUSE OS Read more about the details in the post Price reductions on Amazon EC instances running SUSE Linux Enterprise Server SLES OSDartThe new Dart Signature V client allows developers to securely integrate with all AWS services using signed HTTP requests This functionality enables Dart developers to make native calls to AWS backends in their Flutter or Dart applications to make changes to the data or configurations of AWS services Developers can add the Signature V client as a dependency to their Flutter or dart application and use it to interact with AWS services For example using the Dart Signature V client a developer can interact with the Amazon Simple Storage Service Amazon S using signed HTTP requests to create a new S Bucket Developers can then choose to upload files to their S buckets and also manage the read write permissions for the files within these buckets OpenZFSYou can now update the storage and IOPS capacity on your Amazon FSx for OpenZFS file systems with the click of the button making it even easier to adapt to your evolving storage and performance needs Amazon FSx for OpenZFS provides fully managed cost effective shared file storage powered by the popular OpenZFS file system When you create an FSx for OpenZFS file system you can specify its storage capacity its throughput capacity and it s disk IOPS capacity Until today FSx for OpenZFS only supported updating the throughput capacity of an active file system Now you can also increase the storage capacity or change the disk IOPS capacity on your file system in seconds without disrupting your end users or applications With this capability you can now dynamically update all of the primary aspects of your FSx for OpenZFS file system configuration Amazon Genomics CLI v The Amazon Genomics CLI simplifies and automates the deployment of cloud resources like workflow engines and compute clusters providing genomics and life science customers with an easy to use command line to quickly setup and run genomics workflows on Amazon Web Services AWS Amazon Genomics CLI v has added support for workflows written in the Common Workflow Language CWL using the Toil workflow engine In addition to CWL the Amazon Genomics CLI supports workflows written with Workflow Definition Language WDL Nextflow and Snakemake enabling customers to run a wide variety of genomics data analyses like joint calling of genome variants and single cell RNAseq Read the full release update in Amazon Genomics CLI v adds support for the Common Workflow Language CWL with Toil Videos of the weekApache KylinApache Kylinis an open source distributed Analytical Data Warehouse for Big Data In this video you will learn how you can deploy this open source project into AWS and then explores some sample data sets COVID and New York Taxi NET BlazorBlazor is a free and open source web framework that enables developers to create web apps using C and HTML In this video Noah Gift shares with you how to deploy these apps using Amazon ECS Events for your diaryOSPOs In Action Ways On How Organizations Drive Open Source InnovationJun am PDTFrom the registration page What does it take to establish an Open Source Program Office OSPO This expert led webinar provides a wealth of insight on the leadership and tools necessary to help implement an OSPO or an open source initiative within your organisations Whether you re from enterprise academia non profit or the public sector you ll come away with an understanding of OSPO opportunities which drive differentiation and risk mitigation You ll hear from leaders from VMware Bloomberg Comcast and Porsche to better understand the value of the OSPO and where to get started Find out more and sign up for the webinar here Machine Learning at scale using Kubeflow with Amazon EKS and Amazon EFSJune th am PTMy colleague Suman Debnath Principal Developer Advocate at AWS will discuss how to use the open source machine learning toolkit Kubeflow Suman will demonstrate how to deploy Kubernetes cluster utilising Amazon Elastic Kubernetes Service EKS and Amazon Elastic File System EFS as persistent storage in the backend which will be utilised for staging the dataset for training hosting jupyter notebooks and running the machine learning model Find out more and register Machine Learning at scale using Kubeflow with Amazon EKS and Amazon EFSObservability Open Source SolutionsJune th am pm PDTThe AWS Monitoring and Observability Team invites you to participate in a hands on session with Amazon Managed Service for Prometheus Amazon Managed Service for Grafana and AWS Distro for Open Telemetry During this session you will use these services in creating workspaces ingesting querying metrics logs and trace data and viewing in a dashboard you will set up The afternoon will close with demo of what you have done and highlighting the value in MTTD MTTI MTTR and application performance This event is designed for those looking to implement AWS Observability using open source services to visualize their data with native or rd party tools Site reliability engineers operations engineers systems engineers and DevOps Familiarity with monitoring concepts such as logs metrics traces alarms and the dashboard is recommended but not required Register via this page BOSC July Madison Wisconsin USAThe Bioinformatics Open Source Conference BOSC has been held annually since and this year AWS is proud to be a platinum sponsor for this event BOSC covers all aspects of open source bioinformatics software and open science including but not limited to these topics Open Science and Reproducible Research Open Biomedical Data Citizen Participatory Science Standards and Interoperability Data Science Workflows Open Approaches to Translational Bioinformatics Developer Tools and Libraries Inclusion and Outreach and Training This is a hybrid event in person virtual and you find out more by checking out the event page BOSC 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 MeetingOpenSearchCon Sept st SeattleCome to the first annual OpenSearchCon This day long conference will be packed with presenters who build and innovate with OpenSearch It doesn t matter if you re just getting started on your OpenSearch journey running giant clusters or contributing tons of code the event is for everyone Join us to celebrate the progress and look into the future of the project Admission is free and registration will be open in the next few weeks All you will need to do is sign up and get to Seattle Check out the full details including signing up and location at the meetup page here Stay in touch with open source at AWSI hope this summary has been useful Remember to check out the Open Source homepage to keep up to date with all our activity in open source by following us on AWSOpen 2022-06-03 07:08:14
金融 JPX マーケットニュース [東証]監理銘柄(確認中)の指定:東洋刃物(株) https://www.jpx.co.jp/news/1023/20220603-11.html 東洋刃物 2022-06-03 16:10:00
海外ニュース Japan Times latest articles Japan allows visits by extended family, fiances and common-law partners https://www.japantimes.co.jp/news/2022/06/03/national/family-member-visits-allowed/ Japan allows visits by extended family fiances and common law partnersThose in a relationship with a resident of Japan equivalent to a relative such as a fiance will be required to provide proof of their 2022-06-03 16:05:30
ニュース BBC News - Home Investigation as man dies after Norfolk Police A47 chase https://www.bbc.co.uk/news/uk-england-norfolk-61668917?at_medium=RSS&at_campaign=KARANGA norfolk 2022-06-03 07:32:50
ニュース BBC News - Home Lyon want to re-sign Lacazette - Friday's football gossip https://www.bbc.co.uk/sport/61675587?at_medium=RSS&at_campaign=KARANGA Lyon want to re sign Lacazette Friday x s football gossipLyon want to re sign Arsenal s Lacazette Man Utd offered Asensio Barcelona have Lukaku as an option Roma could move for Lingard plus more 2022-06-03 07:11:09
ビジネス ダイヤモンド・オンライン - 新着記事 神社本庁トップが失脚か、2人が新総長を自認で「南北朝時代」突入を危惧する声 - 瓦解する神社 https://diamond.jp/articles/-/304305 前代未聞 2022-06-03 16:25:00
ビジネス ダイヤモンド・オンライン - 新着記事 飲食店支払いは要チェック 物価高で手数料追加 - WSJ発 https://diamond.jp/articles/-/304308 飲食店 2022-06-03 16:23:00
北海道 北海道新聞 かんぽの宿は「亀の井ホテル」に 7月1日から変更 https://www.hokkaido-np.co.jp/article/689172/ 亀の井ホテル 2022-06-03 16:21:00
北海道 北海道新聞 北海道内1038人感染 2人死亡 新型コロナ https://www.hokkaido-np.co.jp/article/689154/ 北海道内 2022-06-03 16:16:02
北海道 北海道新聞 JR北海道の線区赤字790億円 22年3月期 道新幹線は過去最悪 https://www.hokkaido-np.co.jp/article/689169/ 過去最悪 2022-06-03 16:12:00
北海道 北海道新聞 維新岬氏、不起訴処分 経歴虚偽疑い、名古屋地検 https://www.hokkaido-np.co.jp/article/689168/ 不起訴処分 2022-06-03 16:06:00
北海道 北海道新聞 道南59人感染、函館は39人 新型コロナ https://www.hokkaido-np.co.jp/article/689167/ 道南 2022-06-03 16:01:00
IT 週刊アスキー Spigen、Xperia 1 IV専用のスマホケース「ラギッド・アーマー」と「ウルトラ・ハイブリッド」を発売 https://weekly.ascii.jp/elem/000/004/093/4093622/ spigen 2022-06-03 16:30:00
IT 週刊アスキー 自慢のバイク写真で応募しよう! 「YOKOHAMAバイクフォトコンテスト」7月20日まで https://weekly.ascii.jp/elem/000/004/093/4093625/ 事故防止 2022-06-03 16:30:00
IT 週刊アスキー ラーメン1杯無料券がもらえる! 魁力屋で6月4日、5日限定キャンペーン https://weekly.ascii.jp/elem/000/004/093/4093586/ 醤油ラーメン 2022-06-03 16: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件)