Saturday, December 31, 2016

How to delete all the Google+ posts by one click

Delete your Google Plus profile and restart it:
1. http://plus.google.com/downgrade
    click on that link, log in
2. Follow the instructions to delete your account(make sure you check "I understand ...")
3. After deleting your account, you can restart it by visiting plus.google.com and follow their instructions to explore and start

Monday, December 19, 2016

Charter Spectrum bill misteriously increased from 39.99 to 44.51

You have to call them to ask them to fix it.

If your increase in price is due to end of promotion, use this protocol:
http://troubleshoo.blogspot.com/2016/01/charter-bill-reprogramming-bring-down.html

Tuesday, December 13, 2016

Drug naming: -umab -zumab and -ximab

Chimeric -xi Abciximab, Rituximab, Infliximab, Cetuximab
Humanized -zu Palivizumab, Trastuzumab, Bevacizumab, Natalizumab
Human -u Adalimumab, Panitumumab Golimumab, Ipilimumab

reference:
https://en.wikipedia.org/wiki/Nomenclature_of_monoclonal_antibodies
http://www.antibodysociety.org/wordpress/wp-content/uploads/2015/12/Carter-IBC-INN-talk-Dec-2015-FINAL.pdf

New type of phishing email

Dear phe,

Sorry for mistakes in the invoice. The number is 362, the amount came to $289.26.
Please check out the details in the attachment.



--
Best Regards,
Lilia Bailey

Monday, December 12, 2016

WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED!

Please contact your system administrator
Offending RSA key in /Users/Yourname/.ssh/known_hosts:4




Solution: open that file to deleted saved info for that server and reconnect, to update the server info to the current one.

Sunday, December 11, 2016

linux bash: How to remove the first line of each file

sed -i -e "1d" $FILE

or


tail -n +2 "$FILE"

check http://stackoverflow.com/questions/339483/how-can-i-remove-the-first-line-of-a-text-file-using-bash-sed-script

Friday, December 9, 2016

Matlab R2016b increase java heap memory

Gear button(Default) -> General -> Java heap memory -> drag the bar to increase memory -> restart

Thursday, December 8, 2016

Matlab R2016b show command history window

on the Home tab, in the Environment section, click Layout. Then, under Show, click Command History and select either Docked or Popup.

Tuesday, December 6, 2016

The relationship between FPKM and TPM in one formulum

\begin{aligned}  \text{TPM}_i &= \left( \dfrac{\text{FPKM}_i}{\sum_j \text{FPKM}_j } \right) \cdot 10^6  \end{aligned}

How to access Caltech Glee Club's hidden collections of recordings

Caltech Glee Club main page -> Links -> click on the treble clef to enter the members.html
--> Full Recordings ...

Alternatively, click this:
http://www.music.caltech.edu/gleeclub/recordings.html

New phishing email

Hi

Thank you for your payment, please find attached your card receipt and
invoice.

Your order has been sent for process.

Kind Regards

JAROD BURKHALTER
Phoenix Specialist Products
0127 171 1686

how to find recycle bin folder for the file you just deleted on Windows 8 system

"On your Desktop App...when you right-click > Personalize then click the Change Desktop Icons link at the upper left, isn't it listed there?"

reference:
https://answers.microsoft.com/en-us/windows/forum/windows_8-desktop/i-cant-find-my-recycle-in-windows-8-can-anyone/ca247777-c09b-4771-8e07-d2244e961d95

Monday, December 5, 2016

how to add your downloaded/custom-written matlab functions to default paths

addpath('directory')
addpath(genpath('directory'));

reference:

http://matlab.izmiran.ru/help/techdoc/ref/addpath.html