This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [... context omitted ...] | |
| > I still see a lot of comments in the code that are restating things said or implied in the commit message. Explain to me what if anything the comments add to you as coding agent. | |
| What the comments do for me | |
| Less than you would think, and never the ones I was writing. | |
| When I read a file I have the whole file in context, so a comment restating the line below it is dead weight — the same as for you. What I | |
| lose that you have is the ability to walk away and come back with the machine in mind. So the comments that help me are the ones that name a | |
| fact outside this file: vTaskDelayUntil does not wait when its wake time is past; closing the flash hands the QSPI back; %lu is right on a |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [Unit] | |
| Description=hitch | |
| After=syslog.target network.target | |
| [Service] | |
| Type=forking | |
| #Restart=on-failure | |
| LimitNOFILE=131072 | |
| Environment="HITCH_OPTIONS=--config /etc/hitch/hitch.conf" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #! /usr/bin/perl -CSDAL | |
| use strict; | |
| use warnings; | |
| use JSON; | |
| use LWP::Simple; | |
| use POSIX qw(strftime); | |
| use Data::Dumper; | |
| use utf8; |