Skip to content

Instantly share code, notes, and snippets.

View fontenele's full-sized avatar

Guilherme Fontenele fontenele

View GitHub Profile
@fontenele
fontenele / robot.js
Created December 5, 2012 15:28
Default
//FightCode can only understand your robot
//if its class is called Robot
var Robot = function(robot) {
};
Robot.prototype.onIdle = function(ev) {
var robot = ev.robot;
robot.ahead(100);
// Random number from interval
function randomFromInterval(from,to) {
return Math.floor(Math.random()*(to-from+1)+from);
}
//FightCode can only understand your robot
//if its class is called Robot
var Robot = function(robot) {
this.i = randomFromInterval(500,1000);
};
@fontenele
fontenele / robot.js
Created December 7, 2012 10:45
F999
var Robot = function(robot) {
robot.ignore('onScannedRobot');
robot.rotateCannon(-90);
robot.listen('onScannedRobot');
};
Robot.prototype.onIdle = function(ev) {
var robot = ev.robot;
Um fork do gist de configuração (https://gist.github.com/phackwer) do Sublime Text 3 para funcionar similar ao Netbeans.
Segue relação dos plugins que estou utilizando com o Sublime, bem como minhas configurações:
O primeiro package a instalar é o Package Control. A partir dele é possível intalar todos os outros pacotes executando Ctrl+Shift+P (ou Cmd para quem usa Mac), e buscando por "Package Control:Install Package".
Para instalar o Package Control, execute as instruções contidas nesta página:
https://packagecontrol.io/installation
Agora, chame o comando de instalação de pacotes e instale os seguintes pacotes.
@fontenele
fontenele / Composer-Satis
Created February 13, 2015 18:54
Como criar um servidor Composer privado para hospedar seus projetos/componentes
Vamos criar um servidor Composer privado utilizando nossos repositórios svn como componentes/projetos.
Vamos usar como exemplo o caminho: /var/www/composer-server
URL do nosso server: http://composer.meuhost.com.br:4680
E os componentes/projetos:
http://svn.meuhost.com.br/gerador-pdf/trunk
http://svn.meuhost.com.br/rest-client/trunk
https://github.com/Seldaek/monolog/
#################
<?php
$currency_symbols = array(
'AED' => '&#1583;.&#1573;', // ?
'AFN' => '&#65;&#102;',
'ALL' => '&#76;&#101;&#107;',
'AMD' => '',
'ANG' => '&#402;',
'AOA' => '&#75;&#122;', // ?
'ARS' => '&#36;',
'AUD' => '&#36;',
AF - Afghanistan
AL - Albania
DZ - Algeria
AS - American Samoa
AD - Andorra
AO - Angola
AI - Anguilla
AQ - Antarctica
AG - Antigua and Barbuda
AR - Argentina
@fontenele
fontenele / README.md
Last active August 29, 2015 14:21 — forked from dnozay/README.md

Reset root/admin password

Lost the root/admin password? You can reset it using the command-line. Recipe adapted from gitlab issue #308.

# start the console
sudo gitlab-rails console
@fontenele
fontenele / ie67891011-css-hacks.txt
Created July 29, 2016 19:43 — forked from ricardozea/ie67891011-css-hacks.txt
IE CSS hacks - IE6, 7, 8, 9, 10, 11
IE6 Only
==================
_selector {...}
IE6 & IE7
==================
*html or { _property: }
IE7 Only
==================
https://www.axllent.org/docs/view/nodejs-service-with-systemd/