Skip to content

Instantly share code, notes, and snippets.

View EnesKorukcu's full-sized avatar
🎯

Enes Korukcu EnesKorukcu

🎯
  • Amsterdam
View GitHub Profile
@gamsd
gamsd / akka-http-simple
Created April 3, 2015 21:42
Akka HTTP extremely simple example
import akka.actor.ActorSystem
import akka.http.Http
import akka.http.marshallers.sprayjson.SprayJsonSupport._
import akka.http.model.StatusCodes._
import akka.http.server.Directives._
import akka.http.server.PathMatchers.IntNumber
import akka.stream.{ActorFlowMaterializer, FlowMaterializer}
import spray.json.{DefaultJsonProtocol, _}
import scala.concurrent.ExecutionContextExecutor
@rmoff
rmoff / foo.md
Last active January 5, 2024 17:17
cx_Oracle install on MacOS
  1. Download Instant Client:
  • instantclient-basic-macos.x64-11.2.0.4.0.zip
  • instantclient-sdk-macos.x64-11.2.0.4.0.zip
  • instantclient-sqlplus-macos.x64-11.2.0.4.0.zip
  1. Unzip and move to /opt

  2. Create symlink

@arunoda
arunoda / gist:7790979
Last active February 16, 2024 14:05
Installing SSHPass

Installing SSHPASS

SSHPass is a tiny utility, which allows you to provide the ssh password without using the prompt. This will very helpful for scripting. SSHPass is not good to use in multi-user environment. If you use SSHPass on your development machine, it don't do anything evil.

Installing on Ubuntu

apt-get install sshpass

Installing on OS X