|
|
| About site: Programming/Resources - MetalShell - Source Code Examples |
Return to Computers also Computers |
| About site: http://www.metalshell.com/ |
Title: Programming/Resources - MetalShell - Source Code Examples A growing archive of source code examples for different languages and platforms. All code is written for the purpose of helping others learn to program. C, C++, Perl, Python, HTML sources. Shell scri |
|
|
|
|
MOUS_Training_Ltd_ IT distance learning and self study courses for Microsoft Office applications, preparation for the MOUS exam.
| AOL_Access_Numbers Search for access numbers from this web site.
| ForeSee_Results Market research consulting and surveys for measuring website satisfaction.
| KEGS32 An Apple IIgs emulator for Win32 based on KEGS.
| RFC_1379 Extending TCP for Transactions -- Concepts. R. Braden. November 1992.
| ASP_Tutorial_Search_Engine This ASP script will open specific files within your sites, check for a specific word and display a list of matching pages.
|
|
| Alexa statistic for http://www.metalshell.com/ |
Please visit: http://www.metalshell.com/
|
| Related sites for http://www.metalshell.com/ |
| Yahoo_Groups__Self-interest Mail list and archive for discussing Self programming language. | | muhn_Consulting An independent consultant, specializing in American Fundware. My services help you get the most out of FundWare. I also provide tips & free offers. | | Tcl/Tk_Cookbook The emphasis is on enabling the readers gain familiarity with Tcl/Tk programming within a very short-time so they can proceed to develop their own. | | Bennion,_Matthew Offers skills in Flash, Director, Multimedia Builder, Visual Basic and ASP. Located in Stafford, Staffordshire, England. | | Journal_of_Discrete_Algorithms Contact information, list of accepted and forthcoming papers. | | XOberon Hard realtime OS for mechatronics, newest version for PowerPC; loosely based on Oberon OS, coded in Oberon-2. Goal: create framework for non-computer-scientists needing rapid application development ( | | Ojster_com Articles, skins, galleries and eBooks. | | Check_Proxy_Professional Locates public proxy servers, identifies speed, location and whether anonymous or not. Incorporates a blacklist of servers known to be monitored. [Windows] | | RFC_1558 A String Representation of LDAP Search Filters. T. Howes. December 1993. | | Axon_Group_PLC Global SAP and business solutions consultancy. | | PDSECA_Workshop_2001 Parallel and Distributed Scientific and Engineering Computing with Applications. In conjunction with IPDPS 2001. San Francisco, California, USA. | | Dobias_Digital_by_Kurt_Dobias 3-d desktop backgrounds and graphics, covering sci-fi, flowers, seascapes, landscapes and still life. | | Thermaltake_Technology_Co,_Ltd Manufacturer of desktop and server power supplies, including adjustable fan speed and fanless silent models. Vary between 300 and 1200 watts. Also offer cases and cooling products. | | Ftagshtml Software to help developers navigate source code written in Fortran 77, Fortran 90 and C. Source code is transformed into HTML for browsing. | | Funny_Fun_Pages Galleries of friendship, just for fun, inspirational, and smiles. Includes graphics, animations and music. | | C_and_C++__A_Case_for_Compatibility Article by Bjarne Stroustrup. Bjarne identifies some non-issues as he continues his case for compatibility between C and C++. (August, 2002) | | Sherlog Sherlog is not a statistics generator like Webalizer; instead, focuses on providing a view of visitors' routes on a website. | | Nuplanet_Digital Offers design services. | | 3210_Consulting Provides graphics design, database and multimedia, e-commerce, and hosting. Based in Washington, DC, United States. | | Hills_Web_Design Site design, hosting, and domain name registration. Based in Australia. |
|
This is websites2007.org cache of m/ as retrieved on 2008.09.07 websites2007.org's cache is the snapshot that we took of the page as we crawled the web. The page may have changed since that time.
|
Metalshell.com - Source Code Examples ( Last 20 ) var height=0;var width=0;if (self.screen) { // for NN4 and IE4 width = screen.width height = screen.height}else if (self.java) { // for NN3 with enabled Java var jkit = java.awt.Toolkit.getDefaultToolkit(); var scrsize = jkit.getScreenSize(); width = scrsize.width; height = scrsize.height;} Search: C C++ Perl PHP Python HTML ShellScripts Coding Books Tutorials Search Code Browse Code Link to Us Site News Contact Metalshell Submit Code Statistics Last 20 Website In C 2004-07-27 02:54:00 c Category: source:c:internet Description: Example on how to code your own website in C using mysql. Platform: all Author: mind Custom String Tokenizer 2004-06-18 22:03:18 c Category: source:c:strings Description: Example on creating your own string tokenizer without using strtok() Platform: all Author: mind Bi-directional Sweep Sort 2004-06-07 21:05:13 c Category: source:c:general Description: Based on the sort algorithm in bubblesort.c which is as simple as it gets in the sorting business. Added basic improvements to make a bi-directional sweep sort. Added check to short-circuit sort operation as soon as the program detects that the array is sorted. Limit sweeping of values to the unsorted middle of the array. Also added some debugging messages so one can follow the progress of a sort. Platform: all Author: mwberryman Simple Kernel Module 2003-08-11 12:26:51 c Category: source:c:linux Description: This simple module will recieve system calls to change the directory and log them. This can be very useful if you want to create a sandbox for users on your system, or just log general activity. Platform: linux Author: detour Bezier Curve 2003-07-03 18:03:40 cpp Category: source:cpp:opengl Description: Draw a bezier curve using GLUT and OpenGL by defining three points with your mouse.
Platform: all Author: detour Create Basic Window 2003-07-03 16:53:46 c Category: source:c:windows Description: A basic example on creating a window using the windows API.
Platform: win Author: detour Time 2003-07-03 14:20:16 php Category: source:php:math Description: Some examples on creating and comparing timestamps with php.
Platform: all Author: detour Creating Makefiles 2003-07-02 23:09:20 general Category: tutorial:general: Description: As you begin to work on larger projects you will find it necessary to have a means to organize the compilation of your source code. Having to compile multiple files from the command line can become a tedious and time consuming task. The GNU Make program will make this process much easier to deal with. This tutorial will cover the specifics you need to create your own Makefiles. Platform: all Author: detour Compress Data Using ZLib 2003-06-22 20:08:01 php Category: source:php:math Description: Use the zlib functions in php to compress a file. Platform: all Author: detour Bubble Sort 2003-06-22 19:30:26 php Category: source:php:math Description: Generate random numbers then sort them. Platform: all Author: detour PHP Cookies 2003-06-22 14:19:41 php Category: source:php:cgi Description: Example on storing cookies in the client's browser, and controlling the expire time on the server instead of the client. Platform: all Author: detour Read Directory 2003-06-06 22:44:44 c Category: source:c:linux Description: Example on using opendir, closedir, and readdir to open a directory stream and read in and print file names.
Platform: linux Author: mind PHP Mail Class 2003-06-06 01:08:55 php Category: source:php:internet Description: A class to send html code, plain text and attachments to an email address using MIME. You can attach as many files as you want and modify the headers. Platform: all Author: detour Sysinfo 2003-06-03 13:47:01 c Category: source:c:linux Description: Display the uptime, load averages, total ram, free ram, shared ram, buffered ram, total swap, free swap, and number of processes running on a linux machine.
Platform: linux Author: detour STL Permutations 2003-05-29 00:05:00 cpp Category: source:cpp:stl Description: Example on using next_permutation from the stl algorithm library. It will rearrange a string or integer into every unique lexical order.
Platform: all Author: detour Javascript Bubble Sort 2003-05-28 16:08:17 html Category: source:html:javascript Description: Generate 100 random numbers the use bubble sort to put them in ascending order.
Platform: all Author: detour STL Vector 2003-05-28 14:16:06 cpp Category: source:cpp:stl Description: Basic example on inserting, finding, and retrieving elements of a stl vector.
Platform: all Author: detour POSIX Thread Example 2003-05-28 12:52:38 c Category: source:c:general Description: Create multiple POSIX thread processes and wait for each one to complete.
Platform: unix Author: detour JavaScript Random Number Generator 2003-05-27 16:47:35 html Category: source:html:javascript Description: Generate random numbers, round them to the nearest integer and print them in a select list. Platform: all Author: detour OpenSSL Server Example 2003-05-24 12:24:54 cpp Category: source:cpp:internet Description: A basic threaded OpenSSL server with non-blocking connection handling. When a connection is made the thread waits for data to be recieved, then sends an html response so it can be tested with a browser. The thread closes the connection and terminates without waiting for more data. Platform: unix Author: detour Developer.* Blue Parrots Technipal Defy Magazine Code Project Prog. Heaven Got Money?   |
|
| |
A | growing | archive | of | source | code | examples | for | different | languages | and | platforms. | All | code | is | written | for | the | purpose | of | helping | others | learn | to | program. | C, | C++, | Perl, | | Python, | HTML | sources. | Shell | scri |
|
http://www.metalshell.com/
MetalShell - Source Code Examples 2008 September
dvd rental
dvd
A growing archive of source code examples for different languages and platforms. All code is written for the purpose of helping others learn to program. C, C++, Perl, Python, HTML sources. Shell scri
Rules
|
© 2008 Internet Explorer 5+ or Netscape 6+
|
|
Recommended Sites: 1.
Arts -
Business -
Computers -
Games -
Health -
Home -
Kids and Teens -
News -
Recreation -
Reference -
Regional -
Science -
Shopping -
Society -
Sports -
World
Miss Gallery
- Top Anime Hentai
- DVD rental by mail
- Plumbing - Mortgages - Nissan Armada Grills - Credit Cards - Credit Card
|