0
votes
1answer
5 views
Creating a feed from a list of links in yahoo pipes
Hi,
I was trying to get a custom RSS feed to use with the MiroTV app - an application that gets video from an RSS feed and download it so you can watch it in your pc. I mostly use MiroTV to watch …
0
votes
3answers
480 views
C# Stream text/data to zip/gpg instead of passing app a filename?
I currently have an app written in C# that can take a file and encrypt
it using gpg.exe
What I'm trying to do is, instead of
1. Creating a file (from database queries usually)
2. encrypting the …
1
vote
2answers
15 views
Handling streamed data via pipes
A Win32 application (the "server") is sending a continuous stream of data over a named pipe. GetNamedPipeInfo() tells me that input and output buffer sizes are automatically allocated as needed. The …
1
vote
2answers
52 views
Performance of sockets vs pipes
I have a Java-program which communicates with a C++ program using a socket on localhost. Can I expect to gain any performance (either latency, bandwidth, or both) by moving to use a native OS pipe? …
0
votes
0answers
41 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 - …
0
votes
0answers
54 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
3answers
59 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
141 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 …
1
vote
1answer
31 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
31 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
17 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 …
0
votes
1answer
30 views
Regulate image sizes in Yahoo Pipes output
When combining multiple blog feeds into one using Yahoo Pipes, is it possible to control the image sizes in the output?
I've seen the existing operators and filters offered, but there doesn't seem to …
0
votes
1answer
63 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
60 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
54 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 …
