Link
Quote
"

It MUST be possible to combine the multiple header fields into one “field-name: field-value” pair, without changing the semantics of the message, by appending each subsequent field-value to the first, each separated by a comma.

Read more: http://www.w3.org/Protocols/rfc2616/rfc2616-sec4.html#sec4.2

"
Tags: http spec
Photo
nikf:

I need this at the office. Thanks Tim

nikf:

I need this at the office. Thanks Tim

Link

There are many different ways of providing Emacs with a Clojure REPL for a project. A few people have asked me how to do this recently, so I thought I’d mention the different methods I’ve used.

Shell script

You can create a command-line script that runs java, executing the clojure.main class…

Text

kill -0

Have you seen kill -0 before? I haven’t since very recent.
Here is what info kill has to say about it.

kill [-s SIGNAL | —signal SIGNAL | -SIGNAL] PID…
kill [-l | —list | -t | —table] [SIGNAL]…

The first form of the `kill’ command sends a signal to all PID
arguments.  The default signal to send if none is specified is `TERM’.
The special signal number `0’ does not denote a valid signal, but can
be used to test whether the PID arguments specify processes to which a
signal could be sent.

So what’s the use for it?

I found it useful in bash scripts if you wan’t to make sure that processes are not overlapping.

$ kill -0 >/dev/null 2>&1 6008
$ echo $?
0
$ kill -0 >/dev/null 2>&1 6009
$ echo $?
1

As you can see in that case 6008 existed and 6009 not.

tl;dr

Photo
Amsterdam Clojurians Meetup 2.You might not see that but on the screen is source of for.

Amsterdam Clojurians Meetup 2.
You might not see that but on the screen is source of for.

Link

Found it very useful in last days.

Link
Video

IJjskiten - #Ice #Kiting

Video
Tags: clojure