0
votes
1answer
15 views
Inspect network traffic from simple linux cli app
I'm running a small app on the command line, and I'm trying to watch the (http) network traffic it creates.
Is there some kind of wrapper program (like 'time', or 'watch') which c …
0
votes
2answers
95 views
Run a PHP script every second using CLI
Hello,
I have a dedicated server running Cent OS with a Parallel PLESK panel. I need to run a php script every second, that updates my database. These is no alternative way timewi …
1
vote
4answers
129 views
How to use managed code from unmanaged code?
How do I call a .NET code from native C++ (unmanaged code)? I want to expose .NET code to my unmanaged (C++) application and then use them. More specifically, I want to call C# fro …
0
votes
2answers
93 views
Why does not C# support operator overloading with pass by reference?
Is this a CLR restriction or a language design decision? I tried to do it in C++/CLI, of course where it works because the need to support native c++:
public ref class Test
{
…
7
votes
7answers
626 views
Can one executable be both a console and GUI app?
I'm wanting to make a c# program that can be run as a CLI or GUI app depending on what flags are passed to it. Can this be done?
I have found these related questions but they don' …
2
votes
6answers
272 views
Advantages of PHP CLI?
What are the benefits of PHP's CLI over other scripting languages/environments such as VBScript or even windows scripting?
0
votes
3answers
35 views
MySQL 5.1 command line problem: delete last char doesn’t work
I can't delete the last character in a given line in the MySQL CLI, if I press "END", it will jump on the character and if I press "DEL", it will delete the char before that (like …
0
votes
0answers
13 views
How to work with multiple word resources in Zend_Tool
So I've got a controller that I want to be camel cased:
MisterFoobarController
So I created it like this:
zf create controller mister-foobar
which created something like Mist …
2
votes
2answers
124 views
Reading output from console program
I need to read output from native C++ console application in my C++/.NET. There are many articles about this, but most wait until the process ends to read the output, which I don't …
1
vote
1answer
64 views
How to wrap a CLI program in Python (keeping the interactivity)?
Hello everybody,
I'd like to write a wrapper for an interactive CLI Program (the Asterisk CLI).
Basically, I need to keep the interaction with the CLI (including tab-completion) b …
0
votes
2answers
36 views
how to specify the terminal width in mysql CLI
I'm using the mysql CLI, however the result displays always wraps around on my terminal screen. is there any way to specify to mysql the size of my terminal screen?
20
votes
4answers
732 views
Why does my C# array lose type sign information when cast to object?
Investigating a bug, I discovered it was due to this weirdness in c#:
sbyte[] foo = new sbyte[10];
object bar = foo;
Console.WriteLine("{0} {1} {2} {3}",
foo is sbyte[], f …
0
votes
1answer
50 views
How can I make Twitter from the terminal display Hebrew characters correctly?
I've been using the Perl solution for Twitter via Terminal: IRSSI + TWIRSSI for the past couple of days. Amazing. The feeling so nostalgic yet so futuristic; beautiful. However, on …
3
votes
3answers
145 views
How to collect HDD size and available or used space in linux cli?
I'm trying to find some sort of command or regex to get the size and available or used space of a hard drive in linux.
At the moment I'm using this;
df -h
and getting something …
0
votes
0answers
11 views
Generating thumbnail for various files by wrapping Linux CLI program
There are various programs available for generating thumbnails for different file formats. For PDF there is ImageMagick, FFmpegthumbnailer for movies and so on. Does anyone know ab …
