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

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
AWS AWS Management Tools Blog A sneak peek at the Governance, Risk, and Compliance (GRC) sessions for re:Inforce 2023 https://aws.amazon.com/blogs/mt/a-sneak-peek-at-the-governance-risk-and-compliance-grc-sessions-for-reinforce-2023/ A sneak peek at the Governance Risk and Compliance GRC sessions for re Inforce A full conference pass is Register today with the code secureoff to receive a limited time discount while supplies last AWS re Inforce is just around the corner and this post covers sessions on cloud governance risk management and compliance that you should add to your agenda AWS re Inforce is a security learning conference … 2023-05-22 16:49:25
AWS AWS Media Blog European League of Football readies cloud-powered remote production infrastructure for 2023 season in under three weeks with AWS https://aws.amazon.com/blogs/media/european-league-of-football-readies-cloud-powered-remote-production-infrastructure-for-2023-season-in-under-three-weeks-with-aws/ European League of Football readies cloud powered remote production infrastructure for season in under three weeks with AWSAs European League of Football ELF continues to expand its footprint onboarding several new teams in the last year more fans want to tune into live matches via the official ELF homepage stream as well as popular European TV networks such as ProSieben ran de More Than Sports TV and more To accommodate an increasing volume … 2023-05-22 16:02:01
python Pythonタグが付けられた新着投稿 - Qiita Pythonで効率のよいデータクラス比較 https://qiita.com/Octpascal/items/4eb85714a36c70864e6b 都道府県 2023-05-23 01:37:17
AWS AWSタグが付けられた新着投稿 - Qiita [AWS Q&A 365][SES]AWSのよくある問題の毎日5選 #63 https://qiita.com/shinonome_taku/items/662293089a002d1a7025 aamazonses 2023-05-23 01:01:46
AWS AWSタグが付けられた新着投稿 - Qiita [AWS Q&A 365][SES]Daily Five Common Questions #63 https://qiita.com/shinonome_taku/items/09b841a90900c0ecc603 amazon 2023-05-23 01:00:32
golang Goタグが付けられた新着投稿 - Qiita Golangで簡単なCRUD操作を行うREST APIを作ってみた(todo アプリ) https://qiita.com/Ixy_194/items/7f320a9550ea28679aff gogingormmysql 2023-05-23 01:44:59
技術ブログ Developers.IO [VMware Cloud on AWS] 仮想マシンからEFSへの転送速度を計測してみた https://dev.classmethod.jp/articles/vmware-cloud-on-aws-transfer-efs/ 仮想マシン 2023-05-22 16:28:17
技術ブログ Developers.IO 【現地レポート】Alteryx Inspire 2023の会場での朝食の様子をお届け – Alteryx Inspire 2023 #alteryx23 https://dev.classmethod.jp/articles/alteryx-inspire-2023-meals/ alteryxinspire 2023-05-22 16:15:01
海外TECH DEV Community Quickly learn how new-to-you code works using sequence diagrams https://dev.to/appmap/quickly-learn-how-new-to-you-code-works-using-sequence-diagrams-h9g Quickly learn how new to you code works using sequence diagramsYou may have heard about or experienced the value of sequence diagrams In this article I ll introduce sequence diagrams and describe what they are good for I ll also give you a tour through the features of sequence diagrams and explain how to use each feature to interpret the behavior of your code Then I ll show how AppMap makes sequence diagrams even better by a generating diagrams from your running code and b making diagrams fully interactive What is a sequence diagram Sequence diagrams are a type of Unified Modeling Language UML diagram that shows the interactions between different components or objects in a system over time They show the flow of messages and the order in which these messages are exchanged They are great for understanding how code works because they show enough detail to communicate the key elements of code behavior while being compact enough to fit a lot of information onto a single page Uses of sequence diagramsSequence diagrams are particularly useful for designing and testing software systems that involve multiple components asynchronous events or complex control flows Here are some common use cases for sequence diagrams Understanding system behavior Sequence diagrams can help you understand how different parts of a system interact with each other and how the system behaves in response to different inputs Designing new systems Sequence diagrams can be used as a tool to design new systems by helping to identify the components needed and how they should interact Communication Sequence diagrams can be used as a visual aid to communicate system behavior and design to stakeholders such as developers project managers and clients Documentation Sequence diagrams can be used to document the design and behavior of a system providing a clear and concise description of how the system works How to interpret a sequence diagramLet s talk about the basic features of a sequence diagram These features are present in any sequence diagram we ll look at interactive AppMap capabilities in a later section Lifeline A vertical line that represents an object or component in the system The lifeline shows the lifetime of the object component and its existence over time Object header The rectangular box attached to the top of the lifeline that contains the name of the component package class etc that the lifeline represents Activation bar A horizontal line that represents the duration of time when an object is performing an action or processing a message It is shown as a solid line on top of the lifeline Message A horizontal arrow that represents the communication between objects or components It is shown as a line with an arrowhead pointing from the sender to the receiver Messages can be synchronous asynchronous or self referential Return message A horizontal arrow with a dashed line that represents the return message from the receiver to the sender Self message A message that is sent by an object to itself Combined fragment A diagram fragment representing a specific flow of control It is shown as a box with a label that indicates the condition under which it is executed Here s what this particular sequence diagram can tell us about the code that it models The first message begins from outside of the diagram indicating that it originates from a source external to the system being diagrammed In the case of this diagram the external source is whatever entity made the POST request The next message is the function call to process action in the actionpack package which then “activates the actionpack lifeline as can be seen from the lifeline changing from a dashed line to a rectangular box which is the activation bar This means that the package is now “active in the system Next as part of the process action message we see a loop with two calls to the write function in the activesupport package The loop is depicted as a combined fragment as depicted by the grey box labeled “loop Within this loop box we see our first example of a return message which is the dashed arrow with integer above it indicating the return type This indicates that the write function executes and returns before we proceed to the next function call If we skip a couple of function calls to update we see an example of a self message where the actionpack package makes a call from one part of itself to another which is depicted by a message arrow originating from the actionpack lifeline and then returning to the same lifeline You can see that this increases the width of the activation bar temporarily There are more function calls after these but that covers the basics Making sequence diagrams interactiveAs useful as sequence diagrams are there can be made even better AppMap is a tool that adds two great features to sequence diagrams automatic diagram generation and interactivity Let s get right into an example Here s a sequence diagram that was generated by running a test case for a Twitter like application The name of the AppMap is Following should unfollow a user with Ajax ️Click here to open a live diagram ️When you click on this diagram you ll see immediately that the diagram is “alive You can expand collapse refine and drill down for detailed trace information How to interact with AppMap sequence diagramsHere are several tips for getting the most out of AppMap sequence diagrams Show event parameters return values and a link to source code If you click on the name of the message arrow then that event will be selected and you can see more information about it in the sidebar Hide a lifeline If you click on the small x icon in the top right corner of an Object header then you will hide that lifeline This can be useful if the sequence diagram is too large and contains code that is not useful for the task at hand For example you might suspect that there s a bug in the code and you have a hypothesis that the logger package is not relevant In that case you can hide the logger lifeline to make it easier to find the relevant information in the diagram Collapse a section of the sequence diagram You can click on the button on a message arrow next to the function name and it will collapse that section of the diagram This is useful in a similar way that hiding a lifeline is useful Sometimes there is extraneous information in a diagram that is not relevant to your current task Temporarily hiding that information is a great way to quickly find what you re looking for Expand a package into classes If an object header is a package and it contains two or more classes then you can click on the icon in the top left corner of the object header and expand the package This lets you get a more detailed view of the interactions between objects in the system and can help you better understand the code The power of interactive sequence diagramsSequence diagrams are a valuable tool in software engineering for modeling and visualizing complex interactions between objects in a system Interactive sequence diagrams take it to the next level enabling you to Select specific events for more details Expand and collapse object headers Hide lifelines to remove clutter and focus on the most relevant information Collapse sections to focus on the high level information How have sequence diagrams helped or hurt you Have you used sequence diagrams on a project Please share your personal experience by adding a Comment Links️Download AppMap for VSCode and JetBrains Star AppMap on GitHub Follow on Twitter Join AppMap Slack ️Read the AppMap docs AcknowledgementsThanks to Adam Trotta for the first draft of this post as well as for the images 2023-05-22 16:27:10
海外TECH DEV Community Introducing QRInked - Create and Manage QR Codes https://dev.to/dhairyashah/introducing-qrinked-create-and-manage-qr-codes-2hlg Introducing QRInked Create and Manage QR Codes What I builtI created a web based application called QRInked that allows users to create and manage QR codes Category Submission The best category matches my project is Wacky Wildcards App LinkHere s link to my submission Screenshots DescriptionQRInked is a simple and easy to use tool that helps you create and manage QR codes With QRInked you can create QR codes for any links images and many more QRInked allows you to create following types of QRs for you and your business WebsiteWIFICallSMSYouTubeInstagramWhatsappand many more coming Created QR codes can be saved online and can be accessed from any device All QRs are synced on the cloud Currently QR codes can be downloaded in two formats JPG and PNG It is fun to create QR codes here why not give it a try Link to Source CodeSource Code link to GitHub Permissive LicenseThis project is under MIT License Background What made you decide to build this particular app What inspired you With the rapid growth of online startups and businesses an effective approach to capturing users attention is through the utilization of QR codes By simply capturing an image of a QR code users can be directed to the desired destination This inspired me to conceive an online application that enables the creation and management of QR codes facilitating businesses in running successful marketing campaigns and attracting users Hence introducing QRInked the solution to this challenge How I built it How did you utilize GitHub Actions or GitHub Codespaces Did you learn something new along the way Pick up a new skill QRInked was developed by leveraging Next js in conjunction with GitHub Codespaces and GitHub Actions Here s my tech stack Next jsSupabaseTailwind CSSGitHubFigmashadcn uiThe utilization of GitHub Codespaces enabled me to efficiently and effortlessly create my project by providing a virtual development environment Additionally GitHub Actions played a crucial role in automating various tasks for me Additional Resources InfoWe welcome any suggestions or updates you may have for QRInked Please feel free to contribute as it is an entirely open source project 2023-05-22 16:22:41
海外TECH DEV Community 🌈 A One Person Startup Tech Stack - Next.js, Django, Kubernetes, and GCP 🚀 https://dev.to/chetanam/a-one-person-startup-tech-stack-nextjs-django-kubernetes-and-gcp-k62 A One Person Startup Tech Stack Next js Django Kubernetes and GCP IntroductionIn this article I will share the tech stack I used to build my startup Omkar My startup consists of several components including Frontend Backend Blog By learning about my tech stack you can gain insights that will assist you in selecting the tech stack for your startup My Application Omkar CloudMy Application Omkar Cloud is a full stack website with a Blog developed using technologies like Django Next js and KubernetesIt is a People Search Engine that you can use for example to find people working in a company or CEOs of companies in an industry Think of it as an advanced version of LinkedIn Search Tech Stack of Omkar CloudThe Most Important Technologies in my Tech Stack are Kubernetes GCP Elastic UI Next js GitHub Actions and Django Here is a breakdown of my Tech Stack Frontend For the Frontend I have used Elastic UI React and Next jsElastic UII have used many Component Libraries in the past such as Bootstrap and Material UI However based on my experience I have found the Component Library of Elastic UI to be particularly impressive Elastic UI is really beautiful Component Library Therefore I have chosen Elastic UI as my UI frameworkReactAlso I had learnt two frameworks to create websites which are Svelte and React I wanted to use Svelte as it is much more concise than React However since the Elastic UI Library was not available for Svelte I had no choice but to choose React as the only option available to me Next jsNext js is a framework built on top of React I think of Next js as a framework for a framework Next js simplifies the usage of React and provides additional features Therefore instead of using the bare create react app setup I opted to use Next js as it makes working with React much easier BackendFor the Backend I used Django powered by SQLite DatabaseDjangoI have learned various backend frameworks such as Express js and Nest js but Django stood out as my favorite When working with Django I found that I could accomplish tasks with significantly fewer lines of code compared to Nest js or Express js Django s conciseness is similar to Sanskrit Language in Sanskrit you can convey your thoughts in very fewer words compared to English or Hindi Language Hence I chose Django for its conciseness and simplicity SQLiteFor the database I had the option of using either SQLite or PostgreSQL I opted for SQLite due to several reasons Most Importantly for me as an Indian is that it is SQLite is cheaper than PostgreSQL since in SQLite there is no need to purchase a separate server It allows developers to start developing faster since PostgreSQL requires spinning up a server whereas SQLite is file basedIt is easier to view table contents using SQLite Browser application in SQLite compared to PostgreSQLAlthough it can be argued that PostgreSQL is more Scalable but for a Start Up SQLite does the Job Perfectly Also in future you can always migrate to PostgreSQL if necessary BlogTo create the blog for my website I utilized the tailwind nextjs starter blog developed by Timothy Lin It is a beautiful blogging platform built on Next js DeploymentFor deployment I used Kubernetes GitHub Actions and Google Cloud Platform GCP KubernetesI wanted to host the frontend backend and blog on a single domain namely www omkar cloud at different paths Additionally I needed to store the SQLite database file in storage Kubernetes provided a convenient method for orchestrating these needs So I used Kubernetes GitHub ActionsTo automate the deployment process I utilized GitHub Actions With this setup I could easily deploy a new version of my application by simply pushing the code to the master branch GCPI chose GCP as the platform to run my entire Kubernetes stack Google products have a reputation for quality and GCP proved to be reliable and suitable for my needs It costs me INR or per month to run my full Stack Other ToolsGoogle Analytics I used Google Analytics to track my website as It was the analytics software I was most familiar with G SuiteFor creating a professional email address like info omkar cloud I utilized G Suite I opted for G Suite due to my familiarity with the Gmail interface and my resistance to change Google Search Console I utilized Google Search Console to monitor the search ranking of my website omkar cloud on Google NameCheapI used NameCheap for buying domain name of omkar cloud I was satisfied with Name Cheap s services Final ThoughtsIn short I used the following technologies in my tech stack for omkar cloud Frontend Elastic UIReactNext jsBackend DjangoSQLiteBlog tailwind nextjs starter blogDeployment KubernetesGitHub ActionsGoogle Cloud Platform GCP Other Tools Google AnalyticsG SuiteGoogle Search ConsoleNameCheapOverall I am very satisfied with the tech stack of omkar cloud If you are creating a startup and considering the tech stack to use based on my experience I can confidently say that if you base your tech stack on mine you will have a solid technological foundation for your startup I am curious to hear if you have any questions regarding the tech stack so please feel free to ask in the comments Dhanyawad 2023-05-22 16:17:30
Apple AppleInsider - Frontpage News WhatsApp adds iMessage-like editing with a 15 minute window https://appleinsider.com/articles/23/05/22/whatsapp-adds-imessage-like-editing-with-a-15-minute-window?utm_medium=rss WhatsApp adds iMessage like editing with a minute windowWhatsApp is one of the most popular messaging apps on the planet To help keep it that way the app has to keep adding new features and the latest is the ability to edit a message within minutes of sending WhatsApp supports editing sent messagesOn Monday the company officially announced a brand new way to fix your mistakes even after you send a message Technically beginning its rollout today WhatsApp now supports editing messages even after they ve been sent Read more 2023-05-22 17:00:06
Apple AppleInsider - Frontpage News How to customize Sidebar in the macOS Finder https://appleinsider.com/inside/macos/tips/how-to-customize-sidebar-in-the-macos-finder?utm_medium=rss How to customize Sidebar in the macOS FinderThe macOS Finder lets you customize window sidebars to provide quick access to files and volumes on your Mac Here s how to personalize it to your needs Finder settingsIn macOS Finder windows there s a wide range of customizations you can make to window sidebars to get them to display the elements you want Read more 2023-05-22 16:39:24
海外TECH Engadget You can now use Amazon’s palm-reading tech to buy alcohol https://www.engadget.com/you-can-now-use-amazons-palm-reading-tech-to-buy-alcohol-163029654.html?src=rss You can now use Amazon s palm reading tech to buy alcoholAmazon s palm payment technology is moving from the world of convenience food to a booze soaked baseball field The company just announced that the Amazon One identification system is being implemented at Denver s Coors Field home of the Colorado Rockies Major League Baseball franchise allowing customers to buy beer and hard alcohol with their palms This lets you stroll right into the field s SandLot Brewery or Coors Light Silver Bullet Bar and order up some of the good stuff without having to waste precious moments digging through your pockets to find that dang ID Over the course of an entire game this could save to seconds depending on how thirsty you are Of course you have to be enrolled in the company s biometric Amazon One service The web giant s setting up kiosks at the field for quick signups but you need your ID your Amazon sign in information and you have to take a selfie Once enrolled however just hover your palm over the reader and the bartender will know you are above and ready to gulp The system isn t just for age verification as it also lets you pay with your palm It s not the easiest task in the world to grab a beer at a major sporting event so this could be a useful bit of tech if you re willing to give Amazon even more access to your private life The company hasn t been the most reliable collector of biometrics facing lawsuits in multiple states for violating biometric privacy laws If you still want to give this a try and are nowhere near Colorado Amazon One palm scanning technology is also available at many Amazon owned Whole Foods locations This article originally appeared on Engadget at 2023-05-22 16:30:29
海外TECH Engadget Meta’s open-source speech AI recognizes over 4,000 spoken languages https://www.engadget.com/metas-open-source-speech-ai-recognizes-over-4000-spoken-languages-161508200.html?src=rss Meta s open source speech AI recognizes over spoken languagesMeta has created an AI language model that in a refreshing change of pace isn t a ChatGPT clone The company s Massively Multilingual Speech MMS project can recognize over spoken languages and produce speech text to speech in over Like most of its other publicly announced AI projects Meta is open sourcing MMS today to help preserve language diversity and encourage researchers to build on its foundation “Today we are publicly sharing our models and code so that others in the research community can build upon our work the company wrote “Through this work we hope to make a small contribution to preserve the incredible language diversity of the world Speech recognition and text to speech models typically require training on thousands of hours of audio with accompanying transcription labels Labels are crucial to machine learning allowing the algorithms to correctly categorize and “understand the data But for languages that aren t widely used in industrialized nations ー nbsp many of which are in danger of disappearing in the coming decades ー nbsp “this data simply does not exist as Meta puts it Meta used an unconventional approach to collecting audio data tapping into audio recordings of translated religious texts “We turned to religious texts such as the Bible that have been translated in many different languages and whose translations have been widely studied for text based language translation research the company said “These translations have publicly available audio recordings of people reading these texts in different languages Incorporating the unlabeled recordings of the Bible and similar texts Meta s researchers increased the model s available languages to over If you re like me that approach may raise your eyebrows at first glance as it sounds like a recipe for an AI model heavily biased toward Christian worldviews But Meta says that isn t the case “While the content of the audio recordings is religious our analysis shows that this does not bias the model to produce more religious language Meta wrote “We believe this is because we use a connectionist temporal classification CTC approach which is far more constrained compared with large language models LLMs or sequence to sequence models for speech recognition Furthermore despite most of the religious recordings being read by male speakers that didn t introduce a male bias either ーperforming equally well in female and male voices After training an alignment model to make the data more usable Meta used wavvec the company s “self supervised speech representation learning model which can train on unlabeled data Combining unconventional data sources and a self supervised speech model led to impressive outcomes “Our results show that the Massively Multilingual Speech models perform well compared with existing models and cover times as many languages Specifically Meta compared MMS to OpenAI s Whisper and it exceeded expectations “We found that models trained on the Massively Multilingual Speech data achieve half the word error rate but Massively Multilingual Speech covers times more languages Meta cautions that its new models aren t perfect “For example there is some risk that the speech to text model may mistranscribe select words or phrases the company wrote “Depending on the output this could result in offensive and or inaccurate language We continue to believe that collaboration across the AI community is critical to the responsible development of AI technologies Now that Meta has released MMS for open source research it hopes it can reverse the trend of technology dwindling the world s languages to the or fewer most often supported by Big Tech It sees a world where assistive technology TTS and even VR AR tech allow everyone to speak and learn in their native tongues It said “We envision a world where technology has the opposite effect encouraging people to keep their languages alive since they can access information and use technology by speaking in their preferred language This article originally appeared on Engadget at 2023-05-22 16:15:08
Java Java Code Geeks What Is JavaScript Slice With Examples https://www.javacodegeeks.com/2023/05/what-is-javascript-slice-with-examples.html What Is JavaScript Slice With ExamplesThe slice method is a built in JavaScript method that allows you to extract a section of an array or a string It does not modify the original array or string but returns a new copy containing the selected elements The slice method takes one or two parameters start optional Specifies the index at which the 2023-05-22 16:08:00
Linux OMG! Ubuntu! DashBar is a Compact All-in-One Taskbar GNOME Extension https://www.omgubuntu.co.uk/2023/05/dashbar-gnome-extension DashBar is a Compact All in One Taskbar GNOME ExtensionIf you re looking to trick your GNOME Shell desktop out with a classy new taskbar extension that s low on system resources check out DashBar Admittedly GNOME Shell is not short of taskbar panel and dock extensions A wide range of alternatives are available from household names like Dash to Panel and Dash to Dock through to niche nuanced offerings like BaBar Lite and now DashBar DashBar has no preferences at all That s its USP it works how the way it works and if that way isn t for you use something else Lots of options are exciting but they add overhead This post DashBar is a Compact All in One Taskbar GNOME Extension is from OMG Ubuntu Do not reproduce elsewhere without permission 2023-05-22 16:04:47
海外科学 NYT > Science This Summer We’re Helping Scientists Track Birds. Join In. https://www.nytimes.com/explain/2023/05/18/science/birds-science efforts 2023-05-22 16:50:43
海外TECH WIRED Gravity Move Mini Massager Review: Warm and Portable https://www.wired.com/review/gravity-move-massager/ device 2023-05-22 16:08:46
金融 金融庁ホームページ 「デジタル・分散型金融への対応のあり方等についての研究会」(第10回)を開催します。 https://www.fsa.go.jp/news/r4/singi/20230522.html Detail Nothing 2023-05-22 17:00:00
ニュース BBC News - Home Madeleine McCann police to search reservoir in Portugal https://www.bbc.co.uk/news/uk-65673674?at_medium=RSS&at_campaign=KARANGA portugalpolice 2023-05-22 16:30:32
ニュース BBC News - Home Ukraine war: Saboteurs cross into Russia's Belgorod, governor says https://www.bbc.co.uk/news/world-europe-65674773?at_medium=RSS&at_campaign=KARANGA groups 2023-05-22 16:08:56
ニュース BBC News - Home I'm confident nothing untoward happened over speeding course, says Suella Braverman https://www.bbc.co.uk/news/uk-politics-65667714?at_medium=RSS&at_campaign=KARANGA I x m confident nothing untoward happened over speeding course says Suella BravermanThe home secretary refuses to confirm if she asked civil servants to arrange a one to one speeding awareness course 2023-05-22 16:05:06
ニュース BBC News - Home Ethiopia's Prince Alemayehu: Buckingham Palace rejects calls to return royal's body https://www.bbc.co.uk/news/world-africa-65588663?at_medium=RSS&at_campaign=KARANGA buckingham 2023-05-22 16:00:33
ニュース BBC News - Home 'Redress scheme' announced for child sexual abuse victims https://www.bbc.co.uk/news/uk-politics-65673572?at_medium=RSS&at_campaign=KARANGA personal 2023-05-22 16:27:47
ニュース BBC News - Home Mark Cavendish to retire at end of season https://www.bbc.co.uk/sport/cycling/65665546?at_medium=RSS&at_campaign=KARANGA france 2023-05-22 16:37:03
ビジネス ダイヤモンド・オンライン - 新着記事 中国のマイクロン製品禁止、韓国は微妙な立場に - WSJ発 https://diamond.jp/articles/-/323335 韓国 2023-05-23 01:13: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件)