Skip to content

Instantly share code, notes, and snippets.

View baongoc124's full-sized avatar

Ngoc baongoc124

View GitHub Profile
@r-k-b
r-k-b / extract-rfc822-link-from-gmail.user.js
Last active June 27, 2022 17:04
Get an email's RFC822 msgId Link from GMail
@abhin4v
abhin4v / RingTopologySimulation.scala
Created July 12, 2010 19:27
Simulation of Ring network topology using Actors in Scala
import actors.Actor
import actors.Actor._
object RingTopologySimulation extends Application {
case class Message(count: Int)
class Node(id: Int, stops: Int) extends Actor {
var next: Node = null