The converter that convert text into nitrogenous bases.
This text converter is built with Next.js and hosted with Netlify
It use the simple algorithm to convert the text
into base
as follows
/**
- First the text is converted into binary.
- Then the binary is converted into string.
- After that the binary string is converted into the nitrogenous bases using the following object(in python dict).
*/
const dnaEncoding = {
'00': 'A', // adenine
'01': 'G', // guanine
'10': 'C', // cytosine
'11': 'T', // thymine
}
- Apply
Goldman encoding
&Huffman encoding
method. - Convert
Base
>>Text
. - 404 Page.
- TypeScript (Languages)
- DaisyUi (UI components)
- Next.js (Frontend)
- TailwindCss (for styling)
- Netlify (Deploying)
Base-X has a MIT-style license, as found in the MIT License file.
Made by Adam Al-Rahman.