Initially taken by Niko Matsakis and lightly edited by Ryan Levick
- Introductions
- Cargo inside large build systems
- FFI
- Foundations and financial support
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
<script src="http://platform.tumblr.com/v1/share.js"></script> | |
<!-- Containers --> | |
<p id="tumbr_video_share"></p> | |
<p id="tumbr_text_share"></p> | |
<!-- Everlapse Vars --> | |
<script type="text/javascript"> | |
var everlapse_title = 'Walk With Me'; |
<!doctype html> | |
<html> | |
<head> | |
<meta charset="utf-8" /> | |
<link href="http://twitter.github.com/bootstrap/assets/css/bootstrap.css" rel="stylesheet" /> | |
<title>Bootstrap modal confirm</title> | |
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script> |
#!/usr/bin/env sh | |
## | |
# This is script with usefull tips taken from: | |
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
# | |
# install it: | |
# curl -sL https://raw.github.com/gist/2108403/hack.sh | sh | |
# |
""" | |
A really stupid python template language inspired by coffeekup, markaby. | |
Do not use this code, it will ruin your day. A byproduct of insomnia. | |
TL;DR | |
----- | |
This module defines a template language that allows us to do: | |
d = Doc() |
class TableViewDataSource | |
def awakeFromNib | |
view.registerForDraggedTypes( | |
NSArray.arrayWithObjects("BookmarkDictionaryListPboardType", "MozURLType", | |
NSFilenamesPboardType, NSURLPboardType, NSStringPboardType, nil)) | |
end | |
def tableView(aView, validateDrop:info, proposedRow:row, proposedDropOperation:op) | |
NSDragOperationEvery | |
end |
" Copyright 2022 Igor Burago | |
" SPDX-License-Identifier: ISC | |
" Simple emulation of indentation guides. | |
" | |
" For tab-based indentation, using the 'listchars' option works fine. | |
" For space-based indentation, one can either: | |
" • use the match highlighting feature (see ':help match-highlight'), | |
" as shown in ToggleMatchHighlightIndentGuides(); or | |
" • use the 'leadmultispace' setting of the 'listchars' option (added |
// See comments below. | |
// This code sample and justification brought to you by | |
// Isaac Z. Schlueter, aka isaacs | |
// standard style | |
var a = "ape", | |
b = "bat", | |
c = "cat", | |
d = "dog", |
(function($) { | |
// errors is an array of errors | |
// render :json => {:errors => @item.errors.full_messages} | |
function FormErrors(errors) { | |
var self = this, | |
error_count = errors.length; | |
this.html = function() { | |
var html = ''; | |
html += '<div class="errorExplanation" id="errorExplanation">'; |