Skip to content

Adam-Al-Rahman/base-x

Repository files navigation

Logo

Base-X

The converter that convert text into nitrogenous bases.

This text converter is built with Next.js and hosted with Netlify

Netlify Status

demo

Algorithms

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
}

Todo

  • Apply Goldman encoding & Huffman encoding method.
  • Convert Base >> Text.
  • 404 Page.

Tools || Libraries used to build the site

  • TypeScript (Languages)
  • DaisyUi (UI components)
  • Next.js (Frontend)
  • TailwindCss (for styling)
  • Netlify (Deploying)

License

Base-X has a MIT-style license, as found in the MIT License file.


Logo

Made by Adam Al-Rahman.