投稿時間:2023-08-17 07:12:52 RSSフィード2023-08-17 07:00 分まとめ(13件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
技術ブログ Developers.IO [アップデート]AWS Backup Audit Manager の管理をメンバーアカウントに委任できるようになりました https://dev.classmethod.jp/articles/administer-delegated-member-account-in-backup-audit-manager/ awsbackup 2023-08-16 21:55:51
海外TECH Ars Technica An Iowa school district is using ChatGPT to decide which books to ban https://arstechnica.com/?p=1961316 chatgpt 2023-08-16 21:34:44
海外TECH Ars Technica FDA finally nabs alleged quack who claimed silver vibrations cure COVID https://arstechnica.com/?p=1961394 charges 2023-08-16 21:07:53
海外TECH MakeUseOf How to Add a Manager to Your YouTube Channel https://www.makeuseof.com/how-to-add-a-manager-youtube-channel/ channel 2023-08-16 21:30:26
海外TECH MakeUseOf How to Play Android Games on Windows 11 With Google Play Games https://www.makeuseof.com/android-games-windows-11-google-play-games/ windows 2023-08-16 21:21:12
海外TECH MakeUseOf The Best Apple M1 Devices https://www.makeuseof.com/best-apple-m1-devices/ apple 2023-08-16 21:15:23
海外TECH MakeUseOf How to Easily Fix the "Server IP Address Could Not Be Found" Google Chrome Error https://www.makeuseof.com/server-ip-address-could-not-be-found-google-chrome-error/ How to Easily Fix the amp quot Server IP Address Could Not Be Found amp quot Google Chrome ErrorIs Google Chrome having trouble loading web pages on Windows Read the solutions in this article to fix it up and get back online 2023-08-16 21:15:23
海外TECH MakeUseOf Safeguard Your Python Scripts Against Reverse Engineering With Pyarmor https://www.makeuseof.com/safeguard-python-scripts-with-pyarmor/ actors 2023-08-16 21:00:26
海外TECH DEV Community Getting Started in a New Codebase https://dev.to/abbeyperini/getting-started-in-a-new-codebase-e7b Getting Started in a New CodebaseWhether it s contributing to open source or starting a new job the first step is familiarizing yourself with the codebase and it can be daunting Here are some tips to help you hit the ground running Don t PanicEven if everything about the codebase is new to you the first step is always the same Make a local copy of the application on your computer Try to Get it Running LocallyFor once Yoda is wrong there is try and do in this step If you re unable to get the project running based on the information you have you can help mitigate the problem now before the next developer is onboarded Plus regardless of the outcome you ll still move on to steps and Ideally there should be a file called README in the root directory of the application This should have details about the project and instructions on how to run the codebase If you re using GitHub and visit the repository page this is the file displayed after the file directory If there s no README or documentation try to find the run scripts Manifest files are a good place to start For example in an application using Node js npm or yarn the manifest file is called package json In addition to metadata about the project the file may have a scripts section scripts build next build start next build amp amp start test jest watchAll verbose These scripts are run with your package manager in the terminal like npm run start or yarn run test If the manifest file doesn t exist or doesn t have a run script try executing outermost files that are named index or have the same name as the directory or project If you navigate to the directory the file is in you can execute a file in the terminal like index js Ideally projects like this will also have a help flag Executing index js help may print out helpful instructions including a list of commands you can use If you re on a mac or using linux you can also try man lt command gt This will print out a user manual for the command If it exists it ll have more information than the help flag did If it doesn t exist you ll see No manual entry for lt command gt Running man index js will just print out the file itself If you re on Windows you ll have to use a package like groff You may even want to use groff with macOS or linux it displays the manual in the browser instead of in the terminal Look for DocumentationDeveloper focused documentation may exist outside the project It could be in the GitHub repository wiki a company owned docs site or a Google Doc that s sent to you on your first day Get access to a deployed environment as soon as you can You ll learn a lot playing around with a working version with test data You can also find value in documentation for users or other teams within the company More than once I ve learned about a feature or new ways to use a feature from the user manual These are also less technical so they are easier to absorb when you re already taking in a lot of information There are multiple other ways a project is documented that people don t think of as docs This can be helpful at companies that unfortunately don t prioritize documentation For example tests are usually a one sentence description of functionality They often describe what the app is supposed to do as well as what it s not supposed to do Even if no developer on the project has ever written a descriptive commit message git and GitHub will still have useful documentation Check out branches to see if there s a branch naming convention Read old pull requests to get an idea of the code review process git log and git blame will give you an idea of feature and fix timelines Whether the team uses GitHub Issues JIRA or another work tracking system I highly recommend searching to see if a ticket exists before you complain about something Tickets will also give you a good idea of team goals users complaints bottlenecks and processes Talk to PeopleAsk developers what they wish they knew when they started Ask what tools e g browser extensions editor plugins state inspectors etc they find useful for this project Ask to pair with other developers on their work or as soon as you hit your first roadblock If the idea of asking for help with your code makes you nervous check out Virtual Coffee s Guide to Asking Questions About Your Code If you hear about a bug fix ask the developer working on it what they checked first This is how you find out where the useful logs are and which parts of the app are most flaky Schedule meetings with team members who aren t developers The Product Manager can tell you the big goals for the project The Product Owner can tell you what s prioritized for the short term QA can tell you what s flaky what kinds of bugs are high priority and if they need something fixed to help them catch more bugs If you re working in open source join any communities related to the project Listening to the maintainers other contributors and community forums can tell you a lot about what part of the app needs more love Know the BusinessUnderstanding the code is much easier with context This is especially true when it comes to variable names It behooves you to understand common industry terms and acronyms It may seem like it s outside of your role to understand the industry However if you hear about a service a direct competitor just started providing and know how to implement it in your product that s a big win to bring to your boss In highly regulated industries like healthcare some industry knowledge could help you catch a vulnerability in the product design early That could save the company a ton of money and looks great when you go to negotiate a raise or interview somewhere else At the very least it ll be easier to understand meetings and predict edge cases Mental ModelsA great way to conceptualize any application is creating some high level mental models I really love drawing flow charts and diagrams for applications Tools like miro and whimsical make it easy and shareable These can be as simple as a tree of components or files and how they relate to each other Flow charts following the flow of data are super useful especially if there are any integrations micro services or pub sub You don t just have to use drawings to create these mental models It s common to write out what each API endpoint does including request and response structure Once you re finished ask a developer who is more familiar with the project if you missed anything Break ItRun into a long function you re having trouble grasping Delete a line See what happens Repeat Unable to follow the data flow Use breakpoints in a debugger Feed the app bad data I dare you Remove some props passed to a component just to see what errors pop up Read the logs you ve created with your mess If you ve seen the app break that way before it s easier to narrow down what part of the app is broken when a bug comes up Fix ItEven senior developers have to get used to the process in a new repository Just fixing a typo will allow you to watch the team s process from ticket creation all the way to deployment Give It TimeLearning the codebase feels URGENT but you can t learn everything at once With every PR you learn a little bit more so give yourself time and grace A typical expectation is six months to ramp up so if your code is getting merged in before then you re doing great ConclusionIf I missed your favorite tip for learning a new codebase tell us about it in the comments 2023-08-16 21:21:58
海外科学 NYT > Science 6 Months After the Ohio Train Derailment, Residents Are Still in Crisis https://www.nytimes.com/2023/08/16/health/east-palestine-ohio-train-derailment-crisis.html Months After the Ohio Train Derailment Residents Are Still in CrisisThe Albright family left town after a train carrying toxic chemicals derailed near their Ohio home Now they are back facing personal medical and financial crises in a newly divided community 2023-08-16 21:08:39
ニュース BBC News - Home Manchester City 1-1 Sevilla: Pep Guardiola's side win Super Cup on penalties https://www.bbc.co.uk/sport/football/66513883?at_medium=RSS&at_campaign=KARANGA sevilla 2023-08-16 21:43:41
ニュース BBC News - Home The Papers: 'Lionesses make history' and 'heist at the museum' https://www.bbc.co.uk/news/blogs-the-papers-66529248?at_medium=RSS&at_campaign=KARANGA front 2023-08-16 21:51:10
ニュース BBC News - Home Pakistan: Mob burns churches over blasphemy claims https://www.bbc.co.uk/news/world-asia-66525150?at_medium=RSS&at_campaign=KARANGA quran 2023-08-16 21:16:57

コメント

このブログの人気の投稿

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