Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

25
votes
8answers
7k views

How to cartoon-ify an image programmatically?

Maybe you have noticed, but cartoon-ifying your photos is the latest rage on the internet. My boss now wants our product, which works with photos and videos of people, to cartoonify them. So I need an ...
13
votes
1answer
83 views

Is it possible to prefill a input() in Python 3's Command Line Interface?

I'm using Python 3.2 on Ubuntu 11.10 (Linux). A piece of my new code looks like this: text = input("TEXT=") Is it possible to get some predefined string after the prompt, so I can adjust it if ...
8
votes
2answers
330 views

Is there a Python equivalent for the Perl module Term::VT102?

In Perl there is a very handy module, Term::VT102, which allows you to create a screen in memory. This is very handy for scraping purposes since you can keep track of all the changes to portions of ...
5
votes
3answers
107 views

The way to distinguish command-mode and insert-mode in Bash's Vi command line editing

I'm always little bit confused when bash in vi-mode is switched to insert-mode, because it doesn't give any tip about used mode (command or edit). Is there any way to distinguish mods? May be ...
3
votes
7answers
112 views

Considerations when creating a command line interface

There are lots of GUI best practices. I am looking for best practices when developing a command line program. For example, if I were creating a backup program what is best? Consideration 1, ...
3
votes
8answers
442 views

Java command-line launchers

I am working on a .jar file library to implement a bunch of helper classes to interface a PC to a piece of external hardware. I'll also add some simple applications, either command-line or GUI, to ...
3
votes
5answers
3k views

How to handle a ctrl-break signal in a command line interface

Before I begin, I want to clarify that this is not a command-line tool, but an application that accepts commands through it's own command-line interface. Edit: I must apologize about my explanation ...
2
votes
4answers
59 views

What is a clean / recommended way to terminate a perpetually-running command-line Java application?

More specifically, I have a multithreaded command line Java application which runs and collects data until the user terminates it. The obvious way for the user to terminate it is by pushing ...
2
votes
4answers
144 views

Can I use interactive command line for Squeak/Pharo development?

I tried to install Squeak/Pharo into Ubuntu server machine. ./squeak -vm-display-null ./Pharo-1.2.2-12353/Pharo-1.2.image It executed, but there was no command-line. No way to use without GUI?
2
votes
2answers
79 views

How to column-ify an output from a certain program?

I have a program that generates and outputs a sequence of simple sample math homework tasks, like: 1 + 1 = ... 3 + 3 = ... 2 + 5 = ... 3 + 7 = ... 4 + 2 = ... a sequence can be quite ...
2
votes
5answers
428 views

how to make a Command Line Interface or Interpreter in python

guys. I have seen some CLI questions here, but I still want to ask this question for more detailed answers. I have already developed class1.py, class2.py, etc. with functions implemented inside each ...
2
votes
2answers
203 views

Add dependency to existing pom.xml via shell

Is there a way to add dependencies to an existing pom.xml via shell script? Something like: mvn dependency:add -DgroupID=com.acme -DartifactId=project [Update] Clarified that I want to add to an ...
2
votes
6answers
338 views

Renaming the trash command of trash-cli?

I'm the developer of the trash-cli project. The trash-cli project is a opensource implementation of the FreeDesktop.org Trash Specification that provides a command line interface to manage the ...
1
vote
2answers
72 views

Using Amazon AWS as a development server.

I'm still cheap. I have a software development environment which is a bog-standard Ubuntu 11.04 plus a pile of updates from Canonical. I would like to set it up such that I can use an Amazon EC2 ...
1
vote
1answer
75 views

C++ Command Line Argument Identification

I need to be able to tell if the final argument in my command line is surrounded in double quotes or not. If it's in double quotes, I treat it as a string. If it's not, I need to treat it as a file ...
1
vote
2answers
22 views

How can I get the dir of a php script that's running in CLI?

I have a CLI PHP script and I need to know what directory it's currently running in. Because of some operations, including getcwd(), the directory has changed a bit. How can I do this?
1
vote
2answers
369 views

Interactive GUI-like command line merging tool (like BeyondCompare or WinMerge) for Linux

May be something that uses reverse-video to show the differences.
1
vote
1answer
124 views

How do I communicate with an unrelated process using its command line interface?

I'm trying to write a C++ program in Linux that communicates with a chess engine via its command line interface. Chess engines have standard protocols like UCI so, if I could write this, I could use ...
0
votes
1answer
72 views

How to add input to command line prompt from wxPython?

So I have this code on python, that retrieves output from console when executing shell commands. def OnClick(self, event): cmd = self.command.GetValue() if cmd: input, output, errors ...
0
votes
1answer
138 views

Tfs2010: How do I get the server path of the source file in a rename operation using a pending change in a shelf?

When I perform "tf rename $/Project/Main/File1.cs $/Project/Main/File2.cs" in Tfs2010, I know that once I check in there will be a "rename" change on the $/Project/Main/File2.cs slot, and a "delete, ...
0
votes
1answer
100 views

C++ generic realtime text interface library

Silly question here, I'm looking for a generic text based API for command-line programs. Something like ncurses I think would fit the bill. In an ideal world, I would like something portable, between ...
0
votes
2answers
639 views

How can I use MS SQL Server from the Mac OS X Terminal?

I use a Mac to develop web apps. Our runtime is Java, our web server is Jetty, and our IDE is Eclipse. So our whole stack can be used from Mac and Windows natively … with the exception of our ...
0
votes
2answers
207 views

Creating old fashion console form using Python

How can I write a console form looking like the one seen on the screenshot using python. This means that I can write something like print(x=6, y=2, "z/VM ONLINE") This code should place the text ...
0
votes
2answers
168 views

how to make a Command Line Interface from a given data model used for GUI

HI, guys. I am developing a GUI to configure and call several external programs with Python and I use wxPython for the GUI toolkits. Basically, instead of typing commands and parameters in each shell ...
0
votes
2answers
128 views

How to define the help of the CLI program in the __doc__?

I would like to do something like this : def main(): """ Display Information about a Google Calendar -u --user login Google Login -p --pass password Google Password -d ...