Skip to content

Instantly share code, notes, and snippets.

View raulmangolin's full-sized avatar
🐴
always from home

Raul Mangolin raulmangolin

🐴
always from home
View GitHub Profile

Keybase proof

I hereby claim:

  • I am raulmangolin on github.
  • I am raulmangolin (https://keybase.io/raulmangolin) on keybase.
  • I have a public key whose fingerprint is EB7F 1146 9BD0 5F3F E00B 7CD6 E803 C989 D8C7 0904

To claim this, I am signing this object:

@raulmangolin
raulmangolin / 1.js
Last active August 1, 2019 14:31
Exercícios Java Escrito
function produto(numeros) {
let resultado = numeros[0];
for (let i = 1; i < numeros.length; i++) {
resultado = resultado * numeros[i]
}
return resultado;
}
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<style type="text/css">
html,body { height: 100%; margin: 0px; padding: 0px; }
#map_canvas {
width:100%;
height:600px;
@raulmangolin
raulmangolin / nginx_cakephp.dev.conf
Created October 5, 2017 18:33 — forked from Linnk/nginx_cakephp.dev.conf
NGINX configuration file for CakePHP projects with subdirectory
# NGINX Configuration for CakePHP projects with url subdirectories.
#
# In a classic-default-generic CakePHP project you can have as many
# independent applications as you want just by copying the app/
# directory. Apache and the .htaccess files will make the magic, but
# in a nginx server you will need a touch to your virtualhost conf.
#
# So, in order to make this:
#
# example.com/ —> ~/cakephp.dev/app/webroot/index.php
@raulmangolin
raulmangolin / issues.md
Last active March 6, 2017 14:17
issues lifemen

Issues

Centralizar tela de 404

DONE - Header de tratamentos nas internas

DONE - Onde estamos footer

  • Links das unidades devem enviar para a página unidades, sem precisar de uma interna

DONE - Faltou adicionar o livechat

@raulmangolin
raulmangolin / all_users.json
Last active March 3, 2017 12:53
Services Example
{
"data": [
{
"id": 1,
"firstname": "Raul",
"lastname": "Mangolin",
"email": "[email protected]",
"position": "Developer",
"department": "TI",
"isEmployee": true,
@raulmangolin
raulmangolin / index.html
Created February 22, 2017 13:05
Encuesta Hacienda
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<!--Add the title of your typeform below-->
<title>¿Conoces el Ministerio de Hacienda?</title>
<!--CSS styles that ensure your typeform takes up all the available screen space (DO NOT EDIT!)-->
<style type="text/css">
@raulmangolin
raulmangolin / NationBuilder.php
Last active February 17, 2017 01:54
Nation Builder Developer Exercises
<?php
class NationBuilder
{
public $siteSlug = 'sandbox825';
public $baseApiUrl = '';
public $token = '';
public function __construct()
@raulmangolin
raulmangolin / Codes.md
Last active December 20, 2021 10:45
Facebook Error Codes
Code Message Info
0 Success
1 API Unknown Possibly a temporary issue due to downtime. Wait and retry the operation. If it occurs again, check you are requesting an existing API.
2 API Service Temporary issue due to downtime. Wait and retry the operation.
3 Unknown method
4 API Too Many Calls Temporary issue due to throttling. Wait and retry the operation, or examine your API request volume.
5 Unauthorized source IP address
8 This method requires an
@raulmangolin
raulmangolin / example.html
Created January 6, 2017 17:45
postMessage example
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>postMessage Example</title>
<script type="text/javascript">
function openWindow(){
window.open("popup.html", "mywindow", "width=350,height=250");
}