Cite as:
Saad, T. "C++ – CALLING OVERLOADED OPERATOR () FROM POINTER".
Weblog entry from
Please Make A Note.
https://pleasemakeanote.blogspot.com/2017/05/c-calling-overloaded-operator-from.html
Please Make A Note
Please Make a Note is a collection of science & technology tips and derivations that will make it easier for research scientists & engineers to perform the various tasks they are faced with. These notes cover a wide range of scientific topics, software, media, and data analysis utilities.
Wednesday, May 31, 2017
C++ – CALLING OVERLOADED OPERATOR () FROM POINTER
Monday, April 11, 2016
Find and Sort Files Recursively by Size on Linux
find . -size +5M -exec du -h {} \; | sort -nr
Cite as:
Saad, T. "Find and Sort Files Recursively by Size on Linux".
Weblog entry from
Please Make A Note.
https://pleasemakeanote.blogspot.com/2016/04/find-and-sort-files-recursively-by-size.html
Monday, September 28, 2015
How to Release all PBS Jobs with qrls
First create a small script file
emacs qrlsall
#!/bin/bashjobids=$(showq -u tsaad | awk '{if ($3 == "UserHold") print $1;}')
echo $jobidsqrls $jobid
Now make qrlsall executable
chmod +x qrlsallVoila!
Cite as:
Saad, T. "How to Release all PBS Jobs with qrls".
Weblog entry from
Please Make A Note.
https://pleasemakeanote.blogspot.com/2015/09/how-to-release-all-pbs-jobs-with-qrls.html
Monday, March 9, 2015
Latex v Symbol MathJax Wordpress
<script type="text/x-mathjax-config">According to MathJax documentation, this essentially enforces MathJax to use web-based or image fonts. It seems to do the trick and all my v's look pretty now.
MathJax.Hub.Config({
"HTML-CSS": {
availableFonts: []
}
});
</script>
Cite as:
Saad, T. "Latex v Symbol MathJax Wordpress".
Weblog entry from
Please Make A Note.
https://pleasemakeanote.blogspot.com/2015/03/latex-v-symbol-mathjax-wordpress.html
Thursday, March 5, 2015
SVN List Modified Files Only
svn status | grep '^M'
Cite as:
Saad, T. "SVN List Modified Files Only".
Weblog entry from
Please Make A Note.
https://pleasemakeanote.blogspot.com/2015/03/svn-list-modified-files-only.html