| Scalaz | |||
| Symbol | Code | Ascii | Example |
|---|---|---|---|
| η | 951 | pure | 1.η[List] |
| μ | 03BC | join | List(List(1,2,3), nil, List(5,6,7)) μ |
| ∅ | 2205 | zero | ∅[Int] |
| <∅> | empty | <∅>[Option, Int] |
|
| ∙ | 2219 | contramap | ((_:String).length ∙ (_:Int).toString ∙ ((_:Int) + 6))(5) |
| ∘ | 2218 | map | (((_:Int) + 6) ∘ (_:Int).toString ∘ (_:String).length)(5) |
| ∘∘ | |||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import com.newrelic.api.agent.NewRelic | |
| import collection.mutable.{HashMap, SynchronizedMap} | |
| import com.yammer.metrics.{Timer, MetricsGroup} | |
| trait Measurable { | |
| protected lazy val metricsGroup = new MetricsGroup(this.getClass) | |
| private val timers = new HashMap[String, Timer] with SynchronizedMap[String, Timer] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env ruby | |
| require 'rubygems' | |
| require 'redcarpet' | |
| require 'pygments.rb' | |
| class HTMLwithPygments < Redcarpet::Render::HTML | |
| def block_code(code, language) | |
| Pygments.highlight(code, :lexer => language.to_sym, :options => { | |
| :encoding => 'utf-8' | |
| }) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| Copyright 2012-2021 Viktor Klang | |
| Licensed under the Apache License, Version 2.0 (the "License"); | |
| you may not use this file except in compliance with the License. | |
| You may obtain a copy of the License at | |
| http://www.apache.org/licenses/LICENSE-2.0 | |
| Unless required by applicable law or agreed to in writing, software |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE en-export SYSTEM "http://xml.evernote.com/pub/evernote-export2.dtd"> | |
| <en-export export-date="20120727T073610Z" application="Evernote" version="Evernote Mac 3.0.5 (209942)"> | |
| <note><title>Vim Tips</title><content><![CDATA[<?xml version="1.0" encoding="UTF-8" standalone="no"?> | |
| <!DOCTYPE en-note SYSTEM "http://xml.evernote.com/pub/enml2.dtd"> | |
| <en-note style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"> | |
| yank for copy, delete for cut, put for parse | |
| <div><br/></div> | |
| <div>Move in context, not position</div> | |
| <div>/ search forward</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {:provider "vmfest" | |
| :environment{ | |
| :phases {:bootstrap | |
| (fn [session] | |
| (let [p (ns-resolve | |
| 'pallet.action.package 'package-manager)] | |
| (-> | |
| session | |
| (p :configure :proxy "http://10.0.2.2:3128"))))} | |
| :proxy "http://10.0.2.2:3128"}} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| snmpd: | |
| pkg.installed: | |
| - name: {{ pillar['snmpd'] }} | |
| - order: 1 | |
| /etc/snmp/snmpd.conf: | |
| file.managed: | |
| - source: salt://etc/snmp/snmpd.conf | |
| - template: jinja | |
| - requires: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import spark.streaming.StreamingContext._ | |
| import spark.streaming.{Seconds, StreamingContext} | |
| import spark.SparkContext._ | |
| import spark.storage.StorageLevel | |
| import spark.streaming.examples.twitter.TwitterInputDStream | |
| import com.twitter.algebird.HyperLogLog._ | |
| import com.twitter.algebird._ | |
| /** | |
| * Example of using HyperLogLog monoid from Twitter's Algebird together with Spark Streaming's |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Welcome to Scala version 2.10.2 (Java HotSpot(TM) 64-Bit Server VM, Java 1.6.0_24). | |
| Type in expressions to have them evaluated. | |
| Type :help for more information. | |
| scala> import rapture.core._ | |
| import rapture.core._ | |
| scala> import rapture.json._ | |
| import rapture.json._ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import shapeless._ | |
| sealed trait List[+T] | |
| case class Cons[T](hd: T, tl: List[T]) extends List[T] | |
| sealed trait Nil extends List[Nothing] | |
| case object Nil extends Nil | |
| trait Show[T] { | |
| def apply(t: T): String | |
| } |