Skip to content

Instantly share code, notes, and snippets.

--- eclipse-working.txt 2015-05-04 20:30:23.197432000 +0200
+++ eclipse-not-working.txt 2015-05-04 20:30:33.857734800 +0200
@@ -43 +43 @@
-eclipse.startTime=1430763818171
+eclipse.startTime=1430764164698
@@ -96 +96 @@
-org.osgi.framework.uuid=f01f50af-8af2-0014-1b17-fb32fac8ccbf
+org.osgi.framework.uuid=7034e27d-8bf2-0014-1860-b3c67d8c591f
@@ -375 +375 @@
-org.eclipse.ecf (3.4.0.v20141221-2352) "ECF Core API" [Active]
@jmozmoz
jmozmoz / pydev-screenshot-1.png
Last active August 29, 2015 14:16
screenshot pydev
pydev-screenshot-1.png
@jmozmoz
jmozmoz / add_button.js
Last active August 29, 2015 14:03
Userscript to subscribe to threads at www.cfd-online.com/Forums/ with a single click
// ==UserScript==
// @name Add one-click subscription button
// @description Adds live example button, with styling.
// @include http://www.cfd-online.com/Forums/*.html
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js
// @grant GM_addStyle
// @grant GM_openInTab
// @version 0.0.1
// ==/UserScript==
@jmozmoz
jmozmoz / ggplot2 theme_minimal
Created October 30, 2012 16:54 — forked from low-decarie/ggplot2 theme_minimal
This works with ggplot2 0.9.2.1
library(grid)
theme_minimal <- function (base_size = 12, base_family = "")
{
theme_bw(base_size = base_size, base_family = base_family) %+replace%
theme (
axis.text.x = element_text(family = base_family, size = base_size * 0.8, lineheight = 0.9, vjust = 1, angle=0),
axis.text.y = element_text(family = base_family, size = base_size * 0.8, lineheight = 0.9, hjust = 1, angle=0),
axis.ticks = element_line(colour = "black", size = 0.2),
axis.title.x = element_text(family = base_family, size = base_size, vjust = 0, angle=0),