sixteen
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 4
soundgrab 0.9.0
soundgrab is designed to help you slice up a big long raw audio file. more>>
soundgrab is designed to help you slice up a big long raw audio file (by default 44.1 kHz 2 channel signed sixteen bit little endian) and save your favorite sections to other files. It does this by providing you with a cassette player like command line interface. Commands like ff , rw , jump can be used while the volume is being played or while it is stopped to move the player head around. The commands mark and name allow you to give names to sections between the mark and the current position of the player head (like emacs mark and point concept), and the export command exports the named sections to other files in wav, cdr (CD mastering), or raw format (or ogg or flac format if the appropriate encoder binaries are found on your system).
The man page has a few more details and could be more useful, though most information is in the online help.
soundgrab is from the perl department of the Maximegalon museum of diseased imaginings. It needs a lot of other things in order to work:
perl5 or later
Term::ReadLine::Gnu and Time::HiRes from the comprehensive perl archive network (CPAN). Time::HiRes ships with the base perl distribution for perl version 5.8.0 and later. Both these are bundled in the below package for your convenience.
rawrec program. This is bundled in the below package for your convenience.
sox program. This is pretty standard and is certainly available as a package in whatever distribution you are using.
GNU readline4 library. Standard on most distros I hope.
Some command line utilities which are standard everywhere.
Enhancements:
- Bundled new versions Term::ReadLine::Gnu and Time::Hires modules into odd_things directory
- Added knowledge to installation makefile to install Time::Hires iff we have a version of perl that doesnt ship it be default.
<<lessThe man page has a few more details and could be more useful, though most information is in the online help.
soundgrab is from the perl department of the Maximegalon museum of diseased imaginings. It needs a lot of other things in order to work:
perl5 or later
Term::ReadLine::Gnu and Time::HiRes from the comprehensive perl archive network (CPAN). Time::HiRes ships with the base perl distribution for perl version 5.8.0 and later. Both these are bundled in the below package for your convenience.
rawrec program. This is bundled in the below package for your convenience.
sox program. This is pretty standard and is certainly available as a package in whatever distribution you are using.
GNU readline4 library. Standard on most distros I hope.
Some command line utilities which are standard everywhere.
Enhancements:
- Bundled new versions Term::ReadLine::Gnu and Time::Hires modules into odd_things directory
- Added knowledge to installation makefile to install Time::Hires iff we have a version of perl that doesnt ship it be default.
Download (0.20MB)
Added: 2006-07-19 License: GPL (GNU General Public License) Price:
1193 downloads
Desperado 1.22.0
Desperado is a library of reusable object-oriented components written in C++ and C. more>>
Desperado is a library of reusable object-oriented components written in C++ and C. It was developed to capture some of the useful design patterns we encountered in embedded applications and found ourselves re-implementing from project to project, while (we hope) not falling prey to the not-invented-here syndrome.
Desperado project requires a ANSI C99 and ANSI C++ compiler to build. This version runs under Linux and Cygwin, but it is simple to port to other operating systems. Desperado includes the following components:
- FiclShell provides a FORTH-based programmable command-line shell that can access variables and functions with C bindings in the underlying application. It uses Ficl, John Sadlers embeddable, small-footprint FORTH interpreter. It can read and write C variables and call C functions with as many as ten integer arguments. The FORTH data stack can be accessed by the application.
- BandwidthThrottle, CellRateThrottle, ContractThrottle and Exponential Throttle are used for rate control. The various throttle classes implement several rate control strategies, many of which are based on the Generic Cell Rate Algorithm (GCRA).
- Dump displays memory in hexadecimal word or byte format. It sounds mundane, but we use it frequently.
- Input and Output functors offer an consistent abstraction for binary and character I/O. - BufferInput/Output, DescriptorInput/Output, FIleInput/Output, PathInput/Output, and SocketInput/Output are among the I/O functors implemented..
- Print provides formatted output through any output functor.
- Ram is a template that generates efficient hardware memory tests for memory width of any integer data type. It is based an article by Michael Barr in Embedded Systems Programming magazine.
- Crc is a template that generates parameterized sixteen or thirty-two bit cyclic redundancy check algorithms. It is based on the work of Ross Williams at Rocksoft.
CommonEra, LocalTime, AtomicSeconds, LeapSeconds, TimeZone, DaylightSavingTime and others handle the conversion of time values between seconds with nanoseconds, Coordinated Universal Time (UTC), International Atomic Time (TAI), and Local Time, relative to an arbitary time and date in the Common Era. - For example, these components can generate a time stamp in UTC or local time using a time duration relative to when a embedded device was reset. It includes support for time zones, different daylight saving time algorithms, and leap seconds.
- Chain, Link and the template LinkType are a family of classes that support a simple, efficient, data structure that implements doubly linked lists. It implements FIFO, LIFO, and circular linked lists. In O(1) time it can perform operations like insert, remove, push, pop, and getting the head of the list. The Link node an be embedded inside an object, just like a pointer, or used independently, in a manner similar to the structures in the Standard Template Library. An object can be easily managed on multiple chains of links simultaneously. This data structure is useful in real-time applications where the use of the STL might be problematic.
- Number is a template that generates a number parser for any integer type. The base of the input number string is derived from context. The parser is similar to, but more flexible than, the libc functions strtol and strtoul.
- Platform provides an abstract interface to the small number of operating system services needed by Desperado. Linux and Cygwin are derived classes.
- Heap is a malloc-like interface to the C++ heap. malloc is in turn a POSIX-compliant C-binding interface to Heap. This design simplifies introducing a common alternative heap manager into both C++ and C code in a single application.
- Transliterator provides a mechanism for implementing simple time and space efficient table-driven parsers. The examples Word and Attribute are implemented.
- Escape expands and collapses C-style escape sequences. Encode expands and collapses URL-style escape sequences.
- generics is a collection of well tested preprocessor macros that automatically generate handy values, like minimum and maximum signed numbers, for any integer data type. These simplify generic programming, for example when using C++ templates, but are very useful in C as well.
- cxxcapi is a collection of macros and other preprocessor symbols that simplify writing components that can be used with either C or C++ translation units.
- Desperado incorporates many useful architecture patterns. It contains numerous examples of how to incrementally introduce C++ into legacy C code bases, and how to effectively use C++ objects directly from C code. It shows how to abstract out operating system and input/output details to defer their implementation, allowing greater parallel development and easier application porting. It illustrates how to use templates to avoid allocating and freeing memory from the heap in real-time and embedded code. It uses templates to create efficient type-safe variable sized data structures.
- Unit tests are included which serve as coding examples and uses cases. They can be run as main programs, from the FiclShell, or called as functions, enabling them to be run on an embedded target to verify the librarys correct operation on the actual hardware.
- Desperado also contains some perhaps less than successful experiments, such as its use of the placement-new operator in the guise of a preprocessor macro used to reinitialize objects. We may revisit some of these possible mis-features in the future.
Enhancements:
- The use of templates was reconciled with the gnu option -frepo to reduce code bloat.
- No changes were made to interfaces or functionality.
<<lessDesperado project requires a ANSI C99 and ANSI C++ compiler to build. This version runs under Linux and Cygwin, but it is simple to port to other operating systems. Desperado includes the following components:
- FiclShell provides a FORTH-based programmable command-line shell that can access variables and functions with C bindings in the underlying application. It uses Ficl, John Sadlers embeddable, small-footprint FORTH interpreter. It can read and write C variables and call C functions with as many as ten integer arguments. The FORTH data stack can be accessed by the application.
- BandwidthThrottle, CellRateThrottle, ContractThrottle and Exponential Throttle are used for rate control. The various throttle classes implement several rate control strategies, many of which are based on the Generic Cell Rate Algorithm (GCRA).
- Dump displays memory in hexadecimal word or byte format. It sounds mundane, but we use it frequently.
- Input and Output functors offer an consistent abstraction for binary and character I/O. - BufferInput/Output, DescriptorInput/Output, FIleInput/Output, PathInput/Output, and SocketInput/Output are among the I/O functors implemented..
- Print provides formatted output through any output functor.
- Ram is a template that generates efficient hardware memory tests for memory width of any integer data type. It is based an article by Michael Barr in Embedded Systems Programming magazine.
- Crc is a template that generates parameterized sixteen or thirty-two bit cyclic redundancy check algorithms. It is based on the work of Ross Williams at Rocksoft.
CommonEra, LocalTime, AtomicSeconds, LeapSeconds, TimeZone, DaylightSavingTime and others handle the conversion of time values between seconds with nanoseconds, Coordinated Universal Time (UTC), International Atomic Time (TAI), and Local Time, relative to an arbitary time and date in the Common Era. - For example, these components can generate a time stamp in UTC or local time using a time duration relative to when a embedded device was reset. It includes support for time zones, different daylight saving time algorithms, and leap seconds.
- Chain, Link and the template LinkType are a family of classes that support a simple, efficient, data structure that implements doubly linked lists. It implements FIFO, LIFO, and circular linked lists. In O(1) time it can perform operations like insert, remove, push, pop, and getting the head of the list. The Link node an be embedded inside an object, just like a pointer, or used independently, in a manner similar to the structures in the Standard Template Library. An object can be easily managed on multiple chains of links simultaneously. This data structure is useful in real-time applications where the use of the STL might be problematic.
- Number is a template that generates a number parser for any integer type. The base of the input number string is derived from context. The parser is similar to, but more flexible than, the libc functions strtol and strtoul.
- Platform provides an abstract interface to the small number of operating system services needed by Desperado. Linux and Cygwin are derived classes.
- Heap is a malloc-like interface to the C++ heap. malloc is in turn a POSIX-compliant C-binding interface to Heap. This design simplifies introducing a common alternative heap manager into both C++ and C code in a single application.
- Transliterator provides a mechanism for implementing simple time and space efficient table-driven parsers. The examples Word and Attribute are implemented.
- Escape expands and collapses C-style escape sequences. Encode expands and collapses URL-style escape sequences.
- generics is a collection of well tested preprocessor macros that automatically generate handy values, like minimum and maximum signed numbers, for any integer data type. These simplify generic programming, for example when using C++ templates, but are very useful in C as well.
- cxxcapi is a collection of macros and other preprocessor symbols that simplify writing components that can be used with either C or C++ translation units.
- Desperado incorporates many useful architecture patterns. It contains numerous examples of how to incrementally introduce C++ into legacy C code bases, and how to effectively use C++ objects directly from C code. It shows how to abstract out operating system and input/output details to defer their implementation, allowing greater parallel development and easier application porting. It illustrates how to use templates to avoid allocating and freeing memory from the heap in real-time and embedded code. It uses templates to create efficient type-safe variable sized data structures.
- Unit tests are included which serve as coding examples and uses cases. They can be run as main programs, from the FiclShell, or called as functions, enabling them to be run on an embedded target to verify the librarys correct operation on the actual hardware.
- Desperado also contains some perhaps less than successful experiments, such as its use of the placement-new operator in the guise of a preprocessor macro used to reinitialize objects. We may revisit some of these possible mis-features in the future.
Enhancements:
- The use of templates was reconciled with the gnu option -frepo to reduce code bloat.
- No changes were made to interfaces or functionality.
Download (0.41MB)
Added: 2006-05-03 License: LGPL (GNU Lesser General Public License) Price:
1276 downloads
Bad Credit Loans 1
Sixteen free bad credit loans icons that are very high quality. You can use these bad credit loans icons for your credit websites only. If you have ba... more>> <<less
Download (41KB)
Added: 2009-04-17 License: Freeware Price: Free
189 downloads
xisp 2.7
X-ISP is a visual, X11/XForms based, user-friendly interface to pppd/chat, i.e. a dialup TCP/IP tool with an X11 interface. more>>
X-ISP is a visual, X11/XForms based, user-friendly interface to pppd/chat, i.e. a dialup TCP/IP tool with an X11 interface. It is also a small ISP and phone company (PTT) database manager, and a dialup costs and usage logging/statistics tool. It provides maximum feedback from dialing and login phases on a message browser, versatility in interrupting a call in progress, a manual login terminal window, as well as call-back and per-ISP DNS selection capabilities.
The main application, xisp, relies on a special dialer, xispdial, which is spawned by pppd in order to perform the dialing, and a "bare bones" terminal interface, xispterm. For more details on the workings of xisp, xispdial and xispterm, as well as their interaction with pppd and chat, see the "ARCHITECTURE" section below. The phone company database supports all PTT attributes applicable while logging phone-call costs, and saves its information in a separate file, in sub-directory .xisplogs, in the users home directory.
The other facility provided by xisp is that of maintaining two small databases, one for ISPs and one for phone companies (PTTs). The implementation supports a variable (but upper bounded) number of records for both databases. Each ISP entry, aside from user account name and password, supports 8 telephone numbers (tried sequentially when dialing), individual PTT selection, a multitude of dialing parameters, sixteen user
customizable script lines for the chat program, and a wealth of pppd options to cover most communication needs. All ISP database information is saved in the xisp resource control file (.xisprc) in the users home directory.
For details on the user interface look in the "USER INTERFACE" section below.
The .xisprc file converter (xisprccv) provided with the distribution, understands all ISP data base formats beginning with xisp version 1.2, and can be used to upgrade an old .xisprc file to the latest xisp version. xisprccv provided with version 2.7 also tries to convert old PTT log files to accommodate the changes in the logging file format
introduced with xisp-2.7.
<<lessThe main application, xisp, relies on a special dialer, xispdial, which is spawned by pppd in order to perform the dialing, and a "bare bones" terminal interface, xispterm. For more details on the workings of xisp, xispdial and xispterm, as well as their interaction with pppd and chat, see the "ARCHITECTURE" section below. The phone company database supports all PTT attributes applicable while logging phone-call costs, and saves its information in a separate file, in sub-directory .xisplogs, in the users home directory.
The other facility provided by xisp is that of maintaining two small databases, one for ISPs and one for phone companies (PTTs). The implementation supports a variable (but upper bounded) number of records for both databases. Each ISP entry, aside from user account name and password, supports 8 telephone numbers (tried sequentially when dialing), individual PTT selection, a multitude of dialing parameters, sixteen user
customizable script lines for the chat program, and a wealth of pppd options to cover most communication needs. All ISP database information is saved in the xisp resource control file (.xisprc) in the users home directory.
For details on the user interface look in the "USER INTERFACE" section below.
The .xisprc file converter (xisprccv) provided with the distribution, understands all ISP data base formats beginning with xisp version 1.2, and can be used to upgrade an old .xisprc file to the latest xisp version. xisprccv provided with version 2.7 also tries to convert old PTT log files to accommodate the changes in the logging file format
introduced with xisp-2.7.
Download (0.29MB)
Added: 2006-06-30 License: GPL (GNU General Public License) Price:
1213 downloads
Secleted [ 0 ] software to compare
- Page: 1 of 1
- 1
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above sixteen search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed