Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

There are no flags in yes(1) ergo there's no need for "flag parsing". yes(1) takes one optional string as input, and that's exactly what argv provides. I'm not sure what you think "flag parsing" is bringing to the table here, but checking the array of command line parameters and accessing an element is pretty far from a hack.

If it's more comfortable you can also declare argv as an array of character arrays e.g. char *[], but that won't change the line count.



It's a lose for C either way. Either it cant parse flags, or we remove that requirement, and my code goes from 9 lines to 6.


The requirement to parse flags is your own. You can remove it from your go program. You only need to parse one string, if it exists.


[flagged]


C can parse flags and there is no requirement here for it to parse flags.


It's a lose for C either way. Either it cant parse flags, or we remove that requirement, and my code goes from 9 lines to 6.


C can obviously parse flags. See for example the plethora of C software that does so, such as many things from GNU Coreutils.

There is no requirement to parse flags for the basic functionality of yes. You implemented that yourself. You can remove your own requirement whenever you want. You don't need to parse a flag, at most you need to parse a string from the command line arguments.

I wonder at this point how you define "flag".


It's a lose for C either way. Either it cant parse flags, or we remove that requirement, and my code goes from 9 lines to 6.


Who cares though? We get it, you prefer golang, congrats?


I am not seeing a technical argument here against the previous points, only one against the commenter:

https://wikipedia.org/wiki/Ad_hominem


But you're also arguing in bad faith. Your go code is shorter, okay, but it doesn't do the same thing as the GNU yes code, so what point are you trying to make? I can also link to philosophy 101 wikipedia articles:

https://en.wikipedia.org/wiki/Straw_man


I think I have made it pretty clear already, but here it is again:

the Go code has MORE functionality (flag parsing) with LESS code. yes its not as fast, and yes the executable is larger, but for many, thats a good tradeoff for the extra standard library features, and the reduced LOC/code complexity. sadly as of yet, I haven't seen any cogent technical arguments against my points thus far.


> the Go code has MORE functionality (flag parsing) with LESS code.

Your code does not have more functionality than GNU's yes as written. It's less code you have to write because of the flag parsing code that has already been written, and it's incompatible with GNU's yes because yours requires -m to change the message.


> Your code does not have more functionality than GNU's yes as written.

it has flag parsing


Which does not do functionally more than the C version that was shared by inferiorhuman.


yes it does


For an extremely simple utility like the 'yes' command that is compiled and distributed as a binary to trillions of installations what metric do you consider more important, size and speed? Or lines of code in the source? Think about this in engineering terms, everything is a tradeoff and it's your job to come up with the best solution.

I'm genuinely curious to hear your argument.


> I'm genuinely curious to hear your argument.

previous comments have demonstrated this not to be the case, so I will stand by my previous points. I have already made over 10 comments on this one topic, so if any aren't already convinced, they never will be, either because they disagree with the tradeoff, or they just have stockholm syndrome for C.


You've demonstrated nothing and made no discernable argument to anyone. Best of luck in the job search my friend.


I think anyone who has the ability to read and comprehend text would disagree with the comment I am replying to. Best of luck in the high school level reading class my friend.


Also, take a look at openbsd's version of yes

https://github.com/openbsd/src/blob/master/usr.bin/yes/yes.c


more lines of code, and still doesn't have flag parsing


There are no flags to parse. Why are you adding flag parsing? This would fail a junior interview Steven.


when people resort to doxing, it shows how truly pathetic they are. I pity those people.




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: