Page 2 of 2

DNT Checker

This page contains a php script that will run to check whether or not your web browser has the Do Not Track (‘DNT’) bit on or off.

Find the script here

<?php
if (getenv("HTTP_DNT") == "1") {
    echo '<strong>Do Not Track is on!</strong>';
}
else {
    echo '<strong>Do Not Track is off!</strong>';
}
?>

mRNA Encoder/Decoder

These scripts are made to encode text to mRNA codon sequences and visa-versa.  Use it here.

Encode

This script translates the single letter name of amino acids to the corresponding RNA. You can translate all letters (upper and lower), all numbers, most symbols (excluding ` and forward slash)

Decode

This script translates mRNA into the single letter name for the corresponding amino acid. It has a maximum of 100 codons per run

Continue reading → mRNA Encoder/Decoder