-
Hey there,
I'm a huge fan of Cucumber in Ruby, and am now starting to learn Golang. I was able to get the Gherkin plugin installed to GoLand and the features formatter works great! I installed th…
-
After all the discussion on the meetup about how long the first few steps should take during class, I decided to do a speed run and see how fast I could get through the first 4 steps of [7 Degrees of …
-
```
seq(100) | |x|
if x % 15 == 0
"FizzBuzz"
else if x % 3 == 0
"Fizz"
else if x % 5 == 0
"Buzz"
else
x
| STDOUT
```
Indentation could be used instead.
-
Hi.
I'm in process of writting vala bindings (WIP), and it would be really helpful to have some examples of the usage/workflow of this library.
Up to now I was trying to learn how to use it by read…
-
I've been doing a lot of reading about teaching/learning (what else is new, eh?) and something I think is missing from the newbie curriculum and teaching yourself Ruby in general is "discoverability".…
-
Written on 12/01/2016 16:02:28
URL: https://nsscreencast.com/episodes/246-improved-guard-setup-for-swift
-
Hey,
I came across Art of Chording and I've been really interested in the subject. I have one lingering question though: as a programmer, I was wondering how one would enter things such as identife…
-
The following is a comment by [Steven Harms](http://rubyrogues.com/080-rr-practical-metaprogramming-with-steven-harms/) on the [Ruby Rogues](http://rubyrogues.com) "Parley" mailing list. The original …
-
``` go
package main
import (
"C"
"fmt"
)
var (
c chan string
)
func init() {
c = make(chan string)
go func() {
n := 1
for {
switch {
case…
mattn updated
6 months ago
-
> 在2~5章,我们已经讨论了几个熟悉的计算机示例:命令示编程语言、状态机,以及通用计算机。那些示例向我们展示了计算差不多就是使用一个系统操作信息并回答问题的过程。在第二部分我们将会大胆一些,先在不熟悉的地方寻求计算,最后探索关于计算机器所做之事的根本限制。
- [ ] 6.1 模拟lambda演算
- [ ] 6.1.1 使用proc工作
- [ ] 6.1.2 问题
-…