λλarkedista Blog

Second Post Title

GFM-Example

GitHub Flavored Markdown Example

Index

 This is head1
 =============

 This is head 2
 --------------

This is head1

This is head 2

table (PHP-Markdown style)

First Header  | Second Header
------------- | -------------
Content Cell  | Content Cell
Content Cell  | Content Cell
First HeaderSecond Header
Content CellContent Cell
Content CellContent Cell
| Item      | Value |
| --------- | -----:|
| Computer  | $1600 |
| Phone     |   $12 |
| Pipe      |    $1 |
ItemValue
Computer$1600
Phone$12
Pipe$1

Foggy Road

code

this is code block
get '/' do
  "Hello world "
end
get '/' do
  "Hello world "
end
trait TSDBWriter
  protected implicit val scheduler: Scheduler
  protected val metrics = Metrics.openTSDBMetrics

  def config: TSDBConfig

  def publishMessages(tsDataPoints: List[TSDataPoint]): Task[Continue]

  def persistLeadershipValue(status: LeadershipStatus, now: DateTime): Task[Continue] =
    val metric = "assetEngine.leadershipState"
    val dp = TSDataPoint(
      metric = metric,
      timestamp = now.getMillis,
      value = if (status.isMaster) 1 else 0,
      tags = Map("host" -> s"${status.hostname}/${status.address}")
    )

    publishMessages(List(dp))

  case class SomeCaseClass(attr1: String, attr2: Double)

To the Black Lodge

const fs = require('fs')
const {promisify} = require('util')
const marked = require('marked')
const frontmatter = require('yaml-front-matter')
const jsdom = require('jsdom')
const { JSDOM } = jsdom
const colors = require('colors')

colors.setTheme({
  silly: 'rainbow',
  input: 'grey',
  verbose: 'cyan',
  prompt: 'grey',
  info: 'green',
  data: 'grey',
  help: 'cyan',
  warn: 'yellow',
  debug: 'blue',
  error: 'red'
})
http://mukaer.com

http://mukaer.com

Factory Clouds

Task Lists

- [x] @mentions, #refs, [links](), **formatting**, and <del>tags</del> supported
- [x] list syntax required (any unordered or ordered list supported)
- [x] this is a complete item
- [ ] this is an incomplete item

emphasis: bold, italic and strikethrough

This is __bold__, **also bold**
This is _italic_, *also italic*
Combined emphasis with **bold and _italic_**.
This is ~~strikethrough~~

This is bold, also bold

This is italic, also italic

Combined emphasis with bold and italic.

This is strikethrough

superscript and superscript

superscript: 2<sup>nd</sup>
subscript: log<sub>5</sub>n

superscript: 2nd

subscript: log5n

Twitter Facebook LinkedIn Copy Link
#tag2 #tag3 #tag4 #tag5 #tag6