Checking some things !!
May 28, 2020.
1 min read ☕
This is just for checking styling of some stuff.
Quoted Text
This is just some random garbage to check the working of I don’t know what.
Links
Bullets
- This is useless.
- This is useless.
- This is useless.
- This is useful.
Code Snippets
- 
React Component
// Check for comments
import React, { useState } from 'react'
function App() {
  const [value, setValue] = useState('')
  const handleChange = event => {
    setValue(event.target.value)
  }
  return (
    <main>
      <h1>Checking Stuff with React.</h1>
      <textarea value={value} onChange={handleChange} rows={10} cols={50} />
      <div>
        <h2>{value}</h2>
      </div>
    </main>
  )
}- 
Python Snippet
# Check for comments
import glob
import numpy as np
from tqdm import tqdm
print('Same Old Hello I Guess!)- 
Ruby Snippet
# Check for comments
require 'redcarpet'
mdx = Redcarpet.new("What's Ruby?")
puts mdx.to_html- 
CPP Snippet
// Check for comments
#include <some_library>
using namespace std;
int main() {
    cout << "----------------";
    return 0;
}Check Tables
| First Header | Second Header | 
|---|---|
| Some Content | More Content | 
| You already know | Just type it in | 
TO-DOS
- Add blog and dark mode for it.
- Migrate to TypeScript.