create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
| package recfun | |
| import scala.collection.mutable.ListBuffer | |
| import common._ | |
| /** https://class.coursera.org/progfun-2012-001/assignment/view?assignment_id=4 */ | |
| object Main { | |
| def main(args: Array[String]) { | |
| println("Pascal's Triangle") | |
| for (row <- 0 to 10) { |
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
| package tests01 | |
| object lab { | |
| object PreparedStatement { | |
| case class Param[A](val index : Int, val value : A) | |
| case class BoundSql(val sql: String, val params : Seq[Param[_]]) | |
| ... | |
| libraryDependencies += "commons-codec" % "commons-codec" % "1.7" | |
| ... |
| object HexBytesUtil { | |
| def hex2bytes(hex: String): Array[Byte] = { | |
| hex.replaceAll("[^0-9A-Fa-f]", "").sliding(2, 2).toArray.map(Integer.parseInt(_, 16).toByte) | |
| } | |
| def bytes2hex(bytes: Array[Byte], sep: Option[String] = None): String = { | |
| sep match { | |
| case None => bytes.map("%02x".format(_)).mkString | |
| case _ => bytes.map("%02x".format(_)).mkString(sep.get) |
| package com.github.curioustechizen.safereg; | |
| import android.content.BroadcastReceiver; | |
| import android.content.Context; | |
| import android.content.Intent; | |
| import android.content.IntentFilter; | |
| import android.support.v4.util.ArrayMap; | |
| /** | |
| * Helper class to keep track of what {@code BroadcastReceiver}s have been |
| import scala.actors.Actor | |
| import scala.actors.Actor._ | |
| import javax.mail._ | |
| import javax.mail.internet._ | |
| import java.util.Properties._ | |
| case class Request(sender : Actor, payload : String) | |
| case class Ready(sender : Actor) | |
| case object Stop | |
| object Client extends Application { |
| QDateTime timeConvertor; | |
| QString customDateString = "14-Nov-2010 05:27:03 +0100"; | |
| QString dateTime = customDateString.left(20); | |
| int timezoneOffset = customDateString.right(5).left(3).toInt(); | |
| timeConvertor = QDateTime::fromString(dateTime, "dd-MMM-yyyy HH:mm:ss"); | |
| // Mark this QDateTime as one with a certain offset from UTC, and set that | |
| // offset. | |
| timeConvertor.setTimeSpec(Qt::OffsetFromUTC); |
| import spray.json._ | |
| import reactivemongo.bson._ | |
| import reactivemongo.bson.handlers.{ BSONReader, BSONWriter, RawBSONWriter } | |
| import scala.util.{ Try, Success, Failure } | |
| import org.apache.commons.codec.binary.Hex | |
| import org.joda.time.format.ISODateTimeFormat | |
| import org.joda.time.{ DateTime, DateTimeZone } | |
| import java.nio.ByteBuffer | |
| import org.jboss.netty.buffer.ChannelBuffers |
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"