- Extraer
ideaIU-2018.2.6.tar.gz
en alguna carpeta. - Por consola ejecutar
./idea-IU-182.5107.16/bin/idea.sh
. - Al momento de poner la licencia, seleccionar registración offline y pegar el código que está en
Licencia IDEA hasta 2019-03-29.txt
. - Una vez abierto, seleccionar
Configure -> Create Desktop Entry
. - Cerrar y abrirlo como un programa más de Ubuntu.
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
#!/usr/bin/env bash | |
# USAGE: ./decompile-java-classes.sh -d {cfr jar} -i {input directory} -n {fiel name pattern} -o {output directory} | |
# Output directory and file name is optional | |
# File name accepts wildcard such as '*' | |
OUTPUTDIR="/tmp/decompiled-classes/" | |
FILE_NAME="*" |
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
// First enable JQuery on the page | |
var jq = document.createElement('script'); | |
jq.src = "https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"; | |
document.getElementsByTagName('head')[0].appendChild(jq); | |
// Then, (After Jquery is in page) select your default option | |
var selectValue = '100%'; | |
$('body > div > div > form > div > div:nth-child(6) > table') | |
.find('select > option') | |
.filter(function () { return $(this).html() == selectValue; }) |
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
[package] | |
name = "toy-load-balancer" | |
version = "0.1.0" | |
authors = ["Cristian Spinetta <[email protected]>"] | |
[dependencies] | |
log = "0.3" | |
#env_logger="0.4.3" | |
pretty_env_logger = "0.1" |
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
package kamon.netty | |
import java.lang | |
import io.netty.bootstrap.Bootstrap | |
import io.netty.channel._ | |
import io.netty.channel.nio.NioEventLoopGroup | |
import io.netty.channel.socket.SocketChannel | |
import io.netty.channel.socket.nio.NioSocketChannel | |
import io.netty.handler.codec.http.{HttpContent, LastHttpContent, _} |
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 pureconfig.{ConfigReader, ConvertHelpers} | |
import scala.concurrent.duration.TimeUnit | |
trait ConfigReaders { | |
import ConvertHelpers._ | |
implicit val dayOfWeekReader: ConfigReader[TimeUnit] = | |
ConfigReader.fromString[TimeUnit](catchReadError(s => TimeUnitConverter.timeUnit(s))) | |
} |
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
* Implementar `MyOptional` | |
* Implementar `StudentsAnalyzer` |
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
package base.serializer | |
import com.fasterxml.jackson.annotation.JsonAutoDetect.Visibility | |
import com.fasterxml.jackson.annotation.{JsonInclude, PropertyAccessor} | |
import com.fasterxml.jackson.databind._ | |
import com.fasterxml.jackson.datatype.jdk8.Jdk8Module | |
import com.fasterxml.jackson.datatype.jsr310.JavaTimeModule | |
import com.fasterxml.jackson.module.scala.DefaultScalaModule | |
import com.fasterxml.jackson.module.scala.experimental.ScalaObjectMapper | |
import play.api.libs.json.{JsValue, Json} |
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
#!/usr/bin/env python3 | |
import os | |
import re | |
import sys | |
import subprocess | |
import curses | |
import traceback | |
import argparse | |
from curses import wrapper |
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
version: '3.4' | |
services: | |
external-api: | |
image: cspinetta/workshop-external-api:0.1 | |
network_mode: "host" | |
# ports: | |
# - "9290:9290" | |
internal-api: | |
image: cspinetta/workshop-internal-api:0.1 | |
network_mode: "host" |
OlderNewer