The default JDK store is in:
<JDK>\lib\security\cacerts
Add a certificate with keytool:
<JDK>\bin\keytool.exe -importcert -file my-cert.cer -alias 'My cert' -keystore <JDK>\lib\security\cacerts -storepass "changeit"
Marka | Model | Rok | Wlasciciel | |
---|---|---|---|---|
Skoda | Octavia | 2000 | Mira | |
Kia | Sorento | 2022 | Piotr | |
Skoda | Felicia | 1995 | Waldek | |
Fiant | Punto | 2003 | Marta |
package ca.venasse.hooks | |
import org.scalajs.dom.html | |
import slinky.core.facade.ReactRef | |
import scala.scalajs.js | |
import scala.scalajs.js.JSConverters._ | |
import scala.scalajs.js.annotation.JSImport | |
import scala.scalajs.js.| |
#!/bin/sh | |
# Inspired by https://gist.github.com/daktak/f887352d564b54f9e529404cc0eb60d5 | |
# Inspired by https://gist.github.com/jpouellet/d8cd0eb8589a5b9bf0c53a28fc530369 | |
ip() { qvm-prefs -g -- "$1" ip; } | |
netvm() { qvm-prefs -g -- "$1" netvm; } | |
forward() { | |
local from_domain=$1 | |
local to_domain=$2 |
import scalaz.zio._ | |
import scalaz.zio.interop.future._ | |
import scala.concurrent.{ ExecutionContext, Future } | |
import scala.concurrent.duration._ | |
object ZioScheduleTest extends App { | |
var counter = 0 | |
def futureF(): Future[Int] = { |
import DS from 'ember-data'; | |
let ApplicationAdapter = DS.RESTAdapter.extend({ | |
namespace: 'api', | |
}); | |
export default ApplicationAdapter; |
I hereby claim:
To claim this, I am signing this object:
import cats.data.IdT | |
import cats.{~>, Id, Monad} | |
import freestyle.tagless.logging.LoggingM | |
import freestyle.tagless._ | |
import sourcecode.{File, Line} | |
@tagless trait Summer { | |
def sum(a: Int, b: Int): FS[Int] | |
} |
import classy.{DecodeError, Read} | |
import classy.config.ConfigDecoder | |
import com.typesafe.config.Config | |
import scala.util.{Failure, Success, Try} | |
object ConfigReader { | |
def apply[A](f: String => A): Read[Config, A] = { path => | |
ConfigDecoder.instance[A] { config => | |
Try(f(config.getString(path))) match { |
import cats.effect.IO | |
import freestyle.free._ | |
import freestyle.free.implicits._ | |
@free trait Logger { | |
def debug(message: String): FS[Unit] | |
} | |
@free trait Summer { | |
def sum(a: Int, b: Int): FS[Int] |