raw

Oracle invalid character and long raws

I'm new in the Oracle world, and i'm trying to make a insert from .NET (C#) using a parametrized query. My table is: CREATE TABLE layer_mapping ( lm_id NUMBER NOT NULL, lm_layer_name VARCHAR2(50) NOT NULL, lm_layer_file LONG RAW NOT NULL, CONSTRAINT lm_pk PRIMARY KEY(lm_id) ) "INSERT INTO layer_mapping VALUES (:lm_id,...

RAW Image processing in Python

Are there any Pythonic solutions to reading and processing RAW images. Even if it's simply accessing a raw photo file (eg. cr2 or dng) and then outputting it as a jpeg. Ideally a dcraw bindings for python, but anything else that can accomplish the came would be sufficient as well. ...

casting raw strings python

in python, given a variable which holds a string is there a quick way to cast that into another raw string variable? the following code should illustrate what im after... def checkEqual(x, y): print True if x==y else False line1 = "hurr..\n..durr" line2 = r"hurr..\n..durr" line3 = "%r"%line1 print "%s \n\n%s \n\n%s \n" % (line1, ...

Help understanding linux/tcp.h

I'm learning to use raw sockets, and im trying to prase out the tcp header data, but i can't seem to figure out what res1, ece, and cwr are. Through my networking book and google i know what the rest stand for, but can't seem to find anything on those three. Below is the tcphdr struct in my includes area. Ive commented the parts a bit ...

RTF FIle and RAW Printing in Dot Matrix.

I've tried to print in a Dot Matrix Printer using this example MS RAW Example but i got all RTF Coding printed in the paper e.g {\rtf1...... Can i print my RTF file proper in the printer? Any tools making this kind of job? ...

Raw Sockets on Android

I want to create an application that runs on Android and uses Raw Sockets. I see there isn't any raw socket support in the java.net.* or the android.net.* libraries. Are raw sockets possible on Android? ...

How to send raw XML in Python?

Hi, I am trying to send raw xml to a service in Python. I have a the address of the service and my question is how would I wrap XML in python and send it to the service. The address is in the format below. 192.1100.2.2:54239 And say the XML is: <xml version="1.0" encoding="UTF-8"><header/><body><code><body/> Anyone know what to do?...

Set a OGG in raw folder as Ringtone/Notification?

Hi, I have some ogg audios in my raw folder and I'm trying to set one of them as a Ringtone (or Notification, Alarm... whatever). I've been looking at the source code of RingDroid and I can see how is this done using the ContentValues and MediaStore, but in all the examples I've seen, the audio files is in the SDCard. Is it possible t...

Using java with android how can I get the path of my resources files?

I added some audio files to the res file. first I created a raw dir and then I added the folder with the audio files. How can I get each file path? (I want to use the path to play this audio files) I found that I need to use classLoader.getResource but I don't understand how. what is the argument for this function? ...

How to make a simple grafical interface in C# for DCRAW

Hello, i have a problem. I need to make a simple GUI in Visual Studio 2008 using C Sharp that uses a Dave Coffins DCRAW written in C but I don't know how to "connect" dcraw.c (DCRAW source code) file with Csharp... UFRAW is the example of grafical interface that uses dcraw but I can't find it's source code. My application should be very ...

How to display a RAW image into a Picturebox by clicking on Button

How can I display a RAW image into a Picturebox by clicking on a Button in a Visual Studio 2008 using C#. RAW images can be read by DCRAW.C file and I don't know how to "connect" dcraw.c + Picturebox + Button... Thx! ...

Injecting raw TCP packets with Python

Hello! What would be a suitable way to inject a raw TCP packet with Python? For example, I have the payload consisting of hexadecimal numbers and I want to send that sequence of hexadecimal numbers to a network daemon: so that if I choose to send 'abcdef', I see 'abcdef' on the wire too. But not '6162636566' as in the case of: new = soc...

SQL server 2005 FOR XML RAW performance/behaviour issue.

I have a really weird problem that baffled even seasoned DBA's here where I work. I'm trying to troubleshoot performance problems with this legacy app that was originally developed with VB/SQL 2000. Most clients using this app with SQL 2000 don't have any performance issues. Some clients have SQL 2005 and have really bad performance exe...

Sybase IQ: How to create a DBSPACE with raw device?

I'm on Sybase Iq 15.1 and try to add a dbspace to a demo database, using a raw device on Linux. I always get SQL error 1010000, file already exists: CREATE DBSPACE KLMTEST USING FILE DF1 '/dev/disk/by-id/scsi-1HITACHI_730109670008' IQ STORE; Could not execute statement. The file '/dev/disk/by-id/scsi-1HITACHI_730109670008' already exis...

How do I log the raw HTTP headers with a PHP script?

I'm using a cURL script to send POST data through a proxy to a script and I want to see what raw HTTP headers the cURL script is sending. List of things I've tried: echo curl_getinfo($ch, CURLINFO_HEADER_OUT) gives no output. file_get_contents('php://input') gets some HTTP headers but not all. print_r($_SERVER) also gets some HTTP head...

Is there a raw file size limit for android?

Can someone tell me if it is possible to put an archive file with a size greater than 1 mb in res/raw and at runtime copy it to sdcard and decompress it? ...

Boost-Python raw pointers constructors

I am trying to expose a C++ library to python using boost-python. The library actually wraps an underlying C api, so uses raw pointers a lot. // implementation of function that creates a Request object inline Request Service::createRequest(const char* operation) const { blpapi_Request_t *request; ExceptionUtil::throwOnError( ...

oracle raw datatype in where clause

Hi I have a column of RAW type in my database. How can I use it in where clause? i.e to get only values with third byte equal to 4. this does not work: SELECT v from T where v[3]=4 ...

R: Creating a CSV out of serialized objects

I'm trying to take a list and serialize each item and put it into a CSV file with a key to create a text file with key/value pairs. Ultimately this is going to run through Hadoop streaming so before you ask, I think it really does need to be in a text file. (but I'm open to other ideas) This all seemed seemed pretty straight forward at f...

How can I keep the kernel from sending RST packets from raw sockets on mac os x?

I am using raw sockets with TCP. Whenever a packet gets sent to me, my computer send a RST packet back. I tried http://udi.posterous.com/suppressing-tcp-rst-on-raw-sockets, which isn't working: int main(void) { struct addrinfo *info, hints, *p; int status, sock; memset(&hints, 0, sizeof(hints)); hints.ai_family = AF_UNSPEC; h...