- Always take the initiative. A successful startup is in the right place at the right time to satisfy a deep need. Without initiative, the need remains unmet for the vast majority of those seeking relief. This urgency must permeate each level of the organization, every member’s very fiber, and dictate every internal and external action. If you are not growing (market, mindshare, skillset), you are dying.
- There is nothing wrong with spending a night in jail if it means getting the shot you need. Unclear. Penalty box with outsiders? Does not apply internally, where trust must be maintained.
- Send out all your dogs and one might return with prey. Staying lean means staying open to experimentation. The startup is able to quickly explore many possible routes forward without the coordination overhead that would drag down a larger organization. This is a strength, and is one that the larger organization will have trouble replicating, for the lack of a will to do or the necessary muscles have lon
import heapq | |
def find_k_mins(matrix, k): | |
ptrs = [0 for _ in matrix] | |
curr_min = float("inf") | |
min_ind = -1 | |
heap = [] | |
heapq.heapify(heap) | |
while len(heap) < k: |
#bradfield
The push to share data on [[Protocols]], and not platforms, is gathering steam on the Web. For years now, both consumers and creators of numerous web systems have bemoaned the lack of interoperability of a single user’s data between systems. It is these silos that people have been attempting to bridge or bring down since time immemorial (or at least since attempts to section off swaths of the Web became commonplace). What has gone unchallenged in this discourse is the siloing of data between applications on our local machines.
This document proposes an open protocol for sharing data between applications in order to make our local computing more responsive and adaptable to our changing conditions. This document also proposes bringing the well-regarded and explored concept of the Unix [[pipe]] to GUI
--Requires ImageMagick | |
-- Set up the variables | |
set screenshotFolder to "/Users/YR_NAME/Desktop/Screenshots" -- Change this to whatever folder you'd like to save the screenshots in | |
set screenshotInterval to 600 -- Change this to the number of seconds between each screenshot | |
set screenshotCount to 30 -- Change this to the number of screenshots you'd like to take | |
-- Take the screenshots | |
delay screenshotInterval | |
repeat with i from 1 to screenshotCount |
@prefix : <http://pretend.co/cat/> . | |
@prefix dwec-database: <https://dwec.data.world/v0/database-types/> . | |
@prefix dct: <http://purl.org/dc/terms/> . | |
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . | |
@prefix dcat: <http://www.w3.org/ns/dcat#> . | |
@prefix foaf: <http://xmlns.com/foaf/0.1/> . | |
@prefix dwec: <https://dwec.data.world/v0/> . | |
@prefix csvw: <http://www.w3.org/ns/csvw#> . | |
@prefix dwec-jdbc: <https://dwec.data.world/v0/jdbc-types/> . |
compare two photos; are they the same, even if they are different formats or of different dimensions? discard one, according to user’s preference (recency, size, format, etc)
Addressing this complaint: https://www.cockroachlabs.com/blog/go-file-size/
# Path to your oh-my-zsh installation. | |
export ZSH=/Users/chrisboette/.oh-my-zsh | |
# Set name of the theme to load. Optionally, if you set this to "random" | |
# it'll load a random theme each time that oh-my-zsh is loaded. | |
# See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes | |
# Installed Feb. 4, 2018: https://github.com/denysdovhan/spaceship-prompt | |
ZSH_THEME="spaceship" | |
# Uncomment the following line to display red dots whilst waiting for completion. |
Ex 1.1: Experiment with “hello world” program
int main(void) {
printf("hello, world\n");
return 0;
}
[user] | |
email = TODO | |
name = chrisbodhi | |
[core] | |
excludesfile = /Users/TODO/.gitignore_global | |
pager = diff-so-fancy | less --tabs=4 -RFX | |
[commit] | |
template = /Users/TODO/.gitmessage | |
[color] | |
ui = true |