Skip to content

Instantly share code, notes, and snippets.

View CestDiego's full-sized avatar

Berr CestDiego

  • NYC
  • 22:04 (UTC -05:00)
View GitHub Profile
@PuercoPop
PuercoPop / Python 'Perú' Noviembre 2014.ipynb
Created October 16, 2014 04:59
iPython Notebook para el sgte Python Meetup
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@htr
htr / xmonad.hs
Last active February 22, 2021 18:23
spotify from xmonad
{-# LANGUAGE OverloadedStrings #-}
import DBus
import DBus.Client
spotifyCtrl :: Client -> MemberName -> X ()
spotifyCtrl client command = liftIO $ do
call_ client
(methodCall "/org/mpris/MediaPlayer2" "org.mpris.MediaPlayer2.Player" command) {
@aras-p
aras-p / preprocessor_fun.h
Last active May 8, 2024 06:45
Things to commit just before leaving your job
// Just before switching jobs:
// Add one of these.
// Preferably into the same commit where you do a large merge.
//
// This started as a tweet with a joke of "C++ pro-tip: #define private public",
// and then it quickly escalated into more and more evil suggestions.
// I've tried to capture interesting suggestions here.
//
// Contributors: @r2d2rigo, @joeldevahl, @msinilo, @_Humus_,
// @YuriyODonnell, @rygorous, @cmuratori, @mike_acton, @grumpygiant,
@jackrusher
jackrusher / blue-ball.clj
Last active December 20, 2015 07:49
Interacting with Leap Motion using Clojure from within emacs.
(ns blue-ball
(:use [seesaw core font graphics])
(:require [clojure-leap.core :as leap]
[clojure-leap.screen :as l-screen]))
;; these atoms contain the current x/y state from the Leap
(def x (atom 10))
(def y (atom 10))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Build the window/canvas