- Add your project logo.
- Write a short introduction to the project.
- If you are using badges, add them here.
| import Html exposing (..) | |
| import Html.Attributes exposing (..) | |
| import Html.Events exposing (..) | |
| import Task | |
| import Char | |
| import String exposing (..) | |
| type alias Model = | |
| { value : String |
| {-# LANGUAGE GADTSyntax #-} | |
| import Control.Monad.Free | |
| randomRIO :: (Int, Int) -> IO Int | |
| randomRIO = undefined | |
| data LogLevel = Info | |
| type Message = String |
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.
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.
| #!/usr/bin/env stack | |
| -- stack --resolver lts-15.10 script | |
| {-# LANGUAGE OverloadedStrings #-} | |
| {-# LANGUAGE NoImplicitPrelude #-} | |
| import RIO | |
| import Network.HTTP.Simple | |
| import qualified RIO.Text as T | |
| main :: IO () | |
| main = runSimpleApp $ do |
| // create file: | |
| sudo vim /usr/share/applications/intellij.desktop | |
| // add the following | |
| [Desktop Entry] | |
| Version=13.0 | |
| Type=Application | |
| Terminal=false | |
| Icon[en_US]=/home/rob/.intellij-13/bin/idea.png | |
| Name[en_US]=IntelliJ |