Skip to content

Instantly share code, notes, and snippets.

View code0monkey1's full-sized avatar
:octocat:
Building

Chiranjeev Thomas code0monkey1

:octocat:
Building
View GitHub Profile
/* *******************************************************************************************
* TAILWIND.CSS
* DOCUMENTATION: https://tailwindcss.com/
* ******************************************************************************************* */
/*
* Available breakpoints
* --------------------
* sm: min-width: 640px;
* md: min-width: 768px;
@code0monkey1
code0monkey1 / bash-cheatsheet.sh
Created April 26, 2023 13:36 — forked from LeCoupa/bash-cheatsheet.sh
Bash CheatSheet for UNIX Systems --> UPDATED VERSION --> https://github.com/LeCoupa/awesome-cheatsheets
#!/bin/bash
#####################################################
# Name: Bash CheatSheet for Mac OSX
#
# A little overlook of the Bash basics
#
# Usage:
#
# Author: J. Le Coupanec
# Date: 2014/11/04
@code0monkey1
code0monkey1 / resume.json
Last active August 4, 2022 15:38
json resume
{
"basics": {
"name": "John Doe",
"label": "Programmer",
"image": "",
"email": "john@gmail.com",
"phone": "(912) 555-4321",
"url": "https://johndoe.com",
"summary": "A summary of John Doe…",
"location": {
@code0monkey1
code0monkey1 / useUrl.js
Created June 23, 2022 03:08
A custom hook for getting data using axios from apis
import { useEffect,useState } from 'react'
import axios from 'axios'
import logger from '../utils/logger'
const useUrl = (description) => {
const [data,setData] = useState(null)
const [status,setStatus] = useState(null)
const [url,setUrl] = useState(null)
const [loading,setLoading] = useState(false)