0
votes
0answers
8 views
CreateProcess with redirection access denied on the output pipe
Hello:
I have a simple code running in a DLL called from MFC application. Generally it implements the example that is shown in msdn article - …
1
vote
3answers
55 views
Python popen wont work with block devices
I am wring a small forensic app which looks like this so far
import time, os,sys
def getter():
filename = sys.argv[1]
print "File Entered: " + filename
os.system('file ' + filename)
…
1
vote
5answers
129 views
Pipe communication C++
I´m writing two litle c++ apps that must communicate. First one will be a service which, every once in a while, must alert the user for something. Since a service cannot create windows I designed the …
0
votes
1answer
27 views
python web app logging through pipe? (performance concerned)
I'm writing a web app using python with web.py, and I want to implement my own logging system. I'd like to log detailed information about each request that come to python (static files are handled by …
0
votes
1answer
12 views
Howto pipe raw PCM-Data from /dev/ttyUSB0 to soundcard?
Hi
I'm working currently on a small microhpone, connected to PC via an FPGA. The FPGA spits a raw datastream via UART/USB into my computer. I'm able to record, play and analyze the data.
But I can't …
1
vote
1answer
25 views
Using Windows named pipes from inside activeX control - Possible?
Hi All,
I am starting to design a DMO to run from inside a windows media player activeX control in Internet Explorer.
is there any reason why using windows named pipes from inside the DMO wouldn't …
0
votes
1answer
53 views
Piping Cygwin into a Python program
Hello guys,
As a i'm new to the whole Piping thing and Python I had recently encountered a problem trying to pipe Cygwin's stdin & stdout into a python program usin Python's subprocess moudle.
…
0
votes
3answers
53 views
How to use Regex to Find & Replace html table tags?
I have blocks of code that look like this:
<table border="0"><tr><td><img …
3
votes
4answers
45 views
How can I pipe the output of a program that can only write to a file (and not to STDOUT)?
I'm trying to write something like Perl Audio Converter, so I need to be able to decode every relevant audio format to wav (PCM) and then encode wav to every relevant audio format. I'd like to do this …
0
votes
1answer
37 views
How can a console application (e.g. Java) recognize the source of the ‘standard input’ stream?
If I run 'python' on the linux command line, and I don't provide any command line arguments, the program displays a welcome message and waits for user input. I would assume that under the hood, the …
0
votes
0answers
49 views
Why doesn’t “find -print0” work in Cygwin under Vista? [closed]
I'm writing a simple shell script:
find datafiles/ -type f -print0 | xargs -0 md5sum > datafiles.md5
In Cygwin under Vista, it just sits there and nothing happens.
It works fine on Linux.
What …
1
vote
1answer
23 views
is there a way to import/export a pipes source in text/xml format?
I'd like to save a copy of some of my pipes offline before I go to edit them, and possibly reload them from an external source again in future.
Can this be done?
0
votes
0answers
45 views
regex for all characters on yahoo pipes
I have an apparently simple regex query for pipes - I need to truncate each item from it's (<img>) tag onwards. I thought a loop with string regex of <img[.]* replaced by blank field would …
0
votes
0answers
27 views
How do I use Regex in Yahoo Pipes?
I am not Yahoo Pipes user but I do not know anything about programming.
I use Yahoo Pipes to generate RSS feeds from several websites that allow me to use their feeds on my site. What I need is to …
0
votes
3answers
143 views
Linux Pipes as Input and Output
I would like to do the following inside a C program on a Linux os:
Create a PIPE using a syscall (or 2)
Execute a new process using exec()
Connect the process's STDIN to to the previously created …
