投稿時間:2023-08-22 00:21:38 RSSフィード2023-08-22 00:00 分まとめ(24件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
IT InfoQ Java News Roundup: JDK 21 RC1, Apache Camel 4.0, Payara Platform, Apache Tomcat, Micronaut https://www.infoq.com/news/2023/08/java-news-roundup-aug14-2023/?utm_campaign=infoq_content&utm_source=infoq&utm_medium=feed&utm_term=global Java News Roundup JDK RC Apache Camel Payara Platform Apache Tomcat MicronautThis week s Java roundup for August th features news from OpenJDK JDK JDK Apache Camel Payara Platform and point and milestone releases of Spring Framework Spring Data Spring Modulith Apache Tomcat Micronaut Micrometer Metrics and Tracing Project Reactor Hibernate Search Infinispan JHipster React Native JBang Piranha Byte Buddy JobRunr Arquillian and Gradle By Michael Redlich 2023-08-21 14:05:00
python Pythonタグが付けられた新着投稿 - Qiita pygmtでカラーマップを新規作成したい場合 https://qiita.com/kushikushi/items/fe0f45d70b1ddb954af8 httpw 2023-08-21 23:46:13
python Pythonタグが付けられた新着投稿 - Qiita #0019 async/awaitの触り https://qiita.com/kkkkodama10/items/50f2af6e8ed35753da8d asincawait 2023-08-21 23:14:28
python Pythonタグが付けられた新着投稿 - Qiita 映画.comのレビューをスクレイピングする https://qiita.com/yuya2220/items/84b17cca7840be6d52d0 pythonwindowshomechrome 2023-08-21 23:06:50
js JavaScriptタグが付けられた新着投稿 - Qiita 「selectボックス+もっと見るボタン」で絞り込みロジックをJavaScriptでぱぱっと作ってみた https://qiita.com/misaki_soeda/items/8eab9448713f366b1d58 javascript 2023-08-21 23:43:37
AWS AWSタグが付けられた新着投稿 - Qiita Nest.jsアプリケーションをEC2インスタンス上で永続的に起動させる https://qiita.com/ryosuke-horie/items/bef5f0e7c29e72b0bbc7 rtnpmnameyourappnamerunst 2023-08-21 23:30:15
AWS AWSタグが付けられた新着投稿 - Qiita 【AWS CFn】スタックへの既存リソースのインポート を試す https://qiita.com/nijigen_plot/items/047ff55cf217d40ed73f awscfn 2023-08-21 23:16:57
Git Gitタグが付けられた新着投稿 - Qiita 【Git】fast-forwardについて https://qiita.com/keisuke_sakuma/items/2584f975516519d04225 commit 2023-08-21 23:07:32
海外TECH DEV Community Rust on AWS App Runner - Part1 https://dev.to/aws-builders/rust-on-aws-app-runner-part1-4hpp Rust on AWS App Runner PartHey hey hey Over the past few months I ve been advocating for Rust on AWS Lambda a lot Here is a quick recap in case you missed it Live coding a AWS Lambda in Rust with TDDLambda Perf tool where Rust is killing the cold start gameBy the way we re almost at ️which is for a side project I m sure we can do it Rust Linz Meetup where I gave a talk about Serverless RustBut as you may know serverless is NOT only about AWS Lambda If you need compute AWS App Runner might be a great fit AWS App RunnerIf you see Lambda as functions as a service you can see App Runner as containers as a service It means that you can focus on building your appcontainerized it ie Docker image and AWS will scale it for you including to zero It also means that you will experience a cold start when no containers are up or when you need to handle more traffic Similarly to AWS Lambda Rust would be a great candidate for AWS App Runner if we manage to build a tiny container which starts extremely fast Annnnnnd that s what we are going to try to do in the series of blog post Ready Let s gooooooo Part Create a simple Rust API this blog postPart Containerize it and make it small Part Deploy it to AWS App Runner Part Create a simple Rust APIIn this part we will focus on building a simple Rust service Let s bootstrap the project using cargo and run cargo new pizza rust bin oh yeah we re going to talk about You should now have this file structure DependencyThere are multiple web framework crates in Rust but one the most commonly used is actix web so let s use this one We re also going to need serde to serialize and deserialize our pizzas Finally for testing purpose we re going to use both actix rt abd actix test main rsOur main function will look like this actix web main async fn main gt std io Result lt gt HttpServer new move App new service pizza service bind run await Here we ve defined a very minimal web server listening on and using the not yet defined pizza service Test first Before going too far in the actual code let s write our unit test first When we hit pizza we want to receive a JSON array of pizza cfg test mod tests use crate pizza service Pizza use actix web App web actix rt test async fn test define a test pizza let pizzas vec Pizza new pizzaTest vec topping topping define our in memory db let app data web Data new pizzas define our test server let srv actix test start move App new app data app data clone service pizza service perform the request let req srv get pizza let mut response req send await unwrap assert response status is success let result pizza response json lt Vec lt Pizza gt gt await unwrap assert the result assert result pizza name pizzaTest assert result pizza toppings vec topping topping assert result pizza price Back to main rsFinally let s modify our code to satisfy our test let s create our pizza structure making sure we can serialize and deserialize it derive Serialize Deserialize struct Pizza name String toppings Vec lt String gt price i simple Pizza constructorimpl Pizza fn new name amp str toppings Vec lt amp str gt price i gt Pizza Pizza name name to string toppings toppings iter map s s to string collect price define our GET endpoint get pizza async fn pizza service data web Data lt Vec lt Pizza gt gt gt impl Responder just returning the JSON representation of our pizzas HttpResponse Ok json amp data actix web main async fn main gt std io Result lt gt our fresh pizzas let pizzas vec Pizza new Margherita vec tomato fior di latte Pizza new Veggie vec green peppers onion mushrooms in memory db let app data web Data new pizzas HttpServer new move App new app data app data clone service pizza service bind run await That s it Our test is now passing cargo test Compiling app runner rust v rust Finished test unoptimized debuginfo target s in s Running unittests src main rs target debug deps app runner rust aacbebc running testtest tests test oktest result ok passed failed ignored measured filtered out finished in s Final checkLet s run our API with cargo run and hit our endpoint curl i http localhost pizzacurl i http localhost pizzaHTTP OKcontent length content type application jsondate Sun Aug GMT name Margherita toppings tomato fior di latte price name Veggie toppings green peppers onion mushrooms price Voila Our API is now ready to be containerized and that s the topic of the next blog post in this series Stay tunned for part next week You can find me on LinkedIn YouTube and Twitter 2023-08-21 14:36:51
海外TECH DEV Community Intro to Python: Day 14 - OOP - Method signatures in polymorphism https://dev.to/jwhubert91/intro-to-python-day-14-oop-method-signatures-in-polymorphism-33pl Intro to Python Day OOP Method signatures in polymorphismHi there I m a New York City based web developer documenting my journey with React React Native and Python for all to see Please follow my dev to profile or my twitter for updates and feel free to reach out if you have questions Thanks for your support We re following up on yesterday s article on polymorphism with a brief discussion of function and method signatures and best practices in Python inheritance As discussed polymorphism is the ability for multiple different classes with different methods and data to inherit from the same parent class This makes it easier to create new classes that share methods that are on the parent In computer programming a function signature is a term for the inputs and outputs of a function To use the boot dev definition in OOP Chapter on Polymorphism A function signature includes the name inputs and outputs of a function or method In functional programming each function is recognized to have its own distinct function signature and there is no inheritance as such In OOP inheritance is one of the major benefits This means we need to take care though not to confuse users of our code especially when overriding methods on child classes So it is a best practice NOT to change the method signature of a class method which inherits from a parent even when overriding the method If you like projects like this and want to stay up to date with more check out my Twitter stonestwebdev I follow back See you tomorrow for another project 2023-08-21 14:32:04
海外TECH DEV Community From Waterfall to Agile: A Scrum Master's Journey in Transforming Project Management https://dev.to/adeniyiwayne/from-waterfall-to-agile-a-scrum-masters-journey-in-transforming-project-management-epb From Waterfall to Agile A Scrum Master x s Journey in Transforming Project Management Introduction In the world of project management the shift from traditional Waterfall methodologies to the more flexible and iterative Agile approach has become a hallmark of success This transition not only requires a change in processes but also a shift in mindset In this blog post we ll delve into the transformational journey of a Scrum Master as they navigate the path from Waterfall to Agile highlighting the challenges lessons learned and the ultimate benefits of embracing Agile methodologies The Waterfall Era The Waterfall methodology characterized by its linear and sequential approach was once the dominant choice for project management Teams would move through defined stages such as requirements gathering design development testing and deployment in a strict order While this approach provided a sense of structure it often led to long development cycles limited flexibility and challenges in adapting to changing client needs The Catalyst for Change Our Scrum Master s journey began with the realization that the Waterfall approach was no longer yielding the desired outcomes Delays scope changes and misalignment between development and client expectations were becoming commonplace It became clear that a more responsive and adaptable approach was needed leading the team to consider Agile methodologies Embracing Agile Principles The first step was to understand the core principles of Agile which prioritize collaboration adaptability and continuous improvement The Scrum Master spearheaded workshops and training sessions to educate the team about Agile frameworks with a focus on Scrum Concepts like user stories sprints daily stand ups and retrospectives were introduced setting the stage for a more iterative and customer centric approach to project management Navigating Challenges Transitioning from Waterfall to Agile wasn t without its challenges Resistance to change fear of losing control and the need for clear documentation were among the hurdles the team faced The Scrum Master played a crucial role in addressing these concerns emphasizing that Agile doesn t mean lack of structure but rather a more flexible and effective way of working Empowering the Team One of the significant shifts during this journey was the empowerment of the development team In the Waterfall model decisions were often top down but in Agile the team was encouraged to collaborate make decisions collectively and take ownership of their work This empowerment led to increased engagement improved problem solving and a sense of ownership that positively impacted project outcomes Iterative Development and Continuous Improvement The transition to Agile brought with it a new rhythm of work the sprint cycle Short development cycles typically two to four weeks allowed the team to deliver incremental value to clients regularly This approach facilitated early and continuous feedback enabling the team to make adjustments based on client input Retrospective meetings at the end of each sprint further fueled the spirit of continuous improvement fostering a culture of learning and adaptation Benefits Realized As the Scrum Master s journey progressed the team began to reap the benefits of Agile transformation Time to market shortened client satisfaction increased and the ability to respond to changing requirements became a competitive advantage The iterative nature of Agile development also minimized risks by catching issues earlier in the process leading to higher quality deliverables Conclusion The Scrum Master s journey from Waterfall to Agile showcases the transformative power of embracing Agile methodologies in project management Beyond a change in processes this transition embodies a change in mindset fostering collaboration flexibility and a dedication to continuous improvement While challenges were encountered along the way the end result was a more empowered and efficient team delivering value to clients in a way that the Waterfall approach simply couldn t match As the business landscape continues to evolve the lessons learned from this journey will undoubtedly continue to guide the team towards success In a world where adaptability is key the Scrum Master s journey serves as an inspiring example of how a single individual s dedication to change can spark a transformation that benefits the entire team and ultimately the success of the projects they undertake 2023-08-21 14:25:07
海外TECH DEV Community Open Source ABCs: Issues https://dev.to/opensauced/open-source-abcs-issues-1f9p Open Source ABCs IssuesWelcome to our DaysOfOSS series Until October we ll be doing Open Source Software OSS terms from A to Z We ll be diving into a different letter of the English alphabet uncovering OSS concepts and sharing our thoughts on them Today we re covering the letter I for Issues Issues An issue is a problem suggestion or task related to a repository that is tracked and managed using issue tracking systems An issue can have a wide range of topics including Bugs A bug report documents when software behaves unexpectedly crashes or produces incorrect results Bug reports help developers identify replicate and fix the issues Feature Requests Users or contributors can propose new features enhancements or changes to the code or software These requests are used to discuss and prioritize potential additions to the project Enhancements Similar to feature requests these suggestions aim to improve the software s functionality performance or user experience They might not introduce entirely new features but can involve refining existing ones Documentation Issues related to improving or clarifying the software s documentation This could involve fixing errors adding missing information or making instructions more understandable Now we want to hear from you What other OSS terms can you think of that start with the letter I Remember to use the hashtag DaysOfOSS if you share on social media and don t forget to tag us saucedopen so we can follow along 2023-08-21 14:20:32
Apple AppleInsider - Frontpage News Apple is unsurprisingly already working on A19 and M5 chips https://appleinsider.com/articles/23/08/21/apple-is-unsurprisingly-already-working-on-a19-and-m5-chips?utm_medium=rss Apple is unsurprisingly already working on A and M chipsApple s chip design and production process has to work far in advance and some sleuthing indicates it has reached the A and M chip generations Designing major products like the iPhone takes Apple a considerable amount of time with years of effort going into the creation of each one With such lead times between starting the process and Apple s product launch it s no surprise that Apple is working on components intended for future iPhone and Mac generations An image shared by leaker orangeran includes a list of CHIP tags a number used to identify the model of chips employed in Apple s various products CHIP tags are intended to ensure that incompatible firmwares are not installed onto the wrong hardware among other tasks Read more 2023-08-21 14:31:39
海外TECH Engadget Tesla's iPhone app can now control your car through Siri https://www.engadget.com/teslas-iphone-app-can-now-control-your-car-through-siri-144718131.html?src=rss Tesla x s iPhone app can now control your car through SiriYou now have an easier way to control your Tesla from your iPhone Not a Tesla Appnotes the latest version of Tesla s iOS software now supports Shortcuts actions making some common tasks available through Siri in addition to on screen taps and widgets You can use Apple s voice assistant for simple tasks like opening the trunks or windows through to special modes If you ve ever wanted to activate Bioweapon Defense Mode by talking to your phone it s now an option Shortcuts also enable automations so you can string together multiple tasks or perform those tasks on set schedules You can create a panic mode that flashes lights honks the horn and closes windows all at the same time for instance or automatically warm the cabin before your morning commute The available commands aren t comprehensive and include features you probably aren t going to use you don t really need a shortcut for an emissions test This could still be significantly more convenient than wading through the Tesla app however It s also notable that there isn t any official integration with Alexa or Google Assistant as of this writing so Android users will have to put in more work to go hands free This app update doesn t give Tesla cars a built in voice control system You ll need to turn to cars from the likes of Mercedes or Volvo if you want to talk directly to your vehicle It does bring voice into the equation though and may be appreciated if you d rather not wade through the official app to handle common functions This article originally appeared on Engadget at 2023-08-21 14:47:18
海外TECH Engadget The voice of Mario is hanging up his mustache after nearly three decades https://www.engadget.com/mario-voice-actor-charles-martinet-steps-down-143213923.html?src=rss The voice of Mario is hanging up his mustache after nearly three decadesAfter voicing Mario for the past years Charles Martinet will no longer be playing the character Nintendo announced in a tweet this morning He ll be moving on to a newly created quot Mario Ambassador quot role where he ll quot continue to travel the world sharing the joy of Mario quot the company said There s no word about a replacement voice actor yet Nintendo also announced that there will be a special video message featuring Martinet and Mario creator Shigeru Miyamoto coming in the future We have a message for fans of the Mushroom Kingdom Please take a look pic twitter com UASicOuTOーNintendo of America NintendoAmerica August While most players likely encountered Martinet s work in Mario he was initially hired in to voice the plumber s interactive D model at trade shows He also played the character in s Mario Teaches Typing as well as the Mario pinball game After his work in Mario Martinet also brought his talents to Luigi Wario Waluigi and several other Nintendo characters over the years Notably he only had a few cameo roles in the recent Super Mario Bros Movie where Mario himself was voiced by Chris Pratt It s unclear which game will be Martinet s last as Mario but fans are already speculating that the mascots voice sounds different in early footage of Mario Wonder and WarioWare Move It This article originally appeared on Engadget at 2023-08-21 14:32:13
ニュース ジェトロ ビジネスニュース(通商弘報) 世界銀行、電力分野改革を通じウズベキスタンの温室効果ガス削減を支援 https://www.jetro.go.jp/biznews/2023/08/8e88e3488b2a3da9.html 世界銀行 2023-08-21 15:00:00
ニュース BBC News - Home Mason Greenwood: Manchester United striker will leave club after internal investigation https://www.bbc.co.uk/sport/football/66554874?at_medium=RSS&at_campaign=KARANGA Mason Greenwood Manchester United striker will leave club after internal investigationMason Greenwood will leave Manchester United following an internal investigation after police dropped charges of attempted rape and assault 2023-08-21 14:48:54
ニュース BBC News - Home Spanish FA president apologises for Hermoso kiss https://www.bbc.co.uk/sport/football/66568226?at_medium=RSS&at_campaign=KARANGA criticism 2023-08-21 14:03:51
ニュース BBC News - Home 850 still missing after Maui fires, mayor says https://www.bbc.co.uk/news/world-us-canada-66571294?at_medium=RSS&at_campaign=KARANGA biden 2023-08-21 14:37:10
ニュース BBC News - Home King and Queen begin summer stay in Scotland at Balmoral https://www.bbc.co.uk/news/uk-scotland-66570409?at_medium=RSS&at_campaign=KARANGA scotland 2023-08-21 14:36:49
ニュース BBC News - Home Mass killings reported along Saudi Arabian border https://www.bbc.co.uk/news/world-middle-east-66545787?at_medium=RSS&at_campaign=KARANGA alleges 2023-08-21 14:53:28
ニュース BBC News - Home Amadou Onana: Police investigating 'vile' racist abuse of Everton midfielder https://www.bbc.co.uk/sport/football/66571223?at_medium=RSS&at_campaign=KARANGA Amadou Onana Police investigating x vile x racist abuse of Everton midfielderPolice are investigating racist comments directed towards Everton s Amadou Onana following Sunday s loss at Aston Villa 2023-08-21 14:47:39
ニュース BBC News - Home Lucy Letby absence from sentencing 'one final act of wickedness from a coward' https://www.bbc.co.uk/news/uk-66568477?at_medium=RSS&at_campaign=KARANGA Lucy Letby absence from sentencing x one final act of wickedness from a coward x Letby s court absence for her sentencing has renewed calls for the law to be changed to compel convicts to attend 2023-08-21 14:15:41
ビジネス ダイヤモンド・オンライン - 新着記事 トランプ氏、アイオワ州で圧倒的優位=世論調査 - WSJ発 https://diamond.jp/articles/-/328010 世論調査 2023-08-21 23: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件)