This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# vim7.4 | |
./configure --disable-selinux \ | |
--enable-perlinterp \ | |
--enable-pythoninterp \ | |
--with-python-config-dir=/usr/lib/python2.7/config \ | |
--enable-python3interp \ | |
--enable-rubyinterp \ | |
--enable-multibyte \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
ini_set('display_errors', 'On'); | |
ini_set('html_errors', 0); | |
error_reporting(-1); | |
function ShutdownHandler() | |
{ | |
if(@is_array($error = @error_get_last())) | |
{ | |
return(@call_user_func_array('ErrorHandler', $error)); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\ This is an implementation of quotations and some combinators | |
\ for use with Forth. The combinators should work with most | |
\ Forth systems; the quotation implementation here is gForth | |
\ specific. | |
\ ************************************************************ | |
\ dip | |
\ Stack: value quote -- value | |
\ Executes a quotation with a value being temporarily removed |