Skip to content

Instantly share code, notes, and snippets.

View jimmypoms's full-sized avatar

Dominik Spengler jimmypoms

  • Seqera
  • Barcelona
View GitHub Profile

Keybase proof

I hereby claim:

  • I am jimmypoms on github.
  • I am poms (https://keybase.io/poms) on keybase.
  • I have a public key ASA_tunuGFaZqg28z2DEhwwz6F1E614sb5MA3ZfsM_F3UQo

To claim this, I am signing this object:

@jimmypoms
jimmypoms / build-cinnamon.sh
Created November 22, 2014 13:15
Bash script to build all of cinnamon desktop and its dependencies on a debian based system
#!/bin/bash
nemo_built=false
Cinnamon_built=false
nemo_installed=false
Cinnamon_installed=false
MODULES=(
"cjs:https://github.com/linuxmint/cjs.git"
@jimmypoms
jimmypoms / ajax.js
Last active December 22, 2015 15:58
Script for html based ajax handling through data attributes
jQuery.fn.getPath = function () {
if (this.length != 1) throw 'Requires one element.';
var path = '',
node = this;
while (node.length) {
var realNode = node[0], name = realNode.localName;
if (!name) break;