Skip to content

Instantly share code, notes, and snippets.

[2015-05-19 21:09:48,574] [INFO] Startup: Welcome to Komodo Edit 9.0.1 build 15738 (platform macosx, running on Darwin 14.4.0 version Darwin Kernel Version 14.4.0: Tue May 5 14:17:52 PDT 2015; root:xnu-2782.30.4~3/RELEASE_X86_64)
[2015-05-19 21:09:48,575] [INFO] Startup: /Applications/Komodo Edit 9.app/Contents/MacOS/komodo built on Wed Apr 15 08:00:29 2015
[2015-05-19 21:09:48,728] [WARNING] koInitService: Unable to determine the current locale settings, defaulting to mac-roman
[2015-05-19 21:09:49,274] [WARNING] console-logger: mutating the [[Prototype]] of an object will cause your code to run very slowly; instead create the object with the correct initial [[Prototype]] value using Object.create (1) in resource://gre/modules/Preferences.jsm:381
[2015-05-19 21:09:49,276] [WARNING] console-logger: Bootstrapped manifest not allowed to use 'component' directive. (1) in file:///Applications/Komodo%20Edit%209.app/Contents/Resources/extensions/scope-files@activestate.com/components/component.manifest:1
[2015-05-
@vnoel
vnoel / bash
Created May 29, 2014 09:09
Shell tricks
# how to split a string in bash
x=a:b:c
first_word=${x%%:*}
http://ask.metafilter.com/80862/how-split-a-string-in-bash
@vnoel
vnoel / atb_calipso.py
Last active August 29, 2015 14:00 — forked from stageipsl/atb_calipso
#!/usr/bin/env python
import numpy as np
import matplotlib.pyplot as plt
from pyhdf.SD import SD, SDC
altfile = '/users/noel/pycode/staticdata/lidaralt.asc'
def extraction(fichier):
datasd = SD(fichier, SDC.READ)
@vnoel
vnoel / 0_reuse_code.js
Created April 17, 2014 19:18
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console