repo: resdb
action: commit
revision:
path_from:
revision_from: 998a7dbcf808582a88e3fdfd3bc50293dcb66c41:
path_to:
revision_to:
commit 998a7dbcf808582a88e3fdfd3bc50293dcb66c41
Author: sevil
Date: Wed Mar 2 09:34:43 2011 -0600
translator
diff --git a/db/usr/sevilNatas/etc/translator.php b/db/usr/sevilNatas/etc/translator.php
new file mode 100755
index 0000000000000000000000000000000000000000..8b31a43324de28fe43f1517f26e84075b9116051
--- /dev/null
+++ b/db/usr/sevilNatas/etc/translator.php
@@ -0,0 +1,322 @@
+
+static $binary;
+static $ascii;
+static $hex;
+static $b64;
+static $char;
+
+?>
+
+
+
+[sevilNatas@anoNet]:~# Translator
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Please note:
+
This application encodes and decodes
+
ASCII and
+
ANSI
+text.
Only codepoints < 128 are ASCII.
+
+
+
+
+
+
+
+
+|
+/*
+
+
+
+
+
+
+*Cannot be decoded easily (within my lifespan).
+
+
+
+function split32($text) {
+ $string = "";
+ for($i = 0; $i < strlen($text); $i = $i + 32) {
+ $string = "$string\n ".substr($text, $i, 32);
+ }
+ return $string;
+}
+function splitn($n,$text) {
+ $string = "";
+ for($i = 0; $i < strlen($text); $i = $i + $n) {
+ $string = "$string\n ".substr($text, $i, $n);
+ }
+ return $string;
+}
+?>
+
+
+
+
+
+
+
+
-----END OF PAGE-----
|