Skip to content

Instantly share code, notes, and snippets.

View raghav4's full-sized avatar
🏠
Working from home

Raghav Sharma raghav4

🏠
Working from home
View GitHub Profile
@raghav4
raghav4 / project-ideas01.md
Created April 17, 2019 04:42 — forked from MWins/project-ideas01.md
Back end Projects - list

Project Ideas

Ok. I'm going to list off some ideas for projects. You will have to determine if any particular idea is good enough to include in a portfolio. These aren't creative ideas. They likely already exist. Some are way too advanced while others are simplistic.

I will recommend to post any project you make to github and make a github project page for it. Explain in as much detail as possible how you made it, how it can be improved etc. Document it.

If you pick an advanced idea, setup a development roadmap and follow it. This will show some project management skills.

Another piece of advice for those who are design challenged. Use different front end frameworks and use different themes for those frameworks to provide appealing designs without looking like yet another bootstrap site.

@raghav4
raghav4 / gist:6d09fdbae06371238028e719e184f6e3
Created May 14, 2019 13:05 — forked from rxaviers/gist:7360908
Complete list of github markdown emoji markup

People

:bowtie: :bowtie: 😄 :smile: 😆 :laughing:
😊 :blush: 😃 :smiley: ☺️ :relaxed:
😏 :smirk: 😍 :heart_eyes: 😘 :kissing_heart:
😚 :kissing_closed_eyes: 😳 :flushed: 😌 :relieved:
😆 :satisfied: 😁 :grin: 😉 :wink:
😜 :stuck_out_tongue_winking_eye: 😝 :stuck_out_tongue_closed_eyes: 😀 :grinning:
😗 :kissing: 😙 :kissing_smiling_eyes: 😛 :stuck_out_tongue:
@raghav4
raghav4 / The Technical Interview Cheat Sheet.md
Last active August 13, 2019 13:22 — forked from tsiege/The Technical Interview Cheat Sheet.md
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.

Studying for a Tech Interview Sucks, so Here's a Cheat Sheet to Help

This list is meant to be a both a quick guide and reference for further research into these topics. It's basically a summary of that comp sci course you never took or forgot about, so there's no way it can cover everything in depth. It also will be available as a gist on Github for everyone to edit and add to.

Data Structure Basics

Array

Definition:

  • Stores data elements based on an sequential, most commonly 0 based, index.
  • Based on tuples from set theory.
@raghav4
raghav4 / sublime-settings.json
Last active September 7, 2019 07:35
My sublime text settings
{
"color_scheme": "Packages/Theme - Cyanide/Cyanide - Golden - Black.tmTheme",
"font_size": 16,
"font_face": "Monaco",
"ignored_packages":
[
"Vintage"
],
"theme": "Cyanide.sublime-theme"
}
@raghav4
raghav4 / sublime-packages-settings.json
Last active September 6, 2019 18:58
Sublime Text Packages settings
{
"bootstrapped": true,
"in_process_packages":
[
],
"installed_packages":
[
"A File Icon",
"C++ & C Single File Builder - Minghang Yang",
"FileIcons",
@raghav4
raghav4 / hello.gif
Last active September 7, 2019 07:46
hello.gif
@raghav4
raghav4 / Hii.gif
Last active October 8, 2019 17:29
Hii.gif
@raghav4
raghav4 / keybase.md
Last active October 8, 2019 14:39
Keybase account verification proof

Keybase proof

I hereby claim:

  • I am raghav4 on github.
  • I am raghavsharma (https://keybase.io/raghavsharma) on keybase.
  • I have a public key ASAozHK4k5_AEgUAykLJScA8CqPh9Yad0C22PBBabYFkogo

To claim this, I am signing this object:

@raghav4
raghav4 / curl.md
Last active September 30, 2019 03:31
Getting Started with CURL

Curl & HTTP

  1. curl https://jsonplaceholder.typicode.com/posts/1/comments
  • This will fetch you the json response from the input api url.
  1. curl -i https://jsonplaceholder.typicode.com/posts/1/comments
  • This will include all the header information
  1. curl -I/--head https://jsonplaceholder.typicode.com/posts/1/comments
  • -I or --head will give us only the header.
  1. curl -o/--output filename.txt https://jsonplaceholder.typicode.com/posts
  • This will copy the respone/output in filename.txt
@raghav4
raghav4 / script.js
Created October 1, 2019 07:43
Printing GitHub markdowns
document.querySelector('#readme').setAttribute('style', 'position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 100; background-color: white')
document.querySelector('body').appendChild(document.querySelector('#readme'))
window.print()