10,631 questions
Tooling
1
vote
2
replies
40
views
tcl tk: add command with multiline label
I created a menubar with several menubuttons in tcl/tk. Then I wanted to add several commands. The text ist normally short enough for one line, but there is one text which is longer. Is there any way, ...
3
votes
1
answer
189
views
Pipes Aren't Working: C Programming in the Windows Console [closed]
I've written this small program in C, which intends to read stdin line-by-line and finally echo each line back to stdout. It is designed to stop reading input when either EOF is detected or a blank ...
0
votes
1
answer
57
views
Why only the netcat server that was run first receives connection if there are 2 netcat servers running on the same hostname and port [closed]
I'm on a debian-based Linux distro and currently testing and learning about some networking stuff.
So I have 3 terminal open, the first 2 I will run this command to set up 2 netcat servers on port ...
-1
votes
2
answers
172
views
Compare two big folders quickly in Linux, without caring about exact file diffs [closed]
So, I have got two directories personal_files and personal_files_oldcopy
Through some file processing, I am not sure if both directories contain the same structure, or additional / missing files are ...
0
votes
0
answers
43
views
Emacs interactive functions that generate lisp-errors with some names when using Ivy and lsp
Many interactive functions generate lisp errors depending on the function name when using ivy and lsp and debugging it is difficult (in part because of the bytecode compile-function references). This ...
2
votes
1
answer
75
views
Translating bot.tree.commands
I saw this in several bots and I also wanted to test it on my own, that when bots had a simple bot.tree.command command such as /play, the further parameters of this command, i.e. description and its ...
2
votes
2
answers
99
views
How to hide files from find-file in emacs?
What I need to do is simple: I have A-f bound to find-file in emacs, but want to hide specific files that I do not care about. I have them hidden in dired already using this config:
(setq dired-omit-...
0
votes
1
answer
65
views
Command not working in DataTemplate (CollectionView) when in ContentView
I have a ContentView, this will display many things, one being a CollectionView (List<Person>) with a DataTemplate, this DataTemplate will Bind to a Person, when I display this Template, there ...
0
votes
0
answers
34
views
Symfony 6.4 controller receives blank response from command
I have a Symfony 6.4 controller that accepts a JSON, retrieves the values from the JSON, sets the arguments and calls a Symfony Command with these arguments. The Command executes certain API calls and ...
1
vote
0
answers
86
views
Some Git commands show no output in Windows 11 command prompt
Around a month ago Git stopped displaying output in my Windows 11 command prompts. Some commands are fine (such as git status), but a few examples that are not working are git log, git diff, and git ...
0
votes
0
answers
103
views
How to pass command line arguments from a tcsh alias to a bash script
At the bottom of my bash script, after all of my needed bash aliases and functions have been defined, I've got just a single line to be executed when the script is run:
echo "$# args: $@ passed ...
0
votes
0
answers
57
views
Why isn't Hello World being printed in the vscode terminal? [duplicate]
Im learning the basic's of building and running c++ projects and have made a main.cpp file in the src and a tasks.json in the .vscode folder when seen from the root. Why isnt "Hello World being ...
0
votes
2
answers
71
views
Run a .bat file in another folder
I have a batch file called 'Rename.bat' which renames files with the .cbz extension to the .cbr extension. The current code is:
pushd %~dp0
forfiles /S /M *.cbz /C "cmd /c rename @file @fname.cbr&...
0
votes
0
answers
24
views
Windows Command scripts bulk update
I have more than 1'000 Windows command script files. In these scripts, I want to update with Ping ip address.
For example:
PING 172.10.26.1 -t.
Similarly I need to update 1000+ IP address each one of ...
-2
votes
1
answer
100
views
Is there any way to send a code to a batch file via Java?
I've been trying to run a batch file (run.bat for a minecraft server) via Java console.
while i did manage to figure out a way to run the batch script on java, it seems that i cannot send commands ...