Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View czyzykowski's full-sized avatar

Łukasz Czyżykowski czyzykowski

View GitHub Profile

Keybase proof

I hereby claim:

  • I am czyzykowski on github.
  • I am czyzykowski (https://keybase.io/czyzykowski) on keybase.
  • I have a public key ASDN2LDfH8B29PJZ--oMvMQEEHOQMRSLBF671AqqaQeBFwo

To claim this, I am signing this object:

@czyzykowski
czyzykowski / nix.fish
Created May 14, 2017 15:22
Translation of the latest (2017-05-14) nix.sh to fish
if test -n $HOME
set NIX_LINK $HOME/.nix-profile
# Set the default profile.
if test ! -L "$NIX_LINK"
echo "creating $NIX_LINK" >&2
set _NIX_DEF_LINK /nix/var/nix/profiles/default
ln -s "$_NIX_DEF_LINK" "$NIX_LINK"
end
@czyzykowski
czyzykowski / markdown.py
Created March 9, 2016 12:17
Markdown file processor for Cactus static website generator.
from __future__ import unicode_literals
import codecs
from os import remove
from markdown2 import Markdown
from cactus.utils.filesystem import fileList
# requires markdown2 package, to install it run
# pip install markdown2
@czyzykowski
czyzykowski / about.md
Last active December 16, 2015 12:19 — forked from basus/about.md

Programming Achievements: How to Level Up as a Developer

  1. Select a particular experience to pursue.
  2. Pursue that experience to completion. (Achievement unlocked!)
  3. Reflect on that experience. Really soak it in. Maybe a blog post would be in order?
  4. Return to Step 1, this time selecting a new experience.

This gist is a fork of this other gist which is itself a fork of a gist from this blog post.

# These instructions work for OS X 10.8.2 with homebrew pre-installed.
brew install python --framework
brew install gfortran
# install other dependencies through pip:
pip install numpy
# the regular pip build for matplotlib is b0rken, and it can't find the built-in libraries for OSX
export LDFLAGS="-L/usr/X11/lib"
@czyzykowski
czyzykowski / about.md
Created August 9, 2011 15:13 — forked from jasonrudolph/about.md
Programming Achievements: How to Level Up as a Developer