Skip to content

Instantly share code, notes, and snippets.

View anushshukla's full-sized avatar
💭
Silently and secretly building awesome applications

Anush Shukla anushshukla

💭
Silently and secretly building awesome applications
View GitHub Profile
@anushshukla
anushshukla / fiddlerSetup.txt
Created August 1, 2019 18:05
Fiddler Setup on Linux machine
Alt+Ctrl+T
sudo apt-get update -y
copy paste sudo apt-get install mono-complete -y
cd ~/Downloads
wget http://telerik-fiddler.s3.amazonaws.com/fiddler/fiddler-linux.zip
sudo apt-get install unzip -y
unzip fiddler-linux.zip\?sfvrsn\=2 -d fiddler
cd fiddler/
mono Fiddler.exe
@anushshukla
anushshukla / job-enquiries.md
Last active March 26, 2024 02:05
JOB posting template and job search queries

Startup queries

  • Which incubators program is the startup part of if any?
  • Which acceleator program is the startup part of if any?
  • What's the total funds raised till date?
  • What's the revenue?
  • What's the profit if profit making firm?
  • What's the total strenght?

General enquiries

  • Are medical benefits provided?
@anushshukla
anushshukla / interivew-guidelines.md
Last active March 13, 2024 17:48
Interview related documents

Prep

Resume review

Don't glance through the resume but read through it to understand about the candidates skills and thoughts from the information provided on it.

Interview questions

  • Write down interview questions in such a way that it can re-worded when asking to different candidates
  • Make sure that the questions are application based which not only checks for knowledge but also for its application.
@anushshukla
anushshukla / simple-full-page-ss.js
Created February 23, 2024 10:32
Simple full page screenshot script
(async () => {
const delay = ms => new Promise(res => setTimeout(res, ms));
// Function to load script dynamically
const loadScript = (url) => {
return new Promise((resolve, reject) => {
const script = document.createElement('script');
script.src = url;
script.onload = resolve;
script.onerror = reject;
@anushshukla
anushshukla / onboarding-checklist.md
Last active October 12, 2023 19:57
Onboarding checklist

Onboarding checklist

  • Office email address
  • Office workspace access
  • office signature template
  • Office backdrops for client meetings
  • Ask IT for logistics details of workstation
  • Request for employee id
  • HRMS access
  • Payroll access
@anushshukla
anushshukla / mac-os-dev-setup.md
Last active October 9, 2023 05:54
MacOS Dev Setup
@anushshukla
anushshukla / technical-documentation-template.md
Last active September 26, 2023 13:59
Technical documentation template

Problem statement

business required for the product feature

Solution

overview of the engineering solution

System design

Ex: add HLD images with description

@anushshukla
anushshukla / .gitconfig
Last active September 25, 2023 19:39
GIT guidelines, global ignore, config, etc. files
[core]
autocrlf = input
whitespace = cr-at-eol
excludesfile = ~/.gitignore
fileMode = false
editor = code
[user]
name = <Name Here>
email = <Email Here>
[color]

We can try to achieve the tight deadlines by

  • Overstretching
  • Resolving ciritical bugs only
  • Deferring non-critical issues fixes as hotfixes
  • Code quality comprise in tolerable manner but capturing the tech debt
  • Teams should work together toward planning and strategizing to expedite the development and testing process.