I hereby claim:
- I am chaos95 on github.
- I am chaos95 (https://keybase.io/chaos95) on keybase.
- I have a public key ASBEZ1J9WN4k_QutDtQRL2IhMOBMxAuGUbx23eQ73kzKgQo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
[ | |
{ | |
"caption": "Word Wrap: Toggle", | |
"command": "toggle_setting", | |
"args": {"setting": "word_wrap"} | |
}, | |
{ | |
"caption": "Convert Case: Upper Case", | |
"command": "upper_case" | |
}, |
using System.Collections.Generic; | |
using System.ComponentModel.DataAnnotations; | |
public class BigContainer | |
{ | |
[Key] | |
public virtual int BigContainerID { get; set; } | |
public virtual ICollection<LittleContainer> LittleContainers { get; set; } | |
} |
package lsystems | |
import ( | |
"bytes" | |
) | |
func lsystem_buffer(s *bytes.Buffer, rules []string) { | |
tmpbuf := bytes.NewBuffer(make([]byte, 0, 1e6)) | |
for _, b := range s.Bytes() { |
# found at http://stackoverflow.com/questions/566746/how-to-get-console-window-width-in-python/566752#566752 | |
def getTerminalSize(): | |
def ioctl_GWINSZ(fd): | |
try: | |
import fcntl, termios, struct, os | |
cr = struct.unpack('hh', fcntl.ioctl(fd, termios.TIOCGWINSZ, | |
'1234')) | |
except: | |
return None | |
return cr |
import XMonad | |
import XMonad.ManageHook | |
import XMonad.Hooks.ManageHelpers | |
import XMonad.Hooks.ManageDocks | |
import XMonad.Hooks.SetWMName | |
import XMonad.Hooks.UrgencyHook | |
import XMonad.Hooks.DynamicLog | |
import XMonad.Hooks.FadeInactive | |
import XMonad.Layout.Accordion | |
import XMonad.Layout.PerWorkspace |