Skip to content

Instantly share code, notes, and snippets.

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@dheepakg
dheepakg / amznymous.md
Created May 30, 2020 06:27 — forked from bricker/amznymous.md
An Amazon Programmer's Perspective (http://pastebin.com/BjD84BQ3)

Originally posted at http://pastebin.com/BjD84BQ3

Trigger warning: mention of suicidal ideation

tl;dr: I burned out as a developer at Amazon at the end of my second year. I’ve since found a healthy and sustainable work-life balance and enjoy work again. I write this to A) raise awareness, especially for new-hires and their families, and B) help give hope and advice to people going through the same at Amazon or other companies.

Hello, world

There’s been no shortage of anecdotes, opinions, and rebuttals regarding Amazon’s corporate culture as of late. I write this not to capitalize on the latest news-feed fad, but to share what I had already written and promptly deleted. I didn’t think anyone would want to hear my story, but it’s apparent people are going through a similar experience and don’t have a voice.

I’m a Software Development Engineer II at Amazon; SDE II basically means a software developer with at least 2–3 years of industry experience. I started at Amazon as an SDE I.

def downloadFromS3(bucket, file_name):
import boto3
import botocore
ACCESS_ID = 'AA'
ACCESS_KEY = 'gc'
s3 = boto3.resource('s3', aws_access_key_id=ACCESS_ID, aws_secret_access_key=ACCESS_KEY)
try:
from tkinter import *
class Calculator:
def __init__(self, master):
print("test")
master.title("Random Generator")
master.geometry("420x210")
#Top Frame
@dheepakg
dheepakg / folder_content.py
Created February 20, 2018 06:49
Folder content segregation
def folderContents(file_path):
print("into function")
all_contnets = os.listdir(file_path)
folders = []
#Files under the folder (wihtout hidden files/folder)
files = next(os.walk(file_path))[2]
#print(files)
#Different ways to extract only folders
#Method 1
@dheepakg
dheepakg / first.py
Created January 23, 2018 06:40
wikiScrap
from bs4 import BeautifulSoup
import requests
#beautifulSoup('AR_Rahman.html',"html_parser")
#print(soup.Title)
#url = 'https://en.wikipedia.org/wiki/A._R._Rahman'
url = 'https://en.wikipedia.org/wiki/Bombay_(soundtrack)'
#url = 'https://assets.digitalocean.com/articles/eng_python/beautiful-soup/mockturtle.html'
page = requests.get(url)