You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On line 37 keyboard should not print app, it should print cmd (or at least that is what it looks like it needs to be, the portions that need to be filled in by the user are not clearly identified in this code which is extremely confusing, especially to someone who may not be very good with code).
Also, line 76 through 84 should be a lot more clear on what should be filled in by the user. (eg line 79: "for /f "tokens=1,2,3*" %%i in ('netsh int show interface') do ("); should not be in the code itself, but the most common one should be put in and then comments on the side should be added for what to do in different situations (unless this is part of the code and I am being very dumb).
The main idea here is that the code should be much more simple to fill in the information that is needed by the user, similar to how Teensyterpreter does it (in a strange way albeit). This code uses almost half the lines and I really want it to be the best it can be (or again, I am just being dumb and thinking about the coding from a different way which I really hope I am not because that would be embarassing).
The text was updated successfully, but these errors were encountered:
On line 37 keyboard should not print app, it should print cmd
app on line 37 is a variable. More specifically, a String parameter that represents the app you want to open. This method is used on line 70 to start the Command Prompt. There, it sends the word "cmd" to this method. So actually, the word cmd is printed instead of app.
Also, line 76 through 84 should be a lot more clear on what should be filled in by the user.
...
The main idea here is that the code should be much more simple to fill in the information that is needed by the user
This application does not require any user input, so it doesn't have to be clear. This is meant to be run on an Arduino compatible USB controller that is connected to a Windows computer (or OS X, but that doesn't matter right now). most USB controllers really only have one place for user input, and that's a button used to start the program.
(unless this is part of the code and I am being very dumb)
Don't be so hard on yourself. You'll get 'em next time.
On line 37 keyboard should not print app, it should print cmd (or at least that is what it looks like it needs to be, the portions that need to be filled in by the user are not clearly identified in this code which is extremely confusing, especially to someone who may not be very good with code).
Also, line 76 through 84 should be a lot more clear on what should be filled in by the user. (eg line 79: "for /f "tokens=1,2,3*" %%i in ('netsh int show interface') do ("); should not be in the code itself, but the most common one should be put in and then comments on the side should be added for what to do in different situations (unless this is part of the code and I am being very dumb).
The main idea here is that the code should be much more simple to fill in the information that is needed by the user, similar to how Teensyterpreter does it (in a strange way albeit). This code uses almost half the lines and I really want it to be the best it can be (or again, I am just being dumb and thinking about the coding from a different way which I really hope I am not because that would be embarassing).
The text was updated successfully, but these errors were encountered: