extensions

Sending Emails as a "batch execution job"

I do not have any experience in web based development(neither client side nor server s ide code). since long time i had a question as to if anything like below is possible to do: 1.) I have say 10 attachments 1.zip to 10.zip on my desktop. 2.) I need to send all of these as an attachment using any web based email (I need to send out th...

How Can I Compile Firefox and Include a Few Extensions?

Hello, I need to be able to compile firefox and bundle it with a few extensions so when people download it the extensions are already there. I was wondering if anyone can point me to some documentation. I have been searching for hours and can't seem to find anything like that. Thanks, Sebastian ...

Filter Extensions in HTML form upload

I have a simple HTML upload form, and I want to specify a default extension ("*.drp" for example). I've read that the way to do this is through the ACCEPT attribute of the input tag, but I don't know how exactly. <form enctype="multipart/form-data" action="uploader.php" method="POST"> Upload DRP File: <input name="Upload Saved Replay" t...

WCF Behavior Extension Elements Not Recognized in Visual Studio

This question is related to the question posted here: http://stackoverflow.com/questions/169342/why-isnt-my-custom-wcf-behavior-extension-element-type-being-found I'm using the WCF Behavior Extension with Custom Credentials demonstrated on MSDN here: http://msdn.microsoft.com/en-us/library/ms730868.aspx The only difference is that I'...

ms office file extensions

I made a discovery some time back. Just follow these steps: Create a .doc/.xls/.ppt file in office 2003. Keep some test data in there and close the file. Now rename the file to change it's file extension to a random string, taking care that it is unassociated, like test.asdfghjkl etc. Double click the file and it opens seamlessly in the...

OpenGL extension documentation?

Where can I find the official documentation of OpenGL extensions? The base API is pretty well documented and a Google search for a function name returns multiple pages with the documentation text. Yet Googling an extension function usually doesn't return anything useful. What am I missing? ...

How do I install a Python extension module using distutils?

I'm working on a Python package named "lehmer" that includes a bunch of extension modules written in C. Currently, I have a single extension module, "rng". I am using Python's Distutils to build and install the module. I can compile and install the module, but when I try to import the module using import lehmer.rng or from lehmer import ...

How to Access Properties / Macros from VS Extensions

When writing a Visual Studio Extension, how do you access "macros", as in $(SolutionDir), or $(ProjectName). ...

Why is my Python C Extension leaking memory?

The function below takes a python file handle, reads in packed binary data from the file, creates a Python dictionary and returns it. If I loop it endlessly, it'll continually consume RAM. What's wrong with my RefCounting? static PyObject* __binParse_getDBHeader(PyObject *self, PyObject *args){ PyObject *o; //generic object PyObject*...

Using constrained generic extension methods in a separate assembly gives a reference error.

I created a separate assembly to contain common extension methods, the extension methods uses classes from System.Web.dll (and others). When I then create a new project (Console Application) that references the Utilities.dll assembly that contains the extension methods, I do not need to add a reference to System.Web.dll to the new proje...

Useful Add-Ins or Plug-Ins for native Visual Studio developer

There are plenty of different Add-Ins for Visual Studio, see Visual Studio Gallery . Please share your experiences and favorites. As motivation, here are some of my favorites: Versioning Controlled Build [F/O] - very handy extension for automatic build numbering, SlickEdit Gadgets [F] - useful editor gadget, build-in file explorer, .....

How do I tell Apache which PHP to use?

I am running Apache2 on a Mac OS X (10.5). I just compiled PHP 5.2.8 and finally got pdo-mysql working (or so I think). My command line "php --version" is showing 5.2.8 and I have the right modules installed. But, when do a phpinfo(), Apache dumps out PHP 5.2.6 (my earlier version, without pdo_mysql). How do I tell Apache which PHP to lo...

Installing PHP extensions on shared hosting

I need to enable the mcrypt functions on my website, except I'm on a shared host (running linux) and obviously don't have access to the php.ini file. There does seem to be options for installing PEAR modules but a search told me mcrypt wasn't available. Is there any way I can do this, short of begging technical support to help me? Upd...

Komodo Edit: How to do some of these basic Macro and Snippet operations?

I am wondering how to do (or where to find documentation) on these basic macro and snippet operations in Komodo Edit. 1) FILE/IO: write a string to a temporary file from within a komodo javascript macro 2) FILE/IO: read the content of a text file into a string within a komodo javascript macro 3) INCLUDES: cross-reference local javascr...

Stop Firefox extension popupset auto-hiding

I am building a Firefox Extension. I have a popupset that is shown when a toolbar button is pressed and also have working code to close the popupset manually. The problem I have is that the popupset disappears whenever I click elsewhere. I would like to disable this automatic closure behaviour. I'm sure I've seen a popupset or panel att...

How would you create a safe int sum IList extension ?

I would like to create a safe sum extension method that would have the same syntax as the normal Sum. This would be the syntax I'd like to use: result = Allocations.SumIntSafe(all => all.Cost); I use the Int.Maxvalue as a penalty value in my operations and two Int.MaxValue summed together returns a Int.Maxvalue. This is my adding fun...

Joomla Forms extension

Hi guys, Does anyone of you know a good free joomla extension to create forms? I have searched the joomla site but most of them are commercial and the free ones very lite and buggy. I have Joomla 1.5 installed. I need to make some forms for my site 34life.org to subscribe some volunteers. Thanks in advance. ...

Is it possible to write extensions to Delphi's debugger?

I know there's an API for creating extensions to Delphi. I use the GExperts package and various JVCL experts frequently. But I've never seen any extensions to the debugger. It would be very nice, for example, to be able to register viewers for various objects instead of having to examine them in the Inspector. (A form with an image c...

location of Firefox extensions in Mac OS?

Really stupid question, but I can't find the answer anywhere. In Mac OS X, where are installed extensions for Firefox located? ...

How can I determine a file's true extension/type programatically?

Hey everyone, I am working on a script that will process user uploads to the server, and as an added layer of security I'd like to know: Is there a way to detect a file's true extension/file type, and ensure that it is not another file type masked with a different extension? Is there a byte stamp or some unique identifier for each typ...