投稿時間:2023-06-25 01:15:40 RSSフィード2023-06-25 01:00 分まとめ(17件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
python Pythonタグが付けられた新着投稿 - Qiita ABC307をPythonで解いてみたよ。(A~E問題) https://qiita.com/hyouchun/items/f6a8e052034352fbbca9 atcoder 2023-06-25 00:46:06
python Pythonタグが付けられた新着投稿 - Qiita DjangoでStable DiffusionのAPIを叩いてBase64で受け取る https://qiita.com/DeepRecommend/items/5819ac58ae0a7c18fba5 prompt 2023-06-25 00:44:27
python Pythonタグが付けられた新着投稿 - Qiita pyenvでPythonのバージョンを切り替える方法 https://qiita.com/yuya_mtk371/items/08a8fd25a34bd06bf64f pyenv 2023-06-25 00:36:09
python Pythonタグが付けられた新着投稿 - Qiita 線形回帰② https://qiita.com/892noske/items/fbe74f053fc278e5a662 最小二乗法 2023-06-25 00:03:05
Linux Ubuntuタグが付けられた新着投稿 - Qiita 【AWS CDK】WSL2 Ubunt環境上にAWS CDK v2環境を構築する https://qiita.com/tmiki/items/517996dde5a8a7341aac awscdk 2023-06-25 00:05:42
AWS AWSタグが付けられた新着投稿 - Qiita AWS Amplifyで簡単にToDoアプリ開発 https://qiita.com/minamoto-shunsuke/items/633e5bdd32856e5cc7f4 awsamplify 2023-06-25 00:40:10
Git Gitタグが付けられた新着投稿 - Qiita 【Git】Gitで使用するエディタの設定方法 https://qiita.com/P-man_Brown/items/aa7f6af8918d5d2a2952 giteditornanog 2023-06-25 00:28:42
海外TECH MakeUseOf How to Implement Real-Time Video Stabilization Using OpenCV https://www.makeuseof.com/opencv-real-time-video-stabilization-how-to-implement/ clever 2023-06-24 15:01:18
海外TECH MakeUseOf The Best PayPal Alternatives for Teenagers Under 18 https://www.makeuseof.com/tag/paypal-alternatives-teenagers/ paypal 2023-06-24 15:01:18
海外TECH DEV Community I’m stoopid! So I code in “easy mode”. https://dev.to/noriller/im-stoopid-so-i-code-in-easy-mode-48dg I m stoopid So I code in “easy mode I can t even speel stoopid left…and yet…You might be wondering why I say this but the main reason is I think that in general “programming is easy So either I m doing something really wrong or maybe I m just cheating by using the “easy mode It s too much to think aboutLet s start with everything before you start typing the “hello world The more you think about “decoding the code the less you can spend on what the code is actually doing I use VSCode and will show some extensions I use probably most of the bigger IDE has those or a similar one I m also fullstack and working usually with JS TS only so I ll show extensions for the front and back and or JS TS but unless you re using some esoteric language or maybe creating a new one then you probably will have extensions for that language Which are functions constants variables and classes… Whenever I open code with my settings I instantly know what is a function const class…In my case Dracula does that But there are themes that don t make that kind of distinction and when everything is the “same color then that means you have to actually think and know which is which Other colors and related thingsI also use the colorized brackets option before I used an extension for that because it shows me exactly where things start and end coupled with Indent Rainbow Then you have Peacock if you need multiple workspaces open ex front and back And if you need multiple workspaces or have lots of projects then you probably want Project manager For HTML and JSX Auto Complete Tag was always a staple that it s been recently added to VSCode so it s one less extension…but Highlight Matching Tag is still useful Comments are important and Better Comments highlight it as long as you follow it And since we use it for “TODOs then Todo Tree will help you remember all of those How are you writing the code Lint and formatting are essential This means ESLint and Prettier Don t forget Trailing Spaces because while you might not see them someone will maybe git…and in a file with no other changes… But after those I also have SonarLint that catches other things and even works out of the box with any project even legacy ones that you can t really figure out how to use a lint without breaking stuff disclaimer I m not complaining…but any coincidence is entirely similarity You also have axe Accessibility Linter that will find some crude mistakes and also Code Spell Checker because you know…stoopid mistakes happen And CodeMetrics to check if your functions are getting too complex or not do tweak the numbers to your liking especially the JSX rules And finally the extension that will make you think you re as stoopid as me Error Lens I can t stress enough how important this is When you have all the other ones this one will paint your whole screen red and orange throwing every problem at your face Know your work toolIt amazes me that people use and depend on VSCode for their work and don t even bother reading the changelog of their work tool I m not even saying macros cords and other shortcuts I m saying that basically every month they release new features and people just don t bother learning what changed Again I m stoopid I usually just call the command center for a lot of things…but…I know what I can do and I m always learning about options that make me have to think less and less about things that aren t important With all of that out the way…easy mode All that remains is only what the code itself is doing A lot of things I don t need to think about because Error Lens caught a warning or error that another extension found so all that I need to do is think about business rules and how to implement them in code Code Metrics is another one that helps with this because it shows you where functions are getting too complex You while writing it might think it s “easy but your stoopid one month later self will have no idea what were you thinking then Bad memory will make you a great developerReally I have a good memory for useless things and trivia but when it comes to what I was doing last week or with the very things I m working with…out of sight out of mind Knowing that I make sure that I write code in a way my future stoopid self will understand Even then I ll sometimes find a piece of code that I have to spend a few minutes trying to figure out what it s doing…do I do what I need and call it a day NO When I have to spend time thinking about what s going on then it s clear it s time to refactor and or comment on what I just learned before I forget it again It s an investment you already spent time and it would be stoopid to make the next poor schmuck maybe you go through all of that again Wait it s only that I don t come from a CS background I “started with optimizing Excel Spreadsheets then I had one single not that great VBA for Access class and I remember asking the teacher something along the lines of “Wait you can do EVEN games with only assignment loops and ifs And that s how I started out The true hard modeIn interviews when asked about the biggest challenges I always like to say “people Because not knowing what they want or wrongly thinking they need something is always a bigger challenge than something technical An extension to that is that the biggest “technical problem I suffer is with integrating stuff usually because the docs when present aren t sufficient or sometimes are so outdated that it s a lie The boundaries between “our code and “other people s code will always be the biggest challenge and that s why being stoopid makes me think of ways to make it easier for other people be it naming stuff better commenting or maintaining good documentation I have a lot more extensions installed and there are probably a lot more settings that help me every day…if you feel I forgot something or you have a recommendation leave it in the comments And of course…if you thought about glasses and librarians when you saw “stoopid then you are right 2023-06-24 15:30:52
Apple AppleInsider - Frontpage News Daily deals: $799 M1 MacBook Air, $749 Apple Watch Ultra, $115 Samsung T7 2TB Portable SSD https://appleinsider.com/articles/23/06/24/daily-deals-799-m1-macbook-air-749-apple-watch-ultra-115-samsung-t7-2tb-portable-ssd?utm_medium=rss Daily deals M MacBook Air Apple Watch Ultra Samsung T TB Portable SSDToday s top deals include off an M Pro inch MacBook Pro off Ninja Foodi TenderCrisp pressure cooker a Honeywell Home day programmable thermostat with Wi Fi and more Daily Deals Get an M MacBook Air for The AppleInsider team scours the internet for high quality discounts at ecommerce stores to curate a list of top notch deals on popular tech gadgets including discounts on Apple products TVs accessories and other products We share the most valuable bargains each day to help you save money Read more 2023-06-24 15:09:07
海外TECH CodeProject Latest Articles Blazor WASM Hosted App with Cookie-based Authentication and Microsoft Identity https://www.codeproject.com/Articles/5363405/Blazor-WASM-Hosted-App-with-Cookie-based-Authentic authorization 2023-06-24 15:09:00
海外科学 NYT > Science U.S. Intelligence Report Finds No Clear Evidence of Covid Origins in Wuhan Lab https://www.nytimes.com/2023/06/23/us/politics/covid-lab-leak-wuhan-report.html U S Intelligence Report Finds No Clear Evidence of Covid Origins in Wuhan LabA declassified report says that the illnesses of three laboratory researchers in do not support or refute the theory that the virus that causes Covid could have slipped out of a lab 2023-06-24 15:58:45
ニュース BBC News - Home Route to Scottish independence must be lawful - SNP leader Humza Yousaf https://www.bbc.co.uk/news/uk-scotland-scotland-politics-65998210?at_medium=RSS&at_campaign=KARANGA Route to Scottish independence must be lawful SNP leader Humza YousafThe SNP leader says if his party wins a majority of general election seats he will call for the legal means to hold a democratic referendum 2023-06-24 15:21:25
ニュース BBC News - Home Titan sub: Investigators board Polar Prince as it returns to harbour https://www.bbc.co.uk/news/world-us-canada-66008843?at_medium=RSS&at_campaign=KARANGA implosion 2023-06-24 15:47:59
ニュース BBC News - Home Tributes to Carlisle footballer who died in Ibiza fall https://www.bbc.co.uk/news/uk-england-cumbria-66009148?at_medium=RSS&at_campaign=KARANGA balcony 2023-06-24 15:36:47
ニュース BBC News - Home Women's Ashes 2023: Tammy Beaumont breaks record for highest England women's Test score https://www.bbc.co.uk/sport/av/cricket/66008288?at_medium=RSS&at_campaign=KARANGA Women x s Ashes Tammy Beaumont breaks record for highest England women x s Test scoreWatch the moment Tammy Beaumont moves to runs to break Betty Snowball s year old record of for the highest Test score by an English woman on day three of the Women s Ashes Test at Trent Bridge 2023-06-24 15:05:44

コメント

このブログの人気の投稿

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