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:
I hereby claim:
To claim this, I am signing this object:
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; |
# 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 |
{ | |
"data": [ | |
{ | |
"id": 1, | |
"firstname": "Raul", | |
"lastname": "Mangolin", | |
"email": "[email protected]", | |
"position": "Developer", | |
"department": "TI", | |
"isEmployee": true, |
<!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"> |
<?php | |
class NationBuilder | |
{ | |
public $siteSlug = 'sandbox825'; | |
public $baseApiUrl = ''; | |
public $token = ''; | |
public function __construct() |
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 |
<!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"); | |
} |