I'm converting a json-like string into json, and the following code works in the scala repl import org.json4s._ import org.json4s.JsonDSL._ import org.json4s.JsonDSL.WithDouble._ import org.json4s.native.JsonMethods._ val value = "{100:1.50;500:1.00;…
Go 1 Release Notes Introduction to Go 1 Changes to the language Append Close Composite literals Goroutines during init The rune type The error type Deleting from maps Iterating in maps Multiple assignment Returns and shadowed variables Copying struct…
原书链接: http://www.amazon.com/Adaptive-Code-via-principles-Developer-ebook/dp/B00OCLLYTY/ref=dp_kinw_strp_1 这本书的标题很失败:它不是讲C#而是讲敏捷的.不知道是因为Agile这个词用的太多了还是怎么样,弄了个Adaptive在标题里,副标题里倒是有Agile,可惜太不显眼了.如果让我来翻译的话我觉得标题可以是:代码的敏捷之道(基于C#语言进行描述).可能长了点,但毕竟能让人一眼就知道这本书到…
Download and install Scala Download a scala installation package from here. Then install it. Linux scala_package_name=$(ls scala*.tgz | sort -r | head -1) tar -xzf $scala_package_name mv ${scala_package_name%.*} scala Configure system variables: Linu…
http://www.tuicool.com/articles/v6j2Ab Snort is by far the most popular open-source network intrusion detection and prevention system (IDS/IPS) for Linux. Snort can conduct detailed traffic analysis, including protocol analysis, packet content search…
http://clrprofiler.codeplex.com/ http://blogs.msdn.com/b/davbr/archive/2012/11/19/clrprofiler-4-5-released-includes-windows-store-app-support.aspx Rewrite MSIL Code on the Fly with the .NET Framework Profiling API Aleksandr Mikunov This article assum…
到目前为止,Scala 环境下至少存在6种 Json 解析的类库,这里面不包括 Java 语言实现的 Json 类库.所有这些库都有一个非常相似的抽象语法树(AST).而 json4s 项目旨在提供一个单一的 AST 树供其他 Scala 类库来使用. json4s 的使用非常的简单,它可以将类直接转换成 json 格式输出,也支持将 json 格式的数据转换成 class 对象.对于 Scala 和 Java 常见的类型(比如String.Int.java.lang.Integer.java.…
前言 VS Code 高大上的界面.强大的智能联想和庞大的插件市场,着实让人对他爱不释手.虽然可以更改 Qt Creator 的主题,但是 Qt Creator 的代码体验实在差劲.下面就来看看如何在 VS Code 中搭建 Qt 开发环境. 安装拓展 工欲善其事,必先利其器.在开干之前,先来安装一些拓展,他们将提供函数提示.语法高亮等功能. C/C++ 拓展 提供智能联想功能.语法高亮.Debug 等功能,确实很好用.设置 "C_Cpp.autocompleteAddParentheses&q…
上期讨论过OAuth2, 是一种身份认证+资源授权使用模式.通过身份认证后发放授权凭证.用户凭授权凭证调用资源.这个凭证就是一种令牌,基本上是一段没什么意义的加密文,或者理解成密钥也可以.服务方通过这个令牌来获取用户身份信息,也就是说服务端必须维护一个已经获得身份验证的用户信息清单.研究了一下JWT,发现它本身可以携带加密后的一些信息包括用户信息,而这些信息又可以通过同样的加密算法解密恢复.也就是说服务端是可以直接对收到的JWT解密恢复用户信息,这样用起来就方便多了.还记着我们的POS例子里客户…
本文转自:https://msdn.microsoft.com/en-us/library/aa702720(v=vs.110).aspx The PrincipalPermissionAttribute is a declarative means of controlling access to service methods. When using this attribute, the PrincipalPermissionMode enumeration specifies the m…