Skip to content

Instantly share code, notes, and snippets.

View rupeshtiwari's full-sized avatar
🎯
Focusing

Rupesh Tiwari rupeshtiwari

🎯
Focusing
View GitHub Profile
@tsiege
tsiege / The Technical Interview Cheat Sheet.md
Last active May 6, 2024 02:17
This is my technical interview cheat sheet. Feel free to fork it or do whatever you want with it. PLEASE let me know if there are any errors or if anything crucial is missing. I will add more links soon.

ANNOUNCEMENT

I have moved this over to the Tech Interview Cheat Sheet Repo and has been expanded and even has code challenges you can run and practice against!






\

@roachhd
roachhd / README.md
Last active May 7, 2024 03:36
EMOJI cheatsheet 😛😳😗😓🙉😸🙈🙊😽💀💢💥✨💏👫👄👃👀👛👛🗼🔮🔮🎄🎅👻

EMOJI CHEAT SHEET

Emoji emoticons listed on this page are supported on Campfire, GitHub, Basecamp, Redbooth, Trac, Flowdock, Sprint.ly, Kandan, Textbox.io, Kippt, Redmine, JabbR, Trello, Hall, plug.dj, Qiita, Zendesk, Ruby China, Grove, Idobata, NodeBB Forums, Slack, Streamup, OrganisedMinds, Hackpad, Cryptbin, Kato, Reportedly, Cheerful Ghost, IRCCloud, Dashcube, MyVideoGameList, Subrosa, Sococo, Quip, And Bang, Bonusly, Discourse, Ello, and Twemoji Awesome. However some of the emoji codes are not super easy to remember, so here is a little cheat sheet. ✈ Got flash enabled? Click the emoji code and it will be copied to your clipboard.

People

:bowtie: 😄

@remojansen
remojansen / class_decorator.ts
Last active September 14, 2023 14:54
TypeScript Decorators Examples
function logClass(target: any) {
// save a reference to the original constructor
var original = target;
// a utility function to generate instances of a class
function construct(constructor, args) {
var c : any = function () {
return constructor.apply(this, args);
}
@shortjared
shortjared / list.txt
Last active May 6, 2024 17:16
List of AWS Service Principals
a4b.amazonaws.com
access-analyzer.amazonaws.com
account.amazonaws.com
acm-pca.amazonaws.com
acm.amazonaws.com
airflow-env.amazonaws.com
airflow.amazonaws.com
alexa-appkit.amazon.com
alexa-connectedhome.amazon.com
amazonmq.amazonaws.com
@jamstooks
jamstooks / cloud9.md
Last active May 30, 2023 06:17
Notes on starting up an AWS Cloud9 Django dev environment with Python3

My AWS Cloud9 Setup for Python/Django and Node

Getting setup

sudo yum -y update

I'm not a big fan of their default bash prompt:

echo "export PS1='[\D{%F %T}]\n\[\e]0;\w\a\]\[\e[32m\]\u:\[\e[33m\]\w\[\e[0m\]\n\$ '" >> ~/.bashrc

source ~/.bashrc

@zthxxx
zthxxx / Activate Office 2019 for macOS VoL.md
Last active May 6, 2024 13:00
crack activate Office on mac with license file
@rupeshtiwari
rupeshtiwari / how_to_return_promise.js
Last active August 6, 2018 18:21
In order to make your program reactive you need promise dataType. In below 2 examples I am explaining how to create promise object and return data or error message.
// getData function is pretending that it is fetching data and after 2 second it received data.
// $ is jQuery
function getData() {
//creating on dererred object
var deferred = $.Deferred();
// after 2 second resolve promise with data.
setTimeout(function() {
deferred.resolve([1,2,3]);
}, 2000);
@rupeshtiwari
rupeshtiwari / function-hoisiting.js
Last active August 13, 2018 18:05
JavaScript Concepts
log();
var log = function(msg) {
alert(msg);
}
/*
* in this case log function is a expression type and log varibale will be hoisted at the top
* and initialized with undefined therefore, we will get
* Uncaught TypeError: log is not a function
*/
@rupeshtiwari
rupeshtiwari / Desktop or Machine Setup From Scratch for MEAN.md
Last active May 21, 2020 17:58
FullStack developer environment setup Desktop or Machine Setup From Scratch for MEAN

Setting up an box for Full Stack Developer Guide and Tutorial

FullStack developer environment

Install below softwares for Windows Desktop/Laptop

Note: Run all software as administrator.

@rupeshtiwari
rupeshtiwari / VS Code Extensions For Professional MEAN Stack Development.md
Last active July 9, 2020 19:52
VS Code Extensions For Professional MEAN Stack Development

Install below VsCode Extensions

  • Peacock
  • Angular Language Service
  • ESLint
  • GitLens — Git supercharged
  • Material Icon Theme
  • Prettier - Code formatter
  • Markdown All in One
  • npm (npm support for vscode)