Skip to content

Instantly share code, notes, and snippets.

View marceloxp's full-sized avatar
:octocat:
Learning

Marcelo de Souza Lima marceloxp

:octocat:
Learning
View GitHub Profile
@marceloxp
marceloxp / gist:5800634
Created June 17, 2013 21:30
Número randômico
Math.floor(Math.random()*1980).toString();
@marceloxp
marceloxp / trycatch.php
Created June 18, 2013 12:50
try -> catch
try
{
}
catch (Exception $e)
{
echo $e->getMessage();
}
@marceloxp
marceloxp / new_gist_file
Created July 11, 2013 21:09
Firebug Lite - iOS
<script type="text/javascript" src="https://getfirebug.com/firebug-lite-debug.js"></script>
@marceloxp
marceloxp / switch-case.js
Created July 23, 2013 21:26
JavaScript switch
switch (expression)
{
case label1:
statements1
break;
case label2:
statements2
break;
default:
statements_def
@marceloxp
marceloxp / colorAverage.php
Created October 4, 2013 21:34
PHP Color Average
public function colorAverage($rect)
{
//$rect = array(x, y, w, h);
$im = @imagecreatetruecolor($rect[2], $rect[3]);
if (!$im) { return false; }
imagecopy($im, $this->info, 0, 0, $rect[0], $rect[1], $rect[2], $rect[3]);
$imgW = $rect[2];
$imgH = $rect[3];
@marceloxp
marceloxp / new_gist_file.js
Created October 7, 2013 14:14
JavaScript isset()
function isset () {
// http://kevin.vanzonneveld.net
// + original by: Kevin van Zonneveld (http://kevin.vanzonneveld.net)
// + improved by: FremyCompany
// + improved by: Onno Marsman
// + improved by: Rafał Kukawski
// * example 1: isset( undefined, true);
// * returns 1: false
// * example 2: isset( 'Kevin van Zonneveld' );
// * returns 2: true
@marceloxp
marceloxp / gist:5731198
Last active April 18, 2016 13:06
jQuery onReady
$(document).ready
(
function()
{
}
);
@marceloxp
marceloxp / FileNameUtils.php
Last active June 13, 2016 18:45
Captura um nome de arquivo de devolve um array de 2 elementos com o nome e extensão.
<?
function GetFileParts($file_name)
{
$tmp = explode("/", $file_name);
$_filename = array_pop($tmp);
$tmp = explode(".", $_filename);
$ext = array_pop($tmp);
$fil = substr($_filename, 0, ((strlen($ext)+1) * -1));
$r = array();
$r["name"] = $fil;
@marceloxp
marceloxp / httpd-vhosts.conf
Last active July 5, 2016 17:55
Apache Virtual Host
<VirtualHost 127.0.0.1>
ServerAdmin webmaster@www.cake3.local.com.br
DocumentRoot "C:/um/xampp/projetos/git/job0003_cakephp3"
ServerName www.cake3.local.com.br
ErrorLog "logs/www.cake3.local.com.br-error.log"
CustomLog "logs/www.cake3.local.com.br-access.log" common
<Directory "C:/um/xampp/projetos/git/job0003_cakephp3">
Options FollowSymLinks Indexes
AllowOverride All
Order deny,allow
@marceloxp
marceloxp / git filters.txt
Last active January 8, 2018 20:22
Git Extensions Filters
- Ignores.
.(rar$|gz$|zip$|exe$|pdf$|log$)
- Text files.
.(php$|ctp$|mustache$|js$|css$|scss$|htm$|html$|less$|md$|txt$|yml$|map$|htaccess$|rb$|)
- No extension files.
(LICENSE|COPYING|empty)
- Languages files.