A quick guide on how to setup Node.js development environment.
Previous versions of these install instructions had been tested with:
A quick guide on how to setup Node.js development environment.
Previous versions of these install instructions had been tested with:
| # Create new remote branch | |
| git push origin origin:refs/heads/new_branch_name | |
| # Make sure everything is updated | |
| git fetch origin | |
| # Check your branch has been created | |
| git branch -r | |
| # Track a remote branch |
| // ==UserScript== | |
| // @name Facebook Posts Deleter | |
| // @namespace com.vsubhash.js.facebook.posts.deleter | |
| // @description Deletes all facebook posts | |
| // @version 1 | |
| // @grant none | |
| // ==/UserScript== | |
| document.addEventListener("DOMContentLoaded", addFacebookPostsDeleteButton, false); | |
| #!/usr/bin/env python | |
| s = "Rene Cejas Bolecek\n\ | |
| [email protected] / [email protected]\n\ | |
| Low Temperatures Laboratory, Centro Atomico Bariloche\n\ | |
| Instituto Balseiro, Universidad Nacional de Cuyo\n\ | |
| Avenida Bustillo 9500, 8400 Bariloche, Rio Negro, Argentina\n\ | |
| MIT License\n\ | |
| " | |
| s1 = "Graphs: profiles for increasing a decreasing field + B vs H + Magnetization loops\n\ | |
| Output: save B vs H + Magnetization loops for selected points\n\ |
| import numpy as np | |
| import matplotlib.pyplot as plt | |
| from scipy import interpolate | |
| import sys | |
| sys.path.append("./modules/") | |
| #################################################################################################################################### | |
| filename = '08.0K_20x_01_d1_intensity_v_01' | |
| #08.0K_20x_01_d1_intensity_h_02 | |
| #08.0K_20x_01_d1_intensity_v_01 | |
| #08.0K_20x_01_d1_intensity_v_02 |
| #!/usr/bin/env python | |
| ################################################################################## | |
| # script function: rename files in a folder | |
| # | |
| # rel. date: 08/2016 | |
| # Dr. Rene Cejas Bolecek | |
| # Low Temperatures Laboratory, CAB, Argentina. | |
| # email: [email protected] | |
| # licence: MIT. http://opensource.org/licenses/MIT |
| #!/usr/bin/env python | |
| ################################################################################## | |
| # Rename files | |
| # Rel. 05/2016 | |
| # Dr. Rene Cejas Bolecek | |
| # Low Temperatures Laboratory, CAB, Argentine. | |
| # email: [email protected] | |
| ###### | |
| import glob | |
| import shutil |
| #!/usr/bin/env python | |
| ################################################################################## | |
| # script function: rename files in a folder | |
| # | |
| # rel. date: 10/2015 | |
| # Dr. Rene Cejas Bolecek | |
| # Low Temperatures Laboratory, CAB, Argentina. | |
| # email: [email protected] | |
| # licence: MIT. http://opensource.org/licenses/MIT |