Skip to content

Instantly share code, notes, and snippets.

View AmanRaj1608's full-sized avatar
🍀
Get Schwifty!

Aman Raj AmanRaj1608

🍀
Get Schwifty!
View GitHub Profile
@AmanRaj1608
AmanRaj1608 / tech-sheet.md
Created June 21, 2019 19:33 — forked from tamtamchik/tech-sheet.md
IT Tech-sheet

IT Tech-sheet

  1. Google
  2. HTTP / HTTPS
  3. MVC / MVVM
  4. LAMP
  5. AJAX
  6. Comet / WebSockets / Pooling
  7. git / Mercurial / SVN
  8. BASH
@AmanRaj1608
AmanRaj1608 / settings.json
Created June 17, 2020 21:22 — forked from thomasmaurer/settings.json
My Windows Terminal Settings settings.json June 2020
// This file was initially generated by Windows Terminal 0.11.1121.0
// It should still be usable in newer versions, but newer versions might have additional
// settings, help text, or changes that you will not see unless you clear this file
// and let us generate a new one for you.
// To view the default settings, hold "alt" while clicking on the "Settings" button.
// For documentation on these settings, see: https://aka.ms/terminal-documentation
{
"$schema": "https://aka.ms/terminal-profiles-schema",
@AmanRaj1608
AmanRaj1608 / Component.jsx
Created January 5, 2021 11:09 — forked from krambertech/Component.jsx
ReactJS: Input fire onChange when user stopped typing (or pressed Enter key)
import React, { Component } from 'react';
import TextField from 'components/base/TextField';
const WAIT_INTERVAL = 1000;
const ENTER_KEY = 13;
export default class TextSearch extends Component {
constructor(props) {
super();
@AmanRaj1608
AmanRaj1608 / installing-node-with-nvm.md
Created March 20, 2021 14:24 — forked from d2s/installing-node-with-nvm.md
Installing Node.js to Linux & macOS & WSL with nvm

Installing Node.js with nvm to Linux & macOS & WSL

A quick guide on how to setup Node.js development environment.

Install nvm for managing Node.js versions

nvm allows installing several versions of Node.js to the same system. Sometimes applications require a certain versions of Node.js to work. Having the flexibility of using specific versions can help.

  1. Open new Terminal window.
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
contract Token {
address public owner;
uint256 public totalSupply;
mapping (address => uint256) public balanceOf;
mapping (address => mapping (address => uint256)) public allowance;
string public symbol = "TOKEN";
uint256 public decimals = 18;
@AmanRaj1608
AmanRaj1608 / mpv_install.md
Created December 4, 2021 14:44 — forked from davidhq/mpv_install.md
mpv ◈ Media Player binary -- Install macOS / linux / windows