Possibility to print inline monospace text
is very important because
- We
- Can
- Embed
- It
into lists
:)
from pprint import pprint | |
def parseField(input): | |
return dict( { 'cells': parseCells(input), | |
'cages': parseCages(input) }) | |
def parseCells(input): | |
solutionMaybe = solution(input) | |
if solutionMaybe: | |
return solutionMaybe |
Install ms-sys | |
You will need ms-sys to write a Master Boot Record (MBR) to the USB drive. | |
Make sure you have installed the gcc, make, and gettext repository packages in order to compile the source code. | |
Download the latest source code from http://ms-sys.sourceforge.net/#Download. | |
Un-tar the source code and change into the source code directory: | |
tar xvzf ms-sys-2.3.0.tar.gz |
! 256 COLOURS | |
*termName: xterm-256color | |
! WHY DO WE EVEN NEED THIS? | |
URxvt.geometry: 155x56 | |
! DISABLE ISO14755 | |
URxvt.iso14755: false | |
! UBUNTU MONO |
Possibility to print inline monospace text
is very important because
into lists
:)defmodule ArchJS do | |
use Application | |
import ArchJS.Macros.Sup | |
defsup User, [] do | |
defsofo Sessions, ArchJS.User.Session | |
children = [ | |
worker(ArchJS.User.Registry, []), | |
worker(ArchJS.User.Sessions, []) | |
] |
........... | |
..... ..... | |
..... ..... | |
..... ..... | |
..OOOO |
$$$$$o oo ooo | |
o$$$ o$$$$$o o$o o$$o | |
o$$ o$$$ o$$o o$$o | |
o$$$$ ooo$$$ o$$$o oo$$o oo$$$$$$o o$$o ooo$$$ | |
$$$$$ oo$$$$ $$$ $oo o$$$oo o$$ o$$o o$$o $$$ $oo | |
o$$$$$ oo$$ o$$$ o$$$ oo$ o$$$o $$$ |
,$eeeee/ | |
j `$$ | |
`$ | |
|$ | |
=e$= \o \oo | |
|$ |$\ /$$ | |
|$ |$$\ /$|$ | |
|$ |$ v |$ |
[guest@nixvm:~/haskell]$ cat default.nix | |
{ haskellPackages ? (import <nixpkgs> {}).haskellPackages }: | |
let | |
inherit (haskellPackages) cabal cabalInstall mtl transformers; | |
in cabal.mkDerivation (self: { | |
pname = "test"; | |
version = "0.1.0.0"; | |
isExecutable = true; | |
src = ./.; |
➜ ~ cat nope.ex # we can, however, redefine +,- et al. Though it's not that useful: | |
defmodule Nope do | |
def left + right do | |
left <> " ZOMG " <> right | |
end | |
end | |
➜ ~ elixirc nope.ex | |
➜ ~ iex | |
➜ ~ ERL_LIBS=. iex | |
Erlang R16B02 (erts-5.10.3) [source] [64-bit] [smp:4:4] [async-threads:10] [hipe] [kernel-poll:false] |