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
""" Configurações iniciais | |
set nocompatible " Must come first because it changes other options. | |
filetype off " Necessary on some Linux distros for pathogen to properly load bundles | |
" Habilitando o Vundle | |
set rtp+=~/.vim/bundle/Vundle.vim | |
call vundle#rc() |
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
; Enable apc extension module | |
extension = apc.so | |
; Options for the APC module version >= 3.1.3 | |
; See http://www.php.net/manual/en/apc.configuration.php | |
; This can be set to 0 to disable APC. | |
apc.enabled=1 | |
; The number of shared memory segments to allocate for the compiler cache. | |
apc.shm_segments=1 |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<project name="Software" default="build" basedir="."> | |
<tstamp/> | |
<property name="application.library" value="${project.basedir}/library"/> | |
<property name="application.tests" value="${project.basedir}/tests"/> | |
<property name="application.builddir" value="${project.basedir}/build"/> | |
<property name="ftp.host" value="" /> |
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/sh | |
iptables -t nat -F | |
iptables -t nat -A POSTROUTING -s 201.33.19.171 -j SNAT --to-source 201.33.19.177-201.33.19.178 |
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/sh | |
iptables -t nat -I POSTROUTING -m state --state NEW -p tcp --dport 25 -o venet0 -m statistic --mode nth --every 5 -j SNAT --to-source 201.33.19.171 | |
iptables -t nat -I POSTROUTING -m state --state NEW -p tcp --dport 25 -o venet0 -m statistic --mode nth --every 5 -j SNAT --to-source 201.33.19.177 | |
iptables -t nat -I POSTROUTING -m state --state NEW -p tcp --dport 25 -o venet0 -m statistic --mode nth --every 5 -j SNAT --to-source 201.33.19.178 |
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
; Enable xdebug extension module | |
zend_extension=/usr/lib64/php/modules/xdebug.so | |
; ativado por padrão | |
xdebug.default_enable = 1 | |
; iniciar automaticamente | |
xdebug.auto_start = 1 | |
; ativa a depuração remota de scripts (mas os torna mais lentos) |
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
DELIMITER $$ | |
CREATE PROCEDURE `db_status`(dbname varchar(50)) | |
begin | |
( | |
select | |
TABLE_NAME as `Table Name`, | |
ENGINE as `Engine`, | |
TABLE_ROWS as `Rows`, |
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 | |
/** | |
* Transforma um array em xml | |
*/ | |
$test_array = array ( | |
'bla' => 'blub', | |
'foo' => 'bar', | |
'another_array' => array ( | |
'stack' => 'overflow', | |
), |
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 | |
/** | |
* PHP-GTK skeletons, generated from the extension using: | |
* $Id$ | |
* | |
* Name : php-gtk | |
* Version : 2.0.0-dev | |
* INI entries : 2 | |
* - php-gtk.codepage = CP1250 | |
* - php-gtk.extensions = php_gtk_libglade2.dll,php_gtk_sourceview2.dll |
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 | |
/** | |
* PHP-GTK Stub generator | |
* | |
* This program can be run on any system with PHP-GTK installed. | |
* It generates a skeleton file containing all classes present | |
* in the currently active PHP-GTK extension, with their | |
* constants, methods, and signatures thereof. | |
* | |
* This file can be installed on various IDEs to enable code |