Skip to content

Instantly share code, notes, and snippets.

View ramlaxman's full-sized avatar
🎯
Focusing on Excellence in Cloud and Python

Mayur S. Patil (मयूर पाटील) ramlaxman

🎯
Focusing on Excellence in Cloud and Python
  • Pune, Maharashtra, India
View GitHub Profile
@ramlaxman
ramlaxman / The Technical Interview Cheat Sheet.md
Last active April 3, 2019 03:55 — 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.
Geolocation
# show hosts
# show domains
# add hosts
github.com
# use hosts-hosts/resolve
# show hosts
# run 1
# show hosts
# use freegeoip
@ramlaxman
ramlaxman / ACM ICPC Advice.md
Last active July 18, 2021 15:05
ACM ICPC Advice

Interesting Discussion as well as Guidance

Some pointers from my side:

ACM ICPC

Concentrate on your Regional: It helps having a fixed goal to focus on. This means acquainting yourself with past years' problems etc. And hopefully, there's a steady or gradual trend in problem style, and its not the case that one year you have amazing problems, the next you have weak test data etc.

@ramlaxman
ramlaxman / links.md
Last active September 25, 2019 18:32
Links for singing
@ramlaxman
ramlaxman / Openstack installation on CentOS 7.md
Created December 6, 2019 18:01
Openstack installation on CentOS 7

Host: Windows 10 Hypervisor: Oracle VBox Guest: CentOS 7

  • RAM: 5 GB
  • HDD: 40 GB
  • Network Mode in VBox: Adapter 1: NAT Adapter 2: Host Only Network -> Virtualbox network.
@ramlaxman
ramlaxman / shell.c
Last active June 1, 2023 12:05 — forked from Krush206/README.md
A basic command interpreter. (For teaching purposes.)
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/wait.h>
void my_system(char **);
int my_builtins(char *);
int main(void)
{