Inspiration: Things I believe · GitHub
- Make it simple, then make it even more simple.
- We're paid to think, not write code.
- Articulated your thoughts with others.
- Always retrospect on what could have gone better.
Inspiration: Things I believe · GitHub
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
DOMAIN=$1 | |
mkdir -p /tmp/appwatch-bbl | |
mkdir -p /tmp/certbot | |
gsutil cp gs://appwatch-bbl/my-app-config.json /tmp/appwatch-bbl/my-app-config.json | |
chmod 600 /tmp/appwatch-bbl/my-app-config.json |
git log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr)%Creset' --abbrev-commit --date=relative master..branch-X
We have a single large depot with almost all of Google's projects on it. This aids agile development and is much loved by our users, since it allows almost anyone to easily view almost any code, allows projects to share code, and allows engineers to move freely from project to project. Documentation and data is stored on the server as well as code.
>Git subtree allows you to insert any repository as a sub-directory of another one. It is one of several ways Git projects can manage project dependencies.
>Hasty generalization is an informal fallacy of faulty generalization by reaching an inductive generalization based on insufficient evidence—essentially making a hasty conclusion without considering all of the variables. In statistics, it may involve basing broad conclusions regarding the statistics of a survey from a small sample group that fails to sufficiently represent an entire population. Its opposite fallacy is called slothful induction, or denying a reasonable conclusion of an inductive argument (e.g. "it was just a coincidence").
A service worker is a script that is run by your browser in the background, separate from a web page, opening the door to features which don't need a web page or user interaction. Rich offline experiences, periodic background syncs, push notifications— functionality that would normally require a native application—are coming to the web.
postMessage
interfaceThe chown command (abbreviation for change owner) is used on Unix-like systems to change the owner of a file.
sudo chown -R <owner>:<group> /usr/local/
In Unix-like operating systems, chmod is the command and system call which may change the access permissions to file system objects.
sudo chmod -R g+w /usr/local/