Skip to content

Instantly share code, notes, and snippets.

View mayukhdifferent's full-sized avatar

mayukh mukhopadhyay mayukhdifferent

View GitHub Profile

Solution Manual Operations Management Global Edition==============================>>> DOWNLOAD <<<==============================Solution Manual Operations Management Global Edition2018 Solution Manual Operations Management Global Edition Excavator PDF Service. GPS tracking device features slider below to select fatti con tavolette di from: Bobcat S650 Skid. Operations Management Krajewski 9th Edition Sol

@mayukhdifferent
mayukhdifferent / The Technical Interview Cheat Sheet.md
Created June 5, 2019 14:50 — 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.
@mayukhdifferent
mayukhdifferent / README.md
Created April 24, 2019 16:11 — forked from leonardofed/README.md
A curated list of AWS resources to prepare for the AWS Certifications


A curated list of AWS resources to prepare for the AWS Certifications

A curated list of awesome AWS resources you need to prepare for the all 5 AWS Certifications. This gist will include: open source repos, blogs & blogposts, ebooks, PDF, whitepapers, video courses, free lecture, slides, sample test and many other resources.


@mayukhdifferent
mayukhdifferent / System Design.md
Created April 13, 2019 15:08 — forked from vasanthk/System Design.md
System Design Cheatsheet

System Design Cheatsheet

Picking the right architecture = Picking the right battles + Managing trade-offs

Basic Steps

  1. Clarify and agree on the scope of the system
  • User cases (description of sequences of events that, taken together, lead to a system doing something useful)
    • Who is going to use it?
    • How are they going to use it?
@mayukhdifferent
mayukhdifferent / RoleBasedAcl.sol
Created December 10, 2017 02:27 — forked from hiddentao/RoleBasedAcl.sol
Ethereum solidity contract for role-based access control
pragma solidity ^0.4.10;
contract RoleBasedAcl {
address creator;
mapping(address => mapping(string => bool)) roles;
function RoleBasedAcl () {
creator = msg.sender;
}
@mayukhdifferent
mayukhdifferent / conditionals-contract.js
Created October 15, 2017 16:20 — forked from amadeobrands/conditionals-contract.js
Smart contract conditionals | Solidity
pragma solidity ^0.4.0;
contract SomeContract {
uint someVar;
function getMyVar() constant returns (string, uint) {
if(someVar > 2) {
return ("greater two", someVar);
} else if (someVar == 2) {
return ("is exactly two", someVar);
} else {
(C:\Program Files\Anaconda3) C:\Users\USER>conda create -n tensorflow
Fetching package metadata .........
.Solving package specifications: .
Package plan for installation in environment C:\Program Files\Anaconda3\envs\ten
sorflow:
The following empty environments will be CREATED:
C:\Program Files\Anaconda3\envs\tensorflow
(C:\Program Files\Anaconda3) C:\Users\USER>conda create -n tensorflow
Fetching package metadata .........
.Solving package specifications: .
Package plan for installation in environment C:\Program Files\Anaconda3\envs\ten
sorflow:
The following empty environments will be CREATED:
C:\Program Files\Anaconda3\envs\tensorflow