Saturday, April 21, 2018

How to set up a single Dropbox folder on dual-boot Windows and Linux system

https://medium.com/@hivickylai/maintain-one-dropbox-folder-with-dual-boot-windows-and-linux-d338d790675a

Friday, April 20, 2018

Keeping git repositories on different hosts in sync

Source: https://softwareengineering.stackexchange.com/questions/195456/keeping-git-repositories-on-different-hosts-in-sync

Yes, that's exactly the beauty of DVCS such as git. You can use any number of different repos with the same state as the one on bitbucket or github.
Even you local copy (the repository on your computer) is usually a full clone of the remote repo.
The only thing you have to do to keep multiple repos in sync is pulling for one (usually called origin or upstream) and pushing to the backup copies.
 
 Unfortunately all is not as shiny. See the cautionary take of KDE near-disaster. That is, make sure the backup does not delete things (branches, repositories, etc.) that were deleted on the backed up server. 

Clone the remote repository, then pull all updates (all branches) to it in regular intervals. A git clone contains the history, it's not like an svn checkout that has only the latest version.

Friday, April 13, 2018

older FIJI Jython scripts won't execute


see full explanation: http://forum.imagej.net/t/jython-isssue-with-if---name-----main--/5544/2

workaround: replace
 
if __name__=='__main__':

with

if __name__ in ['__builtin__', '__main__']:
    

Wednesday, March 14, 2018

Set up multiple signatures in Gmail - Canned Responses lab

-activate the Canned Responses in Settings->Labs
-click the Compose button to open a new message window
-Once your signature is ready, click the down arrow icon and then Canned Reponses>New canned response
-enter a name for your new canned response and click OK

Full instruction:

https://www.mail-signatures.com/articles/how-to-set-up-multiple-signatures-in-gmail/

Tuesday, January 23, 2018

Fiji complex ROIs

Double-click on oval selection to change for brush

Use Plugins->Segmentation->Segmentation Editor to interpolate ROIs between slices

Friday, October 20, 2017

Mendeley Standalone Bibliography

If you want to create a bibliography, without having a document that has in-text citations, you can do so directly from Mendeley Desktop.
Select all the records you wish to add to your list, from your Mendeley Library, and then go to Edit and click on Copy. Once you have done this you can go to a text document, like Word, and simply click Paste. This will create a bibliography in your chosen citation style.

Src: http://guides.nyu.edu/c.php?g=277051&p=1846896

Monday, September 25, 2017

Batch explore and process dicom files

https://wiki.xnat.org/xnat-tools/dicombrowser