Packlista för Atlantavistelsen
Bör ligga i handbagage.
- För gränskontroll, checkin etc.
- Pass
| {-# LANGUAGE GeneralizedNewtypeDeriving #-} | |
| module Amb where | |
| import Control.Monad | |
| newtype Amb a = Amb { unAmb :: [a] } | |
| deriving(Monad) | |
| safeHead :: [a] -> Maybe a | |
| safeHead (x:_) = Just x |
| //Arash Rouhani | |
| #define _GLIBCXX_DEBUG | |
| //#define NDEBUG | |
| #include <iostream> | |
| #include <iomanip> | |
| #include <vector> | |
| #include <algorithm> | |
| #include <sstream> | |
| #include <string> | |
| #include <math.h> |
I don't know why, but this "worked for me"
gem uninstall bundler
gem install bundler -v '< 1.1'
This is my xmonad+unity panel config. With this config, you'll have a well integrated panel from unity but still have xmonad as your window manager with your gnome apps, including the pretty gnome-terminal (for those too lazy to learn xmoobar).
This config doesn't have the unity launcher, mainly becuse it causes windows to be unfloatable, besides I'm not fond of it anymore.
Copy and paste these lines (or understand what it does and do it manually).
This gist is part of a blog post. Check it out at:
http://jasonrudolph.com/blog/2011/08/09/programming-achievements-how-to-level-up-as-a-developer
| -- requires your system has `xdotool` installed | |
| gmailInFirefox = | |
| spawn "xdotool search 'Mozilla Firefox' windowactivate --sync key --clearmodifiers 'alt+1'" | |
| -- ... | |
| -- example usage | |
| keys = const $ M.fromList [ | |
| ((mod4Mask, xK_d ), gmailInFirefox) |
| ii latex-beamer 3.10-1 LaTeX class to produce presentations | |
| ii latex-xcolor 2.11-1 Easy driver-independent TeX class for color | |
| ii preview-latex-style 11.86-2ubuntu1 extraction of elements from LaTeX documents as graphics | |
| ii texlive-latex-base 2009-15 TeX Live: Basic LaTeX packages | |
| ii texlive-latex-base-doc 2009-15 TeX Live: Documentation files for texlive-latex-base | |
| ii texlive-latex-extra 2009-10ubuntu1 TeX Live: LaTeX supplementary packages | |
| ii texlive-latex-extra-doc 2009-10ubuntu1 TeX Live: Docum |
| @@ -170,8 +170,8 @@ ActiveRecord::Schema.define(:version => 20120307214249) do | |
| t.string "watchable_type" | |
| t.integer "watchable_id" | |
| t.string "action" | |
| - t.datetime "created_at" | |
| - t.datetime "updated_at" | |
| + t.datetime "created_at", :null => false | |
| + t.datetime "updated_at", :null => false | |
| t.boolean "notify_by_email", :default => false |
| @@ -345,6 +346,7 @@ DEPENDENCIES | |
| eco | |
| exception_notification! | |
| factory_girl_rails | |
| + fakefs | |
| foreman |