Popular source snippets
-
» PERL CRAWLER
Category: Perl
Visits: 451
- The following code is designed to print all the links found on the google home page. I found it laying around in my old source-code folder, it may not be fully working.
-
» GENERIC OBJECT
Category: Perl
Visits: 434
- A generic object type thing for perl where you can use setanything and getanything to set and get properties via the AUTOLOAD method.
-
» AUTO-COMPLETE WITH MENU
Category: Ruby
Visits: 427
- Auto-complete command for E-TextEditor. Will popup a menu if there are multiple possibilities.
-
» ANONYMOUS OBJECTS INTRODUCTION
Category: C++
Visits: 416
- This is introduction to an anonymous classes,
An anonymous class is one that doesn't have a name. In the following example, both structures inside the TRectangle union are anonymous classes
-
» DELPHI TO C# EQUIVALANCES
Category:
Visits: 415
- Basic Datatypes. Form Management. Data Access. Component model.
-
» TEXT TO SPEECH IN PYTHON
Category: Python
Visits: 390
- Yes, you can let your computer read text to you. The task is relatively easy, if you have Windows on your machine. All you need is Microsoft's speech-API SAPI, the Python Text to Speech module pyTTS,...
-
» MAKE AN ISO IMAGE FROM A CD
Category: Bash
Visits: 363
- This script takes a cd-rom in the drive you specify and creates an iso image that you can distribute and/or burn yourself. This script will not burn an ISO... just create one from an existing cd.
-
» DYNAMICALLY PARSE MULTIROW MULTICOLUMN TEXTFILE
Category: Perl
Visits: 361
- This example demonstrates howto parse a multicolumn and multirow textfile delimited by TABs. It dynamically determines the number of rows and columns.
-
» AUTONUMBER IN ACCESS (VBA)
Category: VisualBasic
Visits: 356
- Works with MS Access 2000, XP and 2003
-
» UNOBTRUSIVELY EXECUTING JAVASCRIPT ON PAGE LOAD
Category: Javascript
Visits: 355
- The addLoadEvent function takes as an argument another function which should be executed once the page has loaded. Unlike assigning directly to window.onload, the function adds the event in such a way that...