sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
- Download zsh-autosuggestions by
import org.mockito.Mockito; | |
import org.mockito.invocation.InvocationOnMock; | |
import org.mockito.stubbing.Answer; | |
import org.testng.Assert; | |
import org.testng.annotations.Test; | |
public class MyUnitTest { | |
int executions; | |
class ServiceA { | |
final ServiceB runner; |
package main | |
import ( | |
"fmt" | |
"labix.org/v2/mgo" | |
"labix.org/v2/mgo/bson" | |
"time" | |
) | |
type Person struct { |
package main | |
import ( | |
"fmt" | |
"io" | |
"os" | |
) | |
var path = "/Users/novalagung/Documents/temp/test.txt" |
{ | |
"regiones": [{ | |
"region": "Arica y Parinacota", | |
"comunas": ["Arica", "Camarones", "Putre", "General Lagos"] | |
}, | |
{ | |
"region": "Tarapacá", | |
"comunas": ["Iquique", "Alto Hospicio", "Pozo Almonte", "Camiña", "Colchane", "Huara", "Pica"] | |
}, |
[ | |
{ | |
"name": "Arica", | |
"code": "15101", | |
"provincia": "Arica", | |
"region": "Arica y Parinacota", | |
"region_number": "XV", | |
"region_iso_3166_2": "CL-AP" | |
}, | |
{ |
package main | |
// using asymmetric crypto/RSA keys | |
import ( | |
"crypto/rsa" | |
"fmt" | |
"io/ioutil" | |
"log" | |
"net/http" |
import 'dart:math'; | |
class Rectangle { | |
int width; | |
int height; | |
Point origin; | |
Rectangle({this.origin = const Point(0, 0), this.width = 0, this.height = 0}); | |
@override |
package handlers | |
import ( | |
"encoding/json" | |
"fmt" | |
"github.com/labstack/echo" | |
"gitlab.com/skolldevs-backend/indahouse-api/database" | |
"gitlab.com/skolldevs-backend/indahouse-api/models" | |
"golang.org/x/oauth2" | |
"golang.org/x/oauth2/facebook" |
# Vamos a definir los servicios y contenedores a usar | |
version: '3' | |
services: | |
# Preparamos el cliente | |
angular: | |
image: angular-cli:v1 # | |
ports: | |
- "4200:4200" # Puerto del cliente | |
# Preparamos el servidor | |
servidor: |