Is there anything like HTTP::Recorder for Python?
I really like Perl's HTTP::Recorder. Is there something like it for Python? ...
I really like Perl's HTTP::Recorder. Is there something like it for Python? ...
Hi, There are two things that seem to be popular nowadays and I was wondering what are the pros and cons of using something like this: http://codeigniter.com/user_guide/database/active_record.html ? Another thing is ORM (Doctrine for instance). What are the benefits of using these? ...
So what will be the preferred way of initializing records? With a 'factory function': TMyRecord = record valueX: integer; valueY: integer; end; function MyRecord(const AValueX, AValueY: integer): TMyRecord; begin result.valueX := AValueX; result.valueY := AValueY; end; var myrec: TMyRecord; begin myrec := MyRecord(1, 2); ...
I'm looking to record video from a user's browser to the web server. We've already got a working Red5 server up. I'm in need of details how to configure the server to store the video somewhere on disk, as well as a browser frontend to complete this. Also, I'd like to have a way to update the mysql database when the recording is finished...
This tool have to record all (or filtred) DOM events of Internet Explorer and allow to record them into an XML File or a Text file. ...
In F# I can do this: type coord = float * float //Type for a 2D-float-tupple let myDepthCurve1 = { coords = [(1., 2.); (3., 4.)]; depth = 9.4 } but I can't do this: type coord = { longitude : float; latitude : float } //Type for a 2D-float-record let myDepthCurve1 = { coords = [(longitude = 1., latitude = 2.); (longitude = 3., latit...
Is there a way to get strings in records bigger than 255 chars? EDIT: I have something like the following: TQuery = Record Action: string[255]; Data: string; end; if I now say: Test: TQuery; Test.Data := 'ABCDEFGHIJKLMN...up to 255...AISDJIOAS'; //Shall be 255 chars It does not work and the compiler complains... How to fix th...
What is the best data structure to store the million/billions of records (assume a record contain a name and integer) in memory(RAM). Best in terms of - minimum search time(1st priority), and memory efficient (2nd priority)? Is it patricia tree? any other better than this? The search key is integer (say a 32 bit random integer). And all...
This may not exist, but if I was hoping someone was aware of a product (doesn't have to be free) that would allow you to embed a widget on a site where the user could create videos using their webcam. Then you would be able to get those videos via API. Like youtube's record from webcam feature (http://www.youtube.com/my_webcam) but wit...
Hi Guys Im not sure if Im asking the right place, but basically Im looking for advice on the best way to: Record Audio through a microphone on a website and Upload the audio as a Wav or MP3 file to the server Has anyone got extensive experience with flash, would this be difficult to do, is there anything on the market that currently d...
Hi Guys, I need to record an RTMP stream (video) from a remote server. I know the FluorineFX solution but it includes a flash slave that does publish to local host. Because the DLL will run on a production server I need this solution to be Pure c# Do you know how can I do it? I don't actually need code samples I just need a pointer to ...
hello everybody i'm some newbie in this matter of .net i'm trying understand this new paradigm i began with linq for SQl but i found this library, kind of framework of T4 more specifically: subsonic T4 i think it could be very usefull but the support docs outside are very scarce my first intention is use them in the very simple form...
If I have defined the following types: type category = Noun | Verb | Adjective | Preposition;; type transformation = {start: category; fin: category};; What is the best way to answer the question "is the record where start = Noun in the list of type transformation? Sort of like let un = [{start= Noun; fin= Noun}; {start= Verb; fin= ...
I have this record type: type syllable = {onset: consonant list; nucleus: vowel list; coda: consonant list};; What if I want to instantiate a syllable where only the nucleus is defined? Can I give it a default value? Does it default to [] or something like that? ...
Hi, I have an application where it is possible to load new content through usercontrols. Some of these usercontrols have distinct features such as pulsing buttons and other kind of animations. What i want to do is provide the user with a small video that shows the usercontrol in action. The user adds usercontrols through an ASP.NEt MVC ...
Hi there. I'm learning Delphi Prism, and i don't find how to write the following code with it : type TRapportItem = record Label : String; Value : Int16; AnomalieComment : String; end; type TRapportCategorie = record Label : String; CategoriesItems : Array of TRapportItem; end; type TRapportContent = reco...
Hello, here is the description variable I am echoing from my table: $description = mysql_result($result,$i,"description"); sometimes the $i'th record is empty and doesn't have any data in it/no description. What I want to do is echo "No description available" for records that are empty if (isset($description)){ echo "No description ...
I have table, which I am inserting records to another table. What is the best way to mark record inserted, so it will not be attemted to being inserted again? ...
Is there such a software? ...
I would like to know how I can record a video in MATLAB with my webcam. ...