Skip to content

Instantly share code, notes, and snippets.

View varaprasadh's full-sized avatar
:electron:
Rewinding the wires from scratch!

consious_coder varaprasadh

:electron:
Rewinding the wires from scratch!
View GitHub Profile
—– BEGIN LICENSE —–
TwitterInc
200 User License
EA7E-890007
1D77F72E 390CDD93 4DCBA022 FAF60790
61AA12C0 A37081C5 D0316412 4584D136
94D7F7D4 95BC8C1C 527DA828 560BB037
D1EDDD8C AE7B379F 50C9D69D B35179EF
2FE898C4 8E4277A8 555CE714 E1FB0E43
D5D52613 C3D12E98 BC49967F 7652EED2
const HtmlWebpackPlugin = require('html-webpack-plugin');
const { CleanWebpackPlugin } = require('clean-webpack-plugin')
const copyWebpackPlugin = require('copy-webpack-plugin')
const { resolve } = require('path');
const plugins = [
new HtmlWebpackPlugin({
template: './public/new-tab.raw.html',
filename:'new-tab.html',
{
"name": "cats",
"version": "1.0.0",
"description": "",
"main": "index.js",
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-outside-click-handler": "^1.3.0",
"styled-components": "^5.3.0"
{
"version": "3.0.0",
"manifest_version": 2,
"name": "cat space",
"description": "world of cats!",
"icons": {
"128": "./images/icon.png",
"48": "./images/icon.png",
"16": "./images/icon.png"
},
import React, { ReactElement } from 'react'
import { render } from 'react-dom';
interface Props {
}
function NewTab({}: Props): ReactElement {
return (
<div>
@varaprasadh
varaprasadh / setup.md
Created June 11, 2021 06:30 — forked from akella/setup.md
My Setup
@varaprasadh
varaprasadh / isLucky.java
Last active July 30, 2021 10:47
islucky - Code Signal
/*
Ticket numbers usually consist of an even number of digits. A ticket number is considered lucky if the sum of the first half of the digits is equal to the sum of the second half.
Given a ticket number n, determine if it's lucky or not.
Example
For n = 1230, the output should be
isLucky(n) = true;
For n = 239017, the output should be
class Solution {
public Node connect(Node root) {
if(root == null) return null;
Queue<Node> queue = new LinkedList();
queue.add(root);
while(queue.size()>0){
int size = queue.size();
@varaprasadh
varaprasadh / file.sh
Last active February 10, 2022 11:55
for ((i=1;i<10000;i++))
do
echo 'Hi Swathi!!! 🤣🤣🤣'
sleep 0.25
done
for ((i=1;i<10000;i++))
do
echo 'Thanks Geetha!!! 🤣🤣🤣'
sleep 0.25
done