投稿時間:2023-05-17 23:26:04 RSSフィード2023-05-17 23:00 分まとめ(27件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
IT 気になる、記になる… 「iPhone 15 Pro」シリーズでは超広角カメラと望遠カメラの位置が変更される?? https://taisy0.com/2023/05/17/171878.html iphone 2023-05-17 13:12:14
TECH Techable(テッカブル) ChatGPT活用!Webサイトの翻訳・改善提案を実現する「WOVN.copilot」 https://techable.jp/archives/206665 wovnio 2023-05-17 13:00:07
AWS AWS Architecture Blog dApp authentication with Amazon Cognito and Web3 proxy with Amazon API Gateway https://aws.amazon.com/blogs/architecture/dapp-authentication-with-amazon-cognito-and-web3-proxy-with-amazon-api-gateway/ dApp authentication with Amazon Cognito and Web proxy with Amazon API GatewayIf your decentralized application dApp must interact directly with AWS services like Amazon S or Amazon API Gateway you must authorize your users by granting them temporary AWS credentials This solution uses Amazon Cognito in combination with your users digital wallet to obtain valid Amazon Cognito identities and temporary AWS credentials for your users It … 2023-05-17 13:08:40
python Pythonタグが付けられた新着投稿 - Qiita オブジェクト指向で書く!matplotlib入門 https://qiita.com/bear_opening/items/5d834f30f7ff5df330b6 matplotlib 2023-05-17 22:50:53
python Pythonタグが付けられた新着投稿 - Qiita Windows + VSCode + Python https://qiita.com/konomon0107/items/9938ce2834d025ca9720 windowsvscodepython 2023-05-17 22:04:24
js JavaScriptタグが付けられた新着投稿 - Qiita 【C2C CTF】JSWHAT? の Write Up https://qiita.com/LabPixel/items/942865961ab5f3156a6e writeupdescripti 2023-05-17 22:27:17
Ruby Rubyタグが付けられた新着投稿 - Qiita クライアントサイドとサーバーサイドとIDaaS(FirebaseAuth等)を用いた認証フローの整理 https://qiita.com/yuyasat/items/0c0b3b6710e0e8006565 idaasfirebaseauth 2023-05-17 22:03:13
AWS AWSタグが付けられた新着投稿 - Qiita 条件を満たすECSタスクを探すスクリプト https://qiita.com/essei0-0/items/91f8935e6326b15b93d1 ecslistclustersjqrcluster 2023-05-17 22:45:06
Ruby Railsタグが付けられた新着投稿 - Qiita クライアントサイドとサーバーサイドとIDaaS(FirebaseAuth等)を用いた認証フローの整理 https://qiita.com/yuyasat/items/0c0b3b6710e0e8006565 idaasfirebaseauth 2023-05-17 22:03:13
海外TECH Ars Technica NASA’s Artemis program may face a budget crunch as costs continue to rise https://arstechnica.com/?p=1939235 budget 2023-05-17 13:23:48
海外TECH DEV Community Teacher-Student Ratio Calculator https://dev.to/peiche/teacher-student-ratio-calculator-3ao1 Teacher Student Ratio CalculatorAppwrite is doing a hackathon with Hashnode Is it a no no to post about one developer community site on another I dunno But since I do cross post the majority of my code related stuff here I figured I d post it anyway Team DetailsPaul It s me I built this by myself About This ProjectMy wife is a teacher and scheduler in a childcare facility They have a wide age range of children from infants to toddlers to preschoolers It is admirable work but unfortunately for her the scheduling system that tracked children was all done on paper As she told me more about the details that went into the scheduling I became convinced that together we could create a reliable digital replacement This the version I m submitting for the Appwrite hackathon is not quite the final version A few pieces are missing for the sake of a public demo authentication for example Another is the student list none of the children in this public demo are real people The primary functionality however is intact with generating a list of times of day with classrooms of students and their calculated decimal ratio values Tech StackNetlify for automatic deployment from GitHub repo Appwrite CloudDatabaseReactReact Router for pages Redux and Redux Persist to save settings locally MUI for easy layouts Day js because dates can be hard in JavaScript Challenges We FacedThe first and largest challenge was entering all the children at the daycare into the database The first table was created for this purpose which stores the first and last name the times the child arrives and leaves the daycare and their birthday Each child is assigned a decimal value to calculate the teacher student ratio As they age the decimal value changes The older the child the smaller the value In the previous pencil and paper system each child s value was recalculated by hand every day because the time intervals which required a ratio change were not necessarily only on their birthday Since the digital system tracks the child s age calculating the decimal value happens automatically Since the daycare is a smaller one ーwith a smaller staff ーchildren do not necessarily stay in the classroom in which they start the day For that reason we chose not to create static classroom groups but rather allow the user to create and re name them as they see fit The ability to remove and add children to different groups was likewise important Drag and drop would perhaps offer a nicer UX but checkboxes for addition and removal were deemed sufficient In adding children to classroom groups and moving them around my wife found that sometimes she needed to edit their starting or ending times The daycare allowed parents to text email or call with last minute schedule changes so the ability to quickly edit a student proved important Clicking on a student s name within the selection screen or even the final ratio calculation screen opens a new tab with all navigation removed Clicking the “Cancel button simply closes the tab bringing the user back to the previous tab Clicking “Save ーas you would expect ーupdates the student s record and also closes the tab It s important to note that after updating a student the previous tab does not refresh that must still be done manually Originally the time slots for which the report was needed were hard coded It was not too difficult however to create another table ーjust a simple one with a single column ーwhich stores each slot These slots will rarely if ever need to change that said the ability to do so can now be handled by the user and does not require a redeploy A final generated ratio report is not saved to the database but it is possible to export it to a saved JSON file This file can then be imported for quick editing or printing It s quite possible ーprobable even ーthat adding dark mode was not necessary for anyone other than myself In all likelihood it was simply bikeshedding That said I am a dark mode enjoyer and use it whenever possible Public Code RepoFeel free to poke around I know enough React to be dangerous but by no means do I claim to be an expert Much of this project was a learning experience especially with Redux Persist And by all means submit a PR if you see something you think can be improved upon I am never too proud to learn Demo LinkThe database holds a list of students and time slots but a generated list of ratios per time of day is not saved to the database Rather it is saved to local storage via Redux Persist It is easy enough to create name and organize groups of students however After at least one group is created the “Generate button appears to calculate the decimal ratio values for each student totaled in each group for each time of day in the database For the sake of this open source demo I am not requiring authentication I have prepopulated the database with times of day and students all fictitious so generating ratio calculations is a snap Although I configured the Appwrite database tables and wrote all the code my wife ーthe inspiration behind this project ーprovided tireless feedback to improve the experience plenty of love and many cups of coffee Electric Unicorn by Bones Coffee might just as well be a sponsor here too 2023-05-17 13:24:02
海外TECH DEV Community Navigating the World of Pair Programming https://dev.to/accreditly/navigating-the-world-of-pair-programming-3oj6 Navigating the World of Pair ProgrammingPair programming a key practice in agile development methodologies has gained considerable attention for its potential to improve code quality foster knowledge sharing and enhance team collaboration However like any technique it comes with its own set of pros and cons In this post we ll dive deep into what pair programming is how it works its benefits drawbacks and best practices to make it work for your team As part of our series on programming productivity we ve been discussing everything you need to know about pair programming so if you re looking for a deep dive then definitely start there This article is aimed at developers who have probably heard of pair programming but never tried it or those who have never heard of it at all Let s jump in What is Pair Programming Pair programming is a collaborative programming technique where two developers work together at one workstation One the driver writes the code while the other the navigator reviews each line of code as it is typed in The two programmers switch roles frequently fostering a more collaborative approach to problem solving and code creation In more recent years and especially with the pandemic pair programming has happened remotely as well as in person There are various plug ins available for the likes of VS Code that make this easy but anything that allows you to share a screen will do the job although a specialised tool is better you ll often want to draw on the screen or take keyboard control Microsoft VS Code users can start with Live Share How Does Pair Programming Work In a typical pair programming session the driver and navigator work closely together The driver is in control of the keyboard and actively implements the code or solves the problem at hand The navigator on the other hand is responsible for reviewing the written code spotting errors and providing strategic direction One crucial aspect of pair programming is role swapping After a set period or after completing a specific task the driver and navigator switch roles This switch not only helps keep both developers engaged but also promotes knowledge sharing and mutual learning You should set a clear set of rules at the start of each session that you re both happy with Benefits Pros of Pair ProgrammingPair programming provides several benefits Improved code quality Having two pairs of eyes on the code can result in fewer mistakes and better overall code quality The navigator can spot errors or suggest improvements on the go reducing the need for extensive code reviews later Knowledge sharing Pair programming fosters knowledge sharing and mutual learning Both developers can learn new strategies techniques or shortcuts from each other improving their skills Better problem solving Two minds are often better than one when it comes to problem solving Collaborative discussions can lead to more innovative solutions and faster problem resolution Reduced risk of blockage When working alone a complex problem can halt progress In pair programming the combined knowledge and perspective can help overcome these obstacles more quickly Improved communication Pair programming can enhance team communication and rapport leading to a more cohesive and productive team Cons of Pair ProgrammingDespite its benefits pair programming is not without its drawbacks Higher resource requirements Pair programming means two developers are working on the same task which could potentially be seen as doubling the human resources required Take this with a pinch of salt often the motivation of working with someone else has a big productivity bonus Experienced engineering managers recognise this Personality clashes Not everyone works well together Personality clashes or differences in work styles can make pair programming less effective or even counterproductive Increased pressure Some developers may feel uncomfortable or pressured when coding with someone else watching leading to stress or decreased productivity Some developers just don t work well in these environments and it shouldn t be forced Scheduling challenges Coordinating schedules for pair programming can be challenging especially for remote teams across different time zones or smaller teams with constrained resources Best Practices for Effective Pair ProgrammingTo maximize the benefits of pair programming and mitigate its drawbacks consider the following best practices Switch roles regularlyRegular role swapping can keep both developers engaged foster mutual learning and prevent one person from dominating the process Pair with the right programmerPairing with the right programmer helps here You should try and pair with a programmer of similar ability unless the goal is mentorship One often over looked point here is that the programmer you pair with should have a similar level of project knowledge as you If you re in a larger team covering many projects then there s likely going to be differences in knowledge of the inner workings of a project as well as general development knowledge If the goal is to share project knowledge then it s OK to have developers working together with different levels of project knowledge but if this isn t clearly communicated then it can lead to frustration Choose pairs wiselyOn from the above it s not just the project knowledge and development skillset to be considered Also consider each developer s personality work style and skill level when forming pairs Sometimes pairing a less experienced developer with a more experienced one can be a great learning opportunity Just communicate the roles clearly Take regular and scheduled breaksPair programming is an intensive task You should both take regular breaks and do your best to schedule them Seasoned pair programmers can go for much longer without needing a break but those new to it can quickly get overwhelmed so understand the limitations of both yourself and your partner Ensure clear communicationEncourage open and respectful communication between the pair Both members should feel comfortable giving and receiving feedback throughout the process After the session try to give constructive feedback to your partner Having time set aside at the end of the session for this feedback helps Plan before you beginYou shouldn t just jump into a pair programming session cold especially if you or your partner are new to it Before you start you should have the following information clearly communicated to both parties Who is the driver and who is the navigator for the first session What is a session when do you switch roles Is it time based every minutes for example or is it task based Like a good meeting a good pair programming session should have a clear agenda What do you intend on completing in the session If you re working on a task based role swap system then it s a good idea to plot this out before you begin Experienced pair programmers are able to do this more ad hoc but more novice pair programmers should do more prep so they can focus more on the programming and less on the running of the session What are your strengths and weaknesses Be open and honest at the start of the session tell your partner what you re good at and what you re not good at Great at database queries but struggle a little with complex loops or logic Make sure you are playing to each other s strengths Share your project knowledge If you ve worked on this project for hundreds of hours already you ll likely know the decisions that have been made all over the app whereas if you re new to the project you may need more context Being open and honest here makes it easy for your partner to know what to expect Be punctual and preparedPair programming sessions are usually planned way in advance It s common courtesy to turn up prepared and ready to go Don t turn up late Don t turn up without a coffee tea water Have the project pulled and set up for local development Familiarise yourself with the project as best as you can Have a pen and paper ready for note taking Summing upPair programming when implemented correctly can be a powerful tool for improving code quality fostering knowledge sharing and enhancing team collaboration However it s not a one size fits all solution Understanding its pros and cons and employing best practices can help you determine how to best incorporate pair programming into your team s workflow If you re interested in learning more then check out our article Everything you need to know about pair programmingHave you tried pair programming Share your experiences tips and insights in the comments below 2023-05-17 13:11:53
Apple AppleInsider - Frontpage News Beats Studio Buds+ now available to order with better ANC, transparent option https://appleinsider.com/articles/23/05/17/beats-studio-buds-now-available-to-order-with-better-anc-transparent-option?utm_medium=rss Beats Studio Buds now available to order with better ANC transparent optionAfter months of leaks Apple subsidiary Beats by Dre has released the Beats Studio Buds which improves on ANC and Transparency modes and adds a transparent color option Beats Studio Buds Beats launched the first iteration of the Beats Studio Buds in June Almost two years later the update to the model has arrived and it has a few new tricks up its sleeve Read more 2023-05-17 13:58:52
Apple AppleInsider - Frontpage News Android users have increasingly switched to iPhone in the past decade https://appleinsider.com/articles/23/05/17/android-users-have-increasingly-switched-to-iphone-in-the-past-decade?utm_medium=rss Android users have increasingly switched to iPhone in the past decadeThe migration of Android users to the iPhone remains a component of Apple s ecosystem and once they make the switch they often remain loyal to the brand Android users keep moving to iPhoneOn May a report from Counterpoint Research found that Android users moving to iOS helped boost Apple s smartphone market share in the US even as the overall market contracted Additionally on Wednesday a report from Consumer Intelligence Research Partners CIRP supports the data Read more 2023-05-17 13:39:43
海外TECH Engadget Eero mesh WiFi routers are up to 50 percent off right now https://www.engadget.com/eero-mesh-wifi-routers-are-up-to-50-percent-off-right-now-133648608.html?src=rss Eero mesh WiFi routers are up to percent off right nowThis is a good time to buy a mesh router if you want to boost your WiFi network s coverage at a low price Amazon is running a sale with steep discounts on previous generation Eero routers Most notably an Eero Pro is available for or half its usual price ーa bargain if you re looking for a tri band system You can also buy a three pack of standard dual band routers for or percent off Eero routers helped popularize mesh networking and they re still a good choice if you re interested in no fuss coverage across a wide area They re simple to set up and their compact design helps you tuck them into inconspicuous places around the house You can control them using Amazon Alexa and they play nicely with Apple s HomeKit We d add that newer Amazon Echo devices have built in Eero WiFi extenders ーyou can buy a smart speaker and improve your wireless quality at the same time These are WiFi ac models so you ll want to spend extra if you need the faster connectivity of WiFi or e And while every Eero node includes dual gigabit Ethernet jacks you may want to look elsewhere if you need more of those ports in any one area The price is right for what you re getting though and you might not need to spend more if your internet service is unlikely to overwhelm a WiFi network any time soon Follow EngadgetDeals on Twitter and subscribe to the Engadget Deals newsletter for the latest tech deals and buying advice This article originally appeared on Engadget at 2023-05-17 13:36:48
海外科学 NYT > Science Drug Shortages Near an All-Time High, Leading to Rationing https://www.nytimes.com/2023/05/17/health/drug-shortages-cancer.html Drug Shortages Near an All Time High Leading to RationingA worrisome scarcity of cancer drugs has heightened concerns about the troubled generic drug industry Congress and the White House are seeking ways to address widespread supply problems 2023-05-17 13:31:02
海外TECH WIRED Dyson Zone Review: Air-Purifying Headphones Are Overpriced and Embarrassing https://www.wired.com/review/review-dyson-zone/ bizarre 2023-05-17 13:30:00
ニュース BBC News - Home No-fault evictions to be banned in reform of rental sector https://www.bbc.co.uk/news/uk-politics-65612842?at_medium=RSS&at_campaign=KARANGA england 2023-05-17 13:08:11
ニュース BBC News - Home Chancellor Jeremy Hunt: Office working should be default https://www.bbc.co.uk/news/business-65621081?at_medium=RSS&at_campaign=KARANGA jeremy 2023-05-17 13:40:46
ニュース BBC News - Home Purplebricks snapped up by rival Strike for £1 https://www.bbc.co.uk/news/business-65623561?at_medium=RSS&at_campaign=KARANGA token 2023-05-17 13:47:04
ニュース BBC News - Home No political pressure over Coronation protest arrests - Met officer https://www.bbc.co.uk/news/uk-65621447?at_medium=RSS&at_campaign=KARANGA safety 2023-05-17 13:21:55
ニュース BBC News - Home Huddersfield double stabbing: Man in court on murder charges https://www.bbc.co.uk/news/uk-england-leeds-65621907?at_medium=RSS&at_campaign=KARANGA higton 2023-05-17 13:35:09
ニュース BBC News - Home US PGA Championship 2023: Rory McIlroy, Jon Rahm and Scottie Scheffler among players at Oak Hill https://www.bbc.co.uk/sport/golf/65611988?at_medium=RSS&at_campaign=KARANGA US PGA Championship Rory McIlroy Jon Rahm and Scottie Scheffler among players at Oak HillThe second men s major of the season gets under way on Thursday with the US PGA Championship being held at the iconic Oak Hill Country Club in New York 2023-05-17 13:21:03
仮想通貨 BITPRESS(ビットプレス) [ロイター] ミームコインの熱狂再燃、「ペペ」が一時7000%の急騰 https://bitpress.jp/count2/3_9_13620 熱狂 2023-05-17 22:01:06
IT IT号外 アンドロイドのスマホで動画などのデータサイズが大きいファイルの同期ができないアップロードが進まないし終わらない時の対処法 https://figreen.org/it/%e3%82%a2%e3%83%b3%e3%83%89%e3%83%ad%e3%82%a4%e3%83%89%e3%81%ae%e3%82%b9%e3%83%9e%e3%83%9b%e3%81%a7%e5%8b%95%e7%94%bb%e3%81%aa%e3%81%a9%e3%81%ae%e3%83%87%e3%83%bc%e3%82%bf%e3%82%b5%e3%82%a4%e3%82%ba/ アンドロイドのスマホで動画などのデータサイズが大きいファイルの同期ができないアップロードが進まないし終わらない時の対処法PixelなどのAndroidスマホを使っていてまたしても気になるところがありました。 2023-05-17 13:49:49
海外TECH reddit Geng vs C9 Game 2 Discussion MSI 2023 https://www.reddit.com/r/leagueoflegends/comments/13k1nni/geng_vs_c9_game_2_discussion_msi_2023/ Geng vs C Game Discussion MSI GenG C C show some signs of life but its ultimately a bigger stomp than Game only giving away kills and ending the game in minutes submitted by u TurbinePro to r leagueoflegends link comments 2023-05-17 13:23:41
GCP Cloud Blog Google Public Sector announces Board of Directors https://cloud.google.com/blog/topics/public-sector/google-public-sector-announces-board-directors/ Google Public Sector announces Board of DirectorsWhen Google Public Sector was announced in June it was a sign of Google s strong commitment in serving the needs of U S federal state and local governments and education institutions  Since then Google Public Sector has furthered its work to accelerate the digital transformation of U S public sector customers We recently announced that active duty enlisted members of the U S Army will use Google Workspace to improve collaboration partnered with the U S Department of Labor to offer transitioning service members and spouses career assistance with Google Career Certificates and Google Cloud trainings kicked off an effort to modernize IT and data infrastructure for the city of Dearborn Mich started a collaboration with the University of California Riverside UCR to modernize its enterprise infrastructure and support its cutting edge research program and partnered with the Utah Division of Wildlife Resources to protect the state s wildlife to name a few  Today it s my pleasure to announce another important milestone for Google Public Sector the introduction of our Board of Directors As CEO of Google Public Sector I am honored to join the board with these distinguished professionals each of whom brings diverse perspectives and rich experiences to our leadership team The board will serve as an important feedback channel to Google Public Sector ensuring our products and services meet the needs of our customers help us anticipate future needs and drive differentiation in the U S public sector market  The Google Public Sector Board of DirectorsGEN Dave L Goldfein Ret Board ChairRetired General Dave L Goldfein served a year career as a pilot in the United States Air Force where he commanded at every level and finished his career as the st Chief of Staff of the U S Air Force CSAF  As CSAF he spearheaded the Joint All Domain Command and Control JADC with the aim of integrating all military branches into a network of U S military sensors platforms commanders and operators in order to increase battle readiness and responsiveness Dave currently serves as a senior advisor for Blackstone Investment Group Governor Steve BullockAn accomplished lawyer Steve Bullock served the State of Montana as Attorney General from to and as Governor from to  During his years as governor Steve successfully grew Montana s economy made record investments in public education expanded access to health care protected public lands and prioritized fiscal responsibility and transparency in government  Steve currently serves on the board of the Foundation for America s Public Lands a congressionally authorized non profit working to support the mission and objectives of the Bureau of Land Management Dr Dawn MeyerriecksAn engineer by trade Dr Dawn Meyerriecks is a leading voice at the intersection of science technology and government with more than years in government and industry service including national security and defense  From to Dawn led the CIA Directorate of Science and Technology where she spearheaded the exploration and implementation of emerging technologies to serve missions and led the organization s first restructure in its year history Dawn currently acts as an advisor and independent consultant to executive teams within global corporations and institutions including Blackstone MITRE and others GEN Tony Thomas Ret General Raymond Anthony Thomas III is a retired general of the U S  Army He most recently served as the th Commander of United States Special Operations Command where he led the coordinated efforts of the special operations forces across all military branches His previous leadership roles include Commander of Joint Special Operations Command JSOC Associate Director for Military Affairs CIA and many others He is currently a partner at Lux Venture Capital  LTG Nadja West M D Ret Dr Nadja West is a retired U S Army lieutenant general Most recently Nadja served as the th Army Surgeon General and Commanding General of the U S Army Medical Command from to where among other duties she provided advice and guidance to the Army Chief of Staff on all Army healthcare matters Nadja currently serves on the boards of Johnson amp Johnson Nucor Corp AmeriCares and others Dr Heather WilsonFrom to Dr Heather Wilson served as Secretary of the U S Air Force where she oversaw the development of a new science and technology strategy for the branch Prior to that she represented New Mexico in the United States Congress for years and served on the House Energy and Commerce Committee and the House Armed Services Committee Heather is currently the President of The University of Texas at El Paso which serves students with bachelor s master s and doctoral degree programs and she also sits on the National Science Foundation Board These distinguished public sector leaders will join Will Grannis CTO of Google Cloud Thomas Kurian CEO of Google Cloud Kevin Mandia CEO of Mandiant Kent Walker President of Global Affairs and Chief Legal Officer at Google and Alphabet and me to comprise the Google Public Sector Board of Directors  Since taking on the role of CEO for Google Public Sector I ve heard directly from government and education customers the need for more choice in cloud vendors who can support their missions and protect the health safety and security of citizens With our Board of Directors Google Public Sector is well positioned to play a critical role in applying cloud technology to solve these and many other complex problems for our nation 2023-05-17 13: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件)