Grafico de barras de la Población por Provincias, usando D3 con SVG
This file contains 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'?><wsdl:definitions name="WebCallback418" targetNamespace="http://impl.webcallback.callback.csi.avaya.com/" xmlns:ns1="http://webcallback.callback.csi.avaya.com/" xmlns:ns2="http://schemas.xmlsoap.org/soap/http" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns="http://impl.webcallback.callback.csi.avaya.com/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> | |
<wsdl:import location="http://135.122.60.153:8081/webcallback/WebCallback418?wsdl=WebCallbackWs418.wsdl" namespace="http://webcallback.callback.csi.avaya.com/"> | |
</wsdl:import> | |
<wsdl:binding name="WebCallback418SoapBinding" type="ns1:WebCallbackWs418"> | |
<soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/> | |
<wsdl:operation name="getWebCallbackRequestStatus"> | |
<soap:operation soapAction="" style="document"/> | |
<wsdl:input name="getWebCallbackRequestStatus"> | |
<soap:body use="literal"/> | |
</wsdl:input> |
This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<script src="http://d3js.org/d3.v3.min.js"></script> | |
<script type="text/javascript" src="https://www.google.com/jsapi"></script> | |
<meta charset="utf-8"> | |
<title>Tree map Provincias Arg</title> | |
</head> | |
<body> |
This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<script src="http://d3js.org/d3.v3.min.js"></script> | |
<meta charset="utf-8"> | |
<title>Diplomatura Big Data - ITBA</title> | |
<style id="jsbin-css"> | |
.chart div { | |
font: 10px sans-serif; | |
background-color: steelblue; |
This file contains 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
<keymap> | |
<global> | |
<remote> | |
<skipminus>XBMC.Action(reloadkeymaps)</skipminus> | |
<stop>XBMC.ActivateWindow(Home)</stop> | |
<blue>ContextMenu</blue> | |
</remote> | |
</global> | |
<home> | |
<remote> |
This file contains 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
import org.junit.Test; | |
public class AhorroDolarSinEsfuerzoTest { | |
private static final double PERCENTAJE_PERCEPCION_GANANCIAS = 20.0; | |
@Test | |
public void calcularAhorroDolarSinEsfuerzo() throws Exception { | |
final double cotizacionDolarOficial = 8.61; | |
final double cotizacionDolarBlue = 13.00; |