I have today installed the Cytomine version 3 from cytomine.org Here I will explain in detail the different steps needed
Category: bash
Analysing gigapixel images online is possible with Cytomine
We have a collaborating project between Norway, Moldova, Armenia and Belarus in Oral Pathology. In order to view slides online
Use a variable counter in a bash one-liner
I had 70 different domain names that I need to add in a ssl cnf file for creating a certificate
Cron every last Friday of month
We wanted to run a script every last Friday of the month. The script was set to remind people about
Downgrade to previous version: yum
Sometime yum update just breaks everything. We experienced this, and had to go backup to previous versions. In RHEL6 and
Convert multiple files from latin1 to utf8 with vim
If you have several files that need to be converted to utf8, you can do it with vim. First start
Use Curl to read your imap emails
You can use the bash command “curl” to read your imap emails like this: curl –url "imaps://imapserver.somewhere.net" –user "username:password" Note:
Get url’s from website with wget
wget –spider –no-check-certificate –force-html -r -l2 https://website.of.interest.com 2>&1 | grep ‘^–‘ | awk ‘{ print $3 }’ | grep -v
Match email address
If you have a file with several lines that contains email addresses that you like to extract, you can do

Idle in transaction – DELETE waiting
We have a Linux server (Redhat Enterprise 6) running a multi-site installation of Mediawiki. In total, we have today 120

Random numbers with bash
I needed to get some quick random numbers that would represent a time on the form HH:SS. In my case
Sending an email with a different From: address
Sometimes you have to send an email with a different “From:” address. This can be easily done in LINUX. Please