I hereby claim:
- I am jlesquembre on github.
- I am jlesquembre (https://keybase.io/jlesquembre) on keybase.
- I have a public key whose fingerprint is 861E 4236 005A CB35 220D 8147 09AF B79F 061A CD6C
To claim this, I am signing this object:
| #!/bin/sh | |
| echo "deb http://download.opensuse.org/repositories/home:/pgquiles:/Wt/Debian_6.0/ ./" >> /etc/apt/sources.list | |
| echo "deb http://backports.debian.org/debian-backports squeeze-backports main" >> /etc/apt/sources.list | |
| aptitude update | |
| aptitude install witty git | |
| aptitude -t squeeze-backports install cmake |
| #!/bin/sh | |
| # Prepare folders for debian repository | |
| FOLDER="debs/remoteadmin" | |
| if [ -d "$FOLDER" ]; then | |
| rm -rf $FOLDER | |
| fi | |
| mkdir -p $FOLDER | |
| echo "remoteadmin optional misc" > $FOLDER/override |
| #!/bin/bash | |
| # This hook is run after a new virtualenv is activated. | |
| # ~/.virtualenvs/postmkvirtualenv | |
| libs=( PyQt4 sip.so ) | |
| python_version=python$(python -c "import sys; print (str(sys.version_info[0])+'.'+str(sys.version_info[1]))") | |
| var=( $(which -a $python_version) ) | |
| get_python_lib_cmd="from distutils.sysconfig import get_python_lib; print (get_python_lib())" |
| from twisted.web.server import Site | |
| from twisted.web.static import File | |
| from twisted.internet import reactor | |
| static_path = '/path/to/folder' | |
| class ResponseFile(File): | |
| def render(self, request): |
| { | |
| "metadata": { | |
| "celltoolbar": "Slideshow", | |
| "name": "", | |
| "signature": "sha256:b392c503122c5ac4b5ed7cb8d3ce0d2ba9fce4f4d8596d0ed399df0e06bc778a" | |
| }, | |
| "nbformat": 3, | |
| "nbformat_minor": 0, | |
| "worksheets": [ | |
| { |
| # $Id$ | |
| # Maintainer: José Luis Lafuente <[email protected]> | |
| # Contributor: Arthur Vuillard <[email protected]> | |
| pkgname='python-pew' | |
| pkgver=0.1.14 | |
| pkgrel=1 | |
| pkgdesc="Python Env Wrapper, a set of tools to manage multiple virtual environments" | |
| url="https://github.com/berdario/pew" | |
| arch=('any') |
I hereby claim:
To claim this, I am signing this object:
| let | |
| # First time it will take some time | |
| pkgs = import (fetchTarball https://github.com/nixos/nixpkgs/archive/22a81aa5fc15b2d41b12f7160a71cd4a9f3c3fa1.tar.gz) { }; | |
| JANET_PATH = toString ./janet; | |
| in | |
| pkgs.mkShell { | |
| inherit JANET_PATH; | |
| buildInputs = [ | |
| pkgs.janet | |
| ]; |
| { config, pkgs, ... }: | |
| let | |
| # 20.03 channel | |
| pkgs-2003 = import (fetchTarball https://github.com/nixos/nixpkgs-channels/archive/nixos-20.03.tar.gz) {}; | |
| # unstable channel | |
| pkgs-unstable = import (fetchTarball https://github.com/nixos/nixpkgs-channels/archive/nixos-unstable.tar.gz) {}; | |
| # specific commit |
| # Usage: | |
| # nix-shell --command nvim | |
| { pkgs ? import (fetchTarball "https://github.com/NixOS/nixpkgs/archive/b9ba82ef8ad6d8997840332ca3a2986e360291e3.tar.gz") { } }: | |
| let | |
| myNeovim = pkgs.neovim.override { | |
| configure = { | |
| customRC = '' | |
| " here your custom configuration goes! | |
| set termguicolors |