Skip to content

Instantly share code, notes, and snippets.

View martialboniou's full-sized avatar

Martial martialboniou

  • Brittany
View GitHub Profile
@martialboniou
martialboniou / Classy Item Filter
Last active July 23, 2021 21:05 — forked from Antnee83/Classy Item Filter
3.15a: Expedition League (testing!)
# Hondana's Classy Filter! v3.15.0a AKA Flashy Filter!
# A fork of the popular Antnee's Classy Filter! by hondana
# Status: Untested
# URL: https://gist.github.com/martialboniou/021bc8d9e9250e00fd7b
# Dedicated Program: Loot Wizard v0.3 (unpublished)
# Sync Version: Antnee's Classy Filter! v3.0a (but 000e section AKA Rares;
# - no pure 75+ T1 gear like in the original version, but;
# - progressive optimistic rare filtering at every levels here.)
# + 2017-03-01 Skill Tree Information
# (https://www.pathofexile.com/forum/view-thread/1840246)
@martialboniou
martialboniou / .stumpwmrc
Created January 23, 2012 19:30 — forked from shes-a-skeeze/.stumpwmrc
stumpwm
;; MY STUMPWM
(in-package :stumpwm)
(setq *mouse-focus-policy* :click)
(setf *startup-message*
"everything seems to be just fine")
(set-contrib-dir "/home/sleeze/.config/stumpwm/contrib")
(setf *suppress-frame-indicator* t)
;; Directories
@martialboniou
martialboniou / build-essential.sh
Created December 20, 2011 13:55 — forked from henry0312/build-essential.sh
Build m4, autoconf, automake, libtool on Mac OS X Lion
#!/bin/sh
# 初期設定
WORK=$HOME/Builds/build-essential
PREFIX=$HOME/local
export PATH="$PREFIX/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin"
# ソースコードのダウンロード
if [ ! -d $WORK/src ] ; then
mkdir src
@martialboniou
martialboniou / *scratch*
Created November 11, 2011 15:35 — forked from remvee/*scratch*
bind f1, f2, f3 and f4 in emacs term
(defun term-send-function-key ()
(interactive)
(let* ((char last-input-event)
(output (cdr (assoc char term-function-key-alist))))
(term-send-raw-string output)))
(defconst term-function-key-alist '((f1 . "\e[OP")
(f2 . "\e[OQ")
(f3 . "\e[OR")
(f4 . "\e[OS")))