| [ | |
| { | |
| "elementType": "geometry", | |
| "stylers": [ | |
| { | |
| "color": "#bccac1" | |
| } | |
| ] | |
| }, | |
| { |
| package main | |
| import ( | |
| "context" | |
| "flag" | |
| "fmt" | |
| "log" | |
| "net/http" | |
| "os" | |
| "os/signal" |
Disclaimer: This piece is written anonymously. The names of a few particular companies are mentioned, but as common examples only.
This is a short write-up on things that I wish I'd known and considered before joining a private company (aka startup, aka unicorn in some cases). I'm not trying to make the case that you should never join a private company, but the power imbalance between founder and employee is extreme, and that potential candidates would
FWIW: I (@rondy) am not the creator of the content shared here, which is an excerpt from Edmond Lau's book. I simply copied and pasted it from another location and saved it as a personal note, before it gained popularity on news.ycombinator.com. Unfortunately, I cannot recall the exact origin of the original source, nor was I able to find the author's name, so I am can't provide the appropriate credits.
- By Edmond Lau
- Highly Recommended 👍
- http://www.theeffectiveengineer.com/
| images = Spree::Image.all.reject do |image| | |
| begin | |
| open image.attachment.url | |
| putc '.' | |
| true | |
| rescue | |
| puts image.attachment.url | |
| false | |
| end | |
| end |
| # Original Rails controller and action | |
| class EmployeesController < ApplicationController | |
| def create | |
| @employee = Employee.new(employee_params) | |
| if @employee.save | |
| redirect_to @employee, notice: "Employee #{@employee.name} created" | |
| else | |
| render :new | |
| end |
| module CanCanController | |
| extend ActiveSupport::Concern | |
| included do | |
| extend(ClassMethods) | |
| cattr_accessor :cancan_includes | |
| self.cancan_includes = [] | |
| end | |
| module ClassMethods |
I'm now working as as Software Developer at Shopify and this is the list of places I visited in Ottawa.
- Burrito Burracho
- well, what a surprise really good burritos
- Slice & Co.
- artisan italian style pizza

