Skip to content

Instantly share code, notes, and snippets.

View anburocky3's full-sized avatar
😎
Creating new stuffs.

Anbuselvan Rocky anburocky3

😎
Creating new stuffs.
View GitHub Profile
@anburocky3
anburocky3 / App.tsx
Created May 11, 2024 11:58
Get Country > State > City using country-state-city package - ReactJS
import { Country, State, City } from 'country-state-city';
import { ICountry, IState, ICity } from 'country-state-city'
const App = () => {
const [country, setCountry] = useState(Country.getAllCountries())
const [countryState, setCountryState] = useState<IState[]>([])
const [city, setCity] = useState<ICity[]>([])
useEffect(() => {
setCountryState(State.getStatesOfCountry(data.country));
@anburocky3
anburocky3 / reserved_usernames.md
Created April 7, 2024 07:10
Reserved Usernames for apps.

Reserved username list

This is the list of reserved usernames (pre-defined list of special banned and reserved keywords in names, such as "root", "www", "admin"). When we create a public system where users can choose a login name or a sub-domain name, we use this list to define which user names can not be used. The login authentication software verifies if the username is in this black list in the register validation process. Some reserved keywords here are specific for our service (Postbit) and other are generic black listed and reserved names that we use for all other services with login and usernames. Some websites forbid any generic names, short names (forbidden number of characters like usersnames with 1 or 2 characters) or also create lists of super famous people and companies so those logins can be reserved for future use. We allow only valid characters in the username that for us are letters, numbers, underline "_" and minus "-" (if it is in the middle of the username). We don't allow dot "." becaus

@anburocky3
anburocky3 / README.md
Created December 21, 2023 10:57
Important commands for developers (Web)

Important commands in Development

  • change the directory (cd)
cd path

folder-1 > folder-2

For example: Navigate from: folder-1 to folder-2

@anburocky3
anburocky3 / Vite-Tailwind-Github-Integration.md
Last active April 24, 2024 02:44
Tailwind, Vite integration with Github-Pages deployment steps

TailwindCss-Vite

  1. Create project using the below commands.
npm create vite@latest my-project-name
> Vanilla
> JavaScript
@anburocky3
anburocky3 / README.md
Last active September 7, 2023 07:06
Project Publishing Readme format
@anburocky3
anburocky3 / index.js
Last active April 13, 2023 18:17
Convert data into json response from devtools
// 1. Store the object as global
// 2. It will generate the json as you wish. Copy and start hacking.
[...temp1].map((i, index) => { return { id: index+1, href: i.children[0].href, name: i.children[0].textContent} })
@anburocky3
anburocky3 / main.js
Created January 4, 2023 07:11
Grab RTO Codes from webpage.
let htmlString = `
<table>
<tbody>
<tr>
<td>TN-01</td>
<td>Chennai&nbsp;(Central):&nbsp;Ayanavaram</td>
<td>RTO</td>
<td>Chennai</td>
</tr>
<tr>
@anburocky3
anburocky3 / FuelCostCalculator.js
Created August 11, 2022 18:20
Fuel Cost Calculator App made on ReactJS
import { useState } from "react";
function App() {
const [tripDistance, setTripDistance] = useState(0)
const [fuelConsumption, setFuelConsumption] = useState(0)
const [costPerLitre, setCostPerLitre] = useState(102)
const [totalCost, setTotalCost] = useState(0)
const calculateCost = () => {
const total_fuel_burnt = tripDistance / fuelConsumption
USER ID GENDER FOLLOWERS FOLLOWING
189941 Male 730 513
24195 Male 1073 1644
45082 Male 1961 1272
179352 Male 2750 2595
122942 Male 19 975
16262 Male 430 8388
166947 Male 321 52308
199190 Male 577 402
206755 Female 613 402
@anburocky3
anburocky3 / burp-suite-add-to-unity.sh
Created October 20, 2017 12:59
Shell script to add Latest Burp Suite Pro to Unity Launcher
# For example:
# If your burpsuite jar is named: burpsuite_pro_v1.7.11.jar
# ..and located at: /opt/burpsuite/
#
# export BURP_VER=1.7.11
# export BURP_PATH=/opt/burpsuite/
export BURP_VER=YOUR_VERSION
export BURP_PATH=YOUR_PATH