I want to extract the URL from the recovery.js file (the file is created by Firefox, it contains the URLs of the windows and tabs in the Firefox session). My goal is to be able to store and classify these URLs in a text file. Then I can for ...
I want to extract the URL from the recovery.js file (the file is created by Firefox, it contains the URLs of the windows and tabs in the Firefox session). My goal is to be able to store and classify these URLs in a text file. Then I can for ...
%matplotlib notebook
from activepapers.exploration import ActivePaper
import matplotlib.pyplot as plt ...
ActivePapers is an on-going project developped by Konrad Hinsen whose aim is to make a computational calculation reproducible and publishable. You can find all the details of the project here.
To make computational calculation reproducible and publishable, it is proposed to create an ActivePaper file that ...
In the previous notebook, I plotted an interactive 2D map. The time needed to generate this 2D map can be rather long. To improve that, we can "easily" parallelize the calculation of the distances with the multiprocessing module. The next 8 inputs are identical to the ones presented in the ...
In this notebook, I plot an interactive 2D map from a molecular dynamics trajectory in the IPython notebook in just a few lines of code. For this purpose, we will take advantage of the powerful package MMTK.
from __future__ import print_function, division
from MMTK import *
from MMTK.Trajectory ...