投稿時間:2022-12-28 22:38:09 RSSフィード2022-12-28 22:00 分まとめ(38件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
IT ITmedia 総合記事一覧 [ITmedia News] PSPみたいな超小型ゲーミングPC「GPD WIN 4」、国内で予約開始 スライドキーボード内蔵 https://www.itmedia.co.jp/news/articles/2212/28/news171.html gpdwin 2022-12-28 21:30:00
AWS AWS Database Blog Upgrade Amazon Aurora PostgreSQL and Amazon RDS for PostgreSQL version 10 https://aws.amazon.com/blogs/database/upgrade-amazon-aurora-postgresql-and-amazon-rds-for-postgresql-version-10/ Upgrade Amazon Aurora PostgreSQL and Amazon RDS for PostgreSQL version Amazon Aurora PostgreSQL Compatible Edition and Amazon Relational Database Service Amazon RDS for PostgreSQL version end of life is approaching If you re currently running your Aurora or RDS instances on PostgreSQL you must upgrade your databases Announcement Amazon Aurora PostgreSQL x end of life is January Announcement Amazon RDS for PostgreSQL x … 2022-12-28 12:55:31
AWS AWS Database Blog Reduce network transfer time with connection compression in Amazon RDS for MySQL and Amazon RDS for MariaDB https://aws.amazon.com/blogs/database/reduce-network-transfer-time-with-connection-compression-in-amazon-rds-for-mysql-and-amazon-rds-for-mariadb/ Reduce network transfer time with connection compression in Amazon RDS for MySQL and Amazon RDS for MariaDBOur customers have seen many cases where network bandwidth between the MySQL client and database becomes the source of bottleneck This leads to increase in the query latencies causing performance impact This is especially seen for workloads which have high network bandwidth requirement MySQL and MariaDB solve this problem by allowing you to compress traffic … 2022-12-28 12:46:06
python Pythonタグが付けられた新着投稿 - Qiita paizaラーニング「二次元配列の最大の要素 Python3編」 https://qiita.com/colcmia/items/0c56962522e72a1cdfd9 nkmap 2022-12-28 21:51:32
python Pythonタグが付けられた新着投稿 - Qiita さくらレンタルサーバDBへ接続する方法 https://qiita.com/aic/items/33757c0f5b3c3233450f 遊び 2022-12-28 21:28:23
python Pythonタグが付けられた新着投稿 - Qiita paizaラーニング「二次元配列での要素の検索 Python3編」 https://qiita.com/colcmia/items/0c18547d47c073228c3f nkmapint 2022-12-28 21:18:56
Docker dockerタグが付けられた新着投稿 - Qiita ④Vue.js & Laravel8 & Docker(Create...データベースに保存) https://qiita.com/hilcrhymer78787/items/a5aee0edb67bc5927bf8 amplaravelampdockercreate 2022-12-28 21:33:43
Git Gitタグが付けられた新着投稿 - Qiita [git] 過去のコミット履歴を削除する方法 https://qiita.com/yuhi_taka/items/c67547fb946ce9bd0322 gitfil 2022-12-28 21:51:40
海外TECH Ars Technica Comcast debacles dominate Ars Technica’s biggest ISP horror stories of 2022 https://arstechnica.com/?p=1905715 comcast 2022-12-28 12:16:04
海外TECH DEV Community API Testing and Development with FastAPI https://dev.to/chainguns/api-testing-and-development-with-fastapi-3bc2 API Testing and Development with FastAPIAPI testing and development can be a daunting task for even the most experienced developers With the introduction of FastAPI however the process has become significantly easier and more efficient FastAPI is a modern fast high performance web framework for building APIs with Python based on standard Python type hints One of the standout features of FastAPI is its use of automatic API documentation using Swagger and OpenAPI This means that as you build your API the documentation is automatically generated saving you time and effort in maintaining accurate documentation Additionally FastAPI integrates with popular testing libraries such as Pytest and Hypothesis making it easy to write and run API tests Here s a simple example of a FastAPI endpoint that increments a counter and returns the result from fastapi import FastAPIapp FastAPI counter app get increment def increment global counter counter return value counter This endpoint can be tested using the popular Pytest library def test increment response app get increment assert response status code assert response json value FastAPI integrates seamlessly with the OpenAPI specification also known as Swagger This allows for automatic generation of API documentation saving developers time and effort in maintaining accurate documentation The integration with Swagger allows for interactive documentation which can be accessed via a browser at the docs endpoint of your API This interactive documentation allows for easy testing and exploration of the API endpoints as well as the ability to easily share the documentation with other developers The documentation is automatically generated based on the API s function signatures and docstrings ensuring that it is always up to date Swagger is swag I m not sorry In addition to the interactive documentation the Swagger integration also allows for the generation of static documentation in the form of a JSON or YAML file This file can be used to easily share the API documentation with other tools and services such as API gateways Overall the Swagger integration in FastAPI greatly simplifies the process of API documentation and testing Tools that leverage OASThere are many tools on the web build to extract value for developers with OAS files One of these is our own open source tool cherrybomb BLST s cherrybomb tool is a powerful tool for testing and finding problems in a Swagger file It is designed to automatically attack a Swagger file and uncover problems that may not be immediately obvious This is especially useful for ensuring the security and reliability of an API Cherrybomb can perform a variety of tests including custom defined active tests In addition to its ability to validate and test a Swagger file for best practices and adherence to the OAS specification BLST s cherrybomb tool can also test for common vulnerabilities This is an important aspect of ensuring the security of an API as vulnerabilities can leave the API open to attacks and exploitation By automatically testing for these vulnerabilities cherrybomb can help developers identify and fix potential security issues before they become a problem The tool s detailed output including the exact location of any issues found makes it easy for developers to quickly identify and fix any problems This can save time and effort in manual testing and help ensure that the API is reliable and secure Overall cherrybomb is a valuable tool for anyone looking to ensure the quality and security of their API through automatic testing and problem identification Thanks for reading If you enjoyed please consider checking us out Star our Github repo and join the discussion in our Discord channel Test your API for free now at BLST 2022-12-28 12:29:43
海外TECH DEV Community 5 Years of Coding Interview Lessons — in 2 Minutes https://dev.to/codewithvoid/5-years-of-coding-interview-lessons-in-2-minutes-2gk7 Years of Coding Interview Lessons ーin MinutesIn the last years I have given coding interviews As a result my approach to prepare and give them has significantly changed Reflecting on my mistakes I have documented my learnings in lessons that I wish I had known sooner 🥲These will help you in leveling up for programming interviews Let s go You only get better by solving more problems Pick only ONE programming language you are extremely familiar with Biggest mistake you can make is ignoring the fundamentals Learn and practice topics in order of importance Prioritize practicing the most popular and frequently asked interview questions Look for key patterns that help you solve multiple problems Revising questions is underrated That s how you really internalize topics Gather maximum detail about the interview beforehand Understanding the problem is the primary step of problem solving Clarify the question even if it s clear to you Come up with more examples to test your understanding Break down complex questions into small independent questions Think of multiple solutions before committing to one It s ok to take notes during the interview Whenever stuck start with a brute force solution Explain the solution approach before writing code Solution first Optimization later Let your interviewer know before optimizing the solution Prioritize optimizing repeated overlapping or redundant computation For complex algorithms write pseudo code first Explain your thought process while writing code Your solution is as good as how well you communicate it Step through the code like a debugger to catch bugs Show your code works by testing it with sample inputs Discuss how your provided solution can be improved Prepare well for self introduction and final questions Mock interviews are a great way to make gaps in your preparation visible Irrespective of the result reflect on your interview experience That s it I hope you find these lessons helpful If you liked this post follow me for more of these Also share a coding interview lesson that you learnt the hard way in comments 2022-12-28 12:15:08
Apple AppleInsider - Frontpage News ySky Auto Phone Lockbox Review: Decent procrastination counter-measure https://appleinsider.com/articles/22/12/28/ysky-auto-phone-lockbox-review-decent-procrastination-counter-measure?utm_medium=rss ySky Auto Phone Lockbox Review Decent procrastination counter measureThe ySky Auto Phone Lockbox is a timer based lockbox for your iPhone that delivers on its simple promise In a world controlled by the byte and the pixel and dopamine driven feedback loops from social media many find themselves trying to limit their phone time For those who may deeply struggle with distraction and procrastination a phone lockbox is not out of the question At inches by inches by inches the lockbox is big enough to hold most modern phones It features a transparent lid for viewing of the screen in case of important notifications The box has several cutouts in the lid and the sides to allow for the phone to be minimally used in important situations as well as access for a Lightning charger Read more 2022-12-28 12:45:08
Apple AppleInsider - Frontpage News Looking back at 2022: Favorite hardware, software, and features https://appleinsider.com/articles/22/12/28/looking-back-at-2022-favorite-hardware-software-and-features?utm_medium=rss Looking back at Favorite hardware software and featuresIt s been a long year and we ve seen it all Our editorial staff shares their favorite gear software and features released over the course of Lots of new things are released every year and this year was no different There was the new Mac Studio a new iPad Pro lineup and more Apple compatible accessories than you can shake a stick at Here s what we thought was worth a second glance Mike Wuerthele Mac Studio Read more 2022-12-28 12:41:12
Apple AppleInsider - Frontpage News Former patent attorney sues Apple over harassment & discrimination https://appleinsider.com/articles/22/12/27/former-patent-attorney-sues-apple-over-harassment-discrimination?utm_medium=rss Former patent attorney sues Apple over harassment amp discriminationA former patent attorney for Apple has sued the company over discrimination and harassment after she complained about a male colleague Apple under fire for discriminationJayna Richardson Whitt sued the company in California claiming Apple retaliated against her after it learned of her domestic abuse victim status by turning her down for higher level positions She seeks unspecified compensation for economic losses and emotional distress Read more 2022-12-28 12:49:33
海外TECH Engadget The Morning After: Biometric devices with military data were being sold on eBay https://www.engadget.com/the-morning-after-biometric-devices-with-military-data-were-being-sold-on-e-bay-121545608.html?src=rss The Morning After Biometric devices with military data were being sold on eBayGerman researchers who purchased biometric capture devices on eBay found sensitive US military data stored on the machine s memory cards According to The New York Times that included fingerprints iris scans even photographs names and descriptions of the individuals mostly from Iraq and Afghanistan Many individuals worked with the US army and could be targeted if the devices fell into the wrong hands according to the report One device was purchased at a military auction and the seller said they were unaware that it contained sensitive data There was an easy solution too The US military could have eliminated the risk by simply removing or destroying the memory cards before selling them Mat SmithThe biggest stories you might have missedRazzmatazz review A delightful and delightfully pink drum machineThe best accessories for Nintendo s Switch OLEDLG s soundbars offer Dolby Atmos and wireless TV connections What we bought The standing desk I chose after a lot of researchA third Blizzard studio pushes to unionizeThe campaign involves all non management workers Workers at Proletariat a Boston based studio Blizzard bought earlier this year announced they recently filed for a union election with the National Labor Relations Board NLRB Proletariat is the third Activision Blizzard studio to announce a union drive in However past campaigns at Raven Software and Blizzard Albany involved the quality assurance workers at those studios the effort at Proletariat includes all non management workers The employees at Proletariat say they aim to preserve the studio s “progressive human first benefits including its flexible paid time off policy and robust healthcare options Additionally they want to protect the studio from crunch compulsory overtime during game development Continue reading LG s new minimalistic appliances have upgradeable features and fewer controlsUpgradeable to an extent LGLG is taking a more minimalist approach to its kitchen appliances in with less showy profiles colors and seemingly controls While we re not getting a close up look at all the dials and buttons yet the appliances look restrained compared to previous years models In the past we ve seen a washing machine whose flagship feature was an entire extra washing machine There was also a dryer that had two doors Just because LG says it s used recycled materials across multiple machine parts adding that its latest appliances also require fewer total parts and less energy than typical kitchen appliances This would dovetail with the company s announcements at the start of the year where LG said it would offer upgradability for its home appliances So far that s included new filters for certain use cases and software upgrades with new washing programs for laundry machines Continue reading US House of Representatives bans TikTok on its devicesLawmakers and staff members who have TikTok on their phones would have to delete it TikTok is now banned on any device owned and managed by the US House of Representatives according to Reuters The House s Chief Administrative Officer CAO reportedly told all lawmakers and their staff in an email that they must delete the app from their devices because it s considered quot high risk due to a number of security issues quot Further still everyone detected to have the social networking application on their phones would be contacted to make sure it s deleted Continue reading LG teases a smaller smartphone camera module with true optical telephoto zoomIt could lead to smaller smartphone camera bumps LG may not make smartphones anymore but it s still building components for them The company s LG Innotek arm just unveiled a periscope style true optical zoom camera module with a times telephoto range Most smartphone cameras use hybrid zoom setups that combine certain zoom ranges typically x x x etc with a digital zoom to fill in between those x x etc leading to reduced detail LG s quot Optical Zoom Camera quot however contains a zoom actuator with movable components like a mirrorless or DSLR camera That would help retain full image quality through the entire zoom range while potentially reducing the size and number of modules required Could this mean the death of the camera bump Continue reading nbsp 2022-12-28 12:15:45
ニュース BBC News - Home Cody Fisher: Murder arrests over Birmingham nightclub stabbing https://www.bbc.co.uk/news/uk-england-64108203?at_medium=RSS&at_campaign=KARANGA boxing 2022-12-28 12:42:31
ニュース BBC News - Home John Bird: Actor and comedian dies aged 86 https://www.bbc.co.uk/news/entertainment-arts-64108691?at_medium=RSS&at_campaign=KARANGA fortune 2022-12-28 12:12:31
ニュース BBC News - Home China Covid: US considers restrictions on Chinese arrivals https://www.bbc.co.uk/news/world-us-canada-64107553?at_medium=RSS&at_campaign=KARANGA china 2022-12-28 12:32:23
ニュース BBC News - Home British woman Emma Lovell killed in Australia during break-in https://www.bbc.co.uk/news/uk-england-suffolk-64104628?at_medium=RSS&at_campaign=KARANGA queensland 2022-12-28 12:22:39
ニュース BBC News - Home UK weather extremes to become new normal, says National Trust https://www.bbc.co.uk/news/uk-64107967?at_medium=RSS&at_campaign=KARANGA illustration 2022-12-28 12:27:59
ニュース BBC News - Home Strikes: Airport, rail and driving test staff resume action https://www.bbc.co.uk/news/business-64102300?at_medium=RSS&at_campaign=KARANGA action 2022-12-28 12:36:59
ニュース BBC News - Home NBA: Luka Doncic scores 60-point triple double as Dallas Mavericks beat New York Knicks https://www.bbc.co.uk/sport/av/basketball/64086013?at_medium=RSS&at_campaign=KARANGA NBA Luka Doncic scores point triple double as Dallas Mavericks beat New York KnicksWatch highlights of Luka Doncic s historic first point triple double in NBA history as he helps the Dallas Mavericks earn a overtime win over the New York Knicks 2022-12-28 12:10:35
北海道 北海道新聞 1年振り返り労ねぎらう 帯広商工会議所など仕事納め https://www.hokkaido-np.co.jp/article/781869/ 仕事納め 2022-12-28 21:39:00
北海道 北海道新聞 帯広 4地区の市道、順次排雪作業 22年内終了目指す https://www.hokkaido-np.co.jp/article/781868/ 終了 2022-12-28 21:39:00
北海道 北海道新聞 <師走点描2022>だて巻き作り 函館でピーク https://www.hokkaido-np.co.jp/article/781865/ 老舗 2022-12-28 21:31:00
北海道 北海道新聞 函館臨床福祉専門学校、閉校へ 学生減、24年3月で https://www.hokkaido-np.co.jp/article/781864/ 函館臨床福祉専門学校 2022-12-28 21:30:00
北海道 北海道新聞 厚沢部「道の駅」入札不正 町長の責任、議会から問う声 https://www.hokkaido-np.co.jp/article/781863/ 道の駅あっさぶ 2022-12-28 21:29:00
北海道 北海道新聞 JR宗谷線抜海駅存続へ住民CF 24年度の維持費100万円目標 https://www.hokkaido-np.co.jp/article/781796/ 維持費 2022-12-28 21:28:12
北海道 北海道新聞 日英、新通信網普及へ連携 経済安保で脱中国目指す https://www.hokkaido-np.co.jp/article/781859/ 連携 2022-12-28 21:26:00
北海道 北海道新聞 五輪入札直前、受注調整重ねる 特捜部、年度内立件へ態勢拡充 https://www.hokkaido-np.co.jp/article/781858/ 入札談合 2022-12-28 21:26:00
北海道 北海道新聞 一年の労 職員ねぎらう 石狩管内7市町、仕事納めに首長訓辞 https://www.hokkaido-np.co.jp/article/781857/ 仕事納め 2022-12-28 21:21:00
北海道 北海道新聞 日本ハム「北海道179市町村応援大使」終了へ 23年から衣替え https://www.hokkaido-np.co.jp/article/781728/ 地域おこし 2022-12-28 21:20:36
北海道 北海道新聞 <師走点描2022>汚れ清め良い年を 北見神社ですす払い https://www.hokkaido-np.co.jp/article/781856/ 北見神社 2022-12-28 21:18:00
北海道 北海道新聞 紋別市長「信頼回復を」 オホーツク管内各地で仕事納め 首長ら年末あいさつ https://www.hokkaido-np.co.jp/article/781854/ 仕事納め 2022-12-28 21:17:00
北海道 北海道新聞 <湧別>岡沢さん、もうひとつの花園へ 湧別高初 ラグビーU18合同チーム東軍選出 https://www.hokkaido-np.co.jp/article/781853/ 高校ラグビー 2022-12-28 21:15:00
北海道 北海道新聞 鈴木宗男氏 「ウクライナ停戦に向け日本は尽力を」 https://www.hokkaido-np.co.jp/article/781849/ 北海道新聞 2022-12-28 21:03:00
北海道 北海道新聞 釧網線、12月29日再開 午後4時ごろ https://www.hokkaido-np.co.jp/article/781848/ 釧網線 2022-12-28 21:03:00
海外TECH reddit 【デカチン速報】仏大使館「中国人観光客を歓迎」=中国ネット「日本より器大きい」 https://www.reddit.com/r/newsokunomoral/comments/zx8a9y/デカチン速報仏大使館中国人観光客を歓迎中国ネット日本より器大きい/ ewsokunomorallinkcomments 2022-12-28 12:23:40

コメント

このブログの人気の投稿

投稿時間: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件)