This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[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/[email protected]/components/component.manifest:1 | |
[2015-05- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |