Creating a Component using Visual C++ to Manipulate Virtual Directories is an article which tells about building of server component using Visual C++ inorder to access ADSI and to control IIS. Here author also describes about applying server...
Advertisement
This recipe provides a decently simple implementation of a roundrobin using itertools and deque.
An implementation of a64l as from the c stdlib. Convert between a radix-64 ASCII string and a 32-bit integer.
Here is an implementation of cooperative multithreading using generators that handles signals (SIGINT only in this recipe).
An implementation of dictionaries preserving key insertion order. Despite using a doubly-linked list to keep track of the appropriate order, this list is actually embedded in the dictionary. As a consequence, there is little space penalty, and...
Linked list implementation based on Python 2.7 collections.MutableSequence with a few benchmarks comparing the linked list with the built-in list type.
Data structure: Builing Linked-List Class is an article in which author describes the method of generating Linked-List with the help of functionalities of framework Class library. The author gives details about the process of utilizing...
Sorting An Array Using Array.Sort() is a web based tutorial in which author describes the procedure for sorting the array with the help of Array.Sort() function. Through this tutorial beginners can learn more about sorting the array through...
How To Cache in ASP.NET by Using Visual C# .NET is an ASP.NET article which explains about the methods involved to cache web pages and arbitrary objects in the server memory. In this article author explains about various steps involved in storing...
An Insider View of Uploading Files using ASP is an easy to understand tutorial aimed to give the readers a brief outlook on file uploads for web applications. The author has explained the concepts in a clear format along with the individual ASP...
Show The Size Of A Directory Using ASP is an online article explaining ASP beginners and programmers to use FileSystemObject function of ASP in finding the file sizes. The author has also given some notes on the above topic along with the code...
Decorator-based implementation of PEP 380 (yield from). This is the simple version (no special handling of nested "yield _from"s).
Decorator-based implementation of PEP 380 (yield from). This is the optimized version (special handling of nested "yield _from"s).
Generation of captcha image composed of numbers without using any fonts. As such it adds more variability to symbols (because every symbol is generated using random noise). And because of this - should be more secure than known set of fonts.
An implementation of the token bucket algorithm in Python.
This recipe discribes how to change the implementation of the _run_child method in Popen3 at runtime.
Simple Buttons is a tutorial that teaches about creation and implementation of simple buttons using flash. It describes in detail how to create a simple button with roll over effect and after click effect, define the hit area, adding actions to...
Users can easily add/remove themselves to/from any of your list using a simple form. The admin can add and remove addresses from any of the lists and send e-mail to whole lists or individuals. Sends batch e-mails so your server is less likely to...
This recipe is Python implementation of few lines of C-code that get useful information about current working console on Windows. It may be useful for console application to proper formatting output. Recipe need ctypes package to be installed.
SHOWME HOW: Add Static and Data-Bound Items to a DropDownList Web Server Control by Using Visual C# .NET is an useful article for the programmers to add the static and data-bound items of the database into the list of the dropdownlist web server... |