Text Management scripts - Top 4 Download

Text Management script downloads

Document Text Sizer

Sometimes the text size you've specified for your webpage isn't suitable to the viewer, depending on his browser configuration or OS.This script uses Dynamic CSS to let the viewer himself modify the text size of the page on demand, by clicking on an Increase or Decrease Font Size link.It is most ...
JavaScript

HTML to text converter

This is a complete program that reads a html document and converts it to plain ASCII text. In the spirit of minimalism, this operates as a standard unix filter: htmltotext < foo.html > foo.txt . If the output is going to a terminal, then bold and underline are displayed on the ...
Python

DS TypeWriter

DS TypeWriter javascript displays a typewriter effect ...
JavaScript

Chomsky random text generator

This script creates believable Chomsky style obfuscated prose. ...
Python

shed

shed is an easy to use hex editor written for unix/linux using ncurses, with a friendly pico-style interface.Features - Displays each byte as ascii, hex, decimal, octal and binary. - Allows changes to be input in all of the above (and now with bit toggling in the binary column) ...

Text transformer with conditions

This script uses an efficient way to tranform a file's text to something else, with conditions for few lines. ...
Python

Fontlinge

This script searches for font files and sorts them into folders by name.Fontlinge will: - find your fonts - rename files, i.e. from 'AGARBI.TTF' to 'Adobe_Garamond_Bold_Italic.ttf' - create a folder-structure - move the files to the right place - find and removes duplicate files - reunion postscript ...

Random Text Display

This script allows you to display a random text on your web site when the current page is reloaded. ...
JavaScript

PUNO

This project is a PHP module (PHP5 and Linux/Unix only) written in C that brings the OpenOffice.org UNO Programming API to the PHP userspace. You can use it to write scripts that create, modify, read and save OpenOffice.org documents (Writer, Spreadsheet, Drawing). Also, you can export these documents in various formats, ...

Custom String Representations of Bases

Custom String Representations of Bases script allows you to make a number shorter(like timestamps in URLs). ...
Python

Finding and Replacing Nemo

On each keystroke, all matches of the given text are highlighted, and the corresponding replacements are performed. Parts of the regular expression can be selected to make their scope appear in the original text. ...
Python

Change line endings

When working between platforms, it is often necessary to convert the line endings on files for them to work, especially when it comes to code. Pass Unix Python code with and it goes nowhere. Same on Mac Python with . This code simply and easily fixes the problem. ...
Python

Php Syntax Highlighter script

This php script converts your php code into a syntax colored html text.Just copy your original code and it generates the html code for you and displays a preview from it. ...

Read a text file by paragraph

Text files are most often read by-line, with excellent direct Python support. Sometimes you need to use other units, such as the paragraph -- a sequence of non-empty lines separated by empty lines. Python doesn't support that directly, but, this script adds such functionality. ...
Python

Changing the indentation of a multi line string

When working with text, it may be necessary to change the indentation level of a block. This code will take a multiline string and add or remove leading spaces to each line so that the indentation level of the block matches some absolute number of spaces. ...
Python

Fill paragraph

This module contains a function that formats paragraphs of text to have a certain linewidth, optionally stretching lines to that width by filling word gaps with spaces. In other words, it does left-justified/word-wrapped and block formatted paragraphs. ...
Python

Safe Eval

This script evaluates constant expressions, including list, dict and tuple using the abstract syntax tree created by compiler.parse. Since compiler does the work, handling arbitratily nested structures is transparent, the implemenation is very straightforward. ...
Python

xslfo2pdf

xslfo2pdf is an opensource project of Tegonal GmbH to provide a plain PHP based approach generating PDF document from the xsl-fo standard. The initial release will support basic features. ...

sPHPell

sPHPell is a FREE PHP spell checker that takes the text in a text field via javascript and spell checks it in its own window. The user can perform the usual spell checking operations (ignore, ignore all, change, change all, etc). Simple to include in any PHP page. ...

Split String into n size pieces

This script takes a string and returns a list containing the n-sized pieces of the string. ...
Python