ps -ef | grep [search string] | awk '{print $2}' | xargs kill -9
Friday, December 20, 2019
Tuesday, December 17, 2019
Monday, August 19, 2019
Open ended experiments
Astrometry B-V stars:
http://www.physics.udel.edu/~jlp/classweb/
Skyview Virtual Observatory:
https://skyview.gsfc.nasa.gov/current/cgi/titlepage.pl
Skyview Query Form
https://skyview.gsfc.nasa.gov/current/cgi/query.pl
Omni directional dipole antenna
https://www.secantenna.com/omni-dipole-antenna.html
Sublime text 2
CMD + 1
CMD + 2 - go through open filenames
Add folder to open all filenames
CMD + D - select words and replace all at once
CMD + / - comment out the lines
CMD + SHIFT + P - open interface
fix openmp issue
./configure CC=gcc-5 --enable-float --enable-openmp --enable-threads -prefix=/Users/tuhin/Softwares/fftw-3.3.8
Saturday, April 6, 2019
combining files
- list the files you want to concatls | grep [pattern] > filelist
- Review your files are in the proper order with
viorcat. If you use a suffix (1, 2, 3, ..., N) this should be no problem - Create the final filecat filelist | xargs cat >> [final file]
- Remove the filelistrm -f filelist
Hope this helps anyone
Subscribe to:
Comments (Atom)