Skip to content

Instantly share code, notes, and snippets.

View JayeshTiwari03's full-sized avatar
🎯
Focusing

Jayesh Tiwari JayeshTiwari03

🎯
Focusing
  • EY
  • Bharat/India
  • 21:09 (UTC +05:30)
View GitHub Profile
@YourAKShaw
YourAKShaw / namaste_javascript_notes.md
Last active January 23, 2024 13:21
Namaste 🙏 JavaScript is a YouTube playlist by Akshay Saini. These are the notes I've made when I was learning JavaScript from Scratch using the playlist.

How JavaScript Works?

Is JavaScript:

  • Synchronous or Asynchronous?
  • Single-threaded or Multi-threaded?
  • Everything in JavaScript happens inside an Execution Context
    • You can assume this execution context to be a big box or a container in which the whole JavaScript code is executed.
  • This big box has two components in it:
@grace-snow
grace-snow / frontend-and-design-resources.md
Last active January 17, 2024 07:14
Loads of handy resources

If you want to upskill and stay up to date on new tech, it's worth keeping an eye on some of these resources. Check out the links, sign up to email lists that iterest you or follow the authors on social media.

Please feel free to suggest more if I've missed something mega! :)



[[TOC]]

@Harshmakadia
Harshmakadia / class_api_call.jsx
Created August 6, 2019 04:10
Class Component in React for making API calls
import React from "react";
import ReactDOM from "react-dom";
import "./styles.css";
class GithubCommit extends React.Component {
constructor() {
super();
this.state = {
commitHistory: [],
@gaearon
gaearon / index.html
Last active February 13, 2024 09:46
Multiple React components on a single HTML page
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Add React in One Minute</title>
</head>
<body>
<h2>Add React in One Minute</h2>
<p>This page demonstrates using React with no build tooling.</p>
@gaearon
gaearon / index.html
Last active January 26, 2024 11:25
Add React in One Minute
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Add React in One Minute</title>
</head>
<body>
<h2>Add React in One Minute</h2>
<p>This page demonstrates using React with no build tooling.</p>
@parmentf
parmentf / GitCommitEmoji.md
Last active March 29, 2024 14:51
Git Commit message Emoji
@cferdinandi
cferdinandi / terminal-cheat-sheet.txt
Last active March 28, 2024 22:18
Terminal Cheat Sheet
# Terminal Cheat Sheet
pwd # print working directory
ls # list files in directory
cd # change directory
~ # home directory
.. # up one directory
- # previous working directory
help # get help
-h # get help