This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sonar’s Meeting Culture | |
Intro: we should always keep time efficiency top of mind. Time is our most precious resource, both as a company and as humans. We all have the same 24 hour day, we made a conscious decision to prioritize work/life balance at Sonar. To accomplish work life balance AND make market-changing products, we have to be hyper efficient with our time. Saying no to things is one of the best things you can do. | |
Meetings are a high-resource-cost activity | |
Meetings are one of the most expensive uses of time for a company | |
Meetings have lasting effects on morale well after the meeting. Good meetings energize teams, bad meetings drain people. | |
Parkinson’s Law - work will always expand to fit the time allocated for a specific task. Always opt for the shortest meeting time necessary, it forces you to be efficient and you will find you’ll actually be more productive in meetings that are shorter | |
Recurring meetings (weekly, monthly, etc) are the most expensive type of meeting and should be avoided when pos |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
############### FIRST CURL ################### | |
############### LOOK AT ISSUER ############### | |
curl -vLi https://sendsonar.com | |
* Trying 3.13.31.214... | |
* TCP_NODELAY set | |
* Connected to sendsonar.com (3.13.31.214) port 443 (#0) | |
* ALPN, offering h2 | |
* ALPN, offering http/1.1 | |
* successfully set certificate verify locations: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// this is what you would do if you liked things to be easy: | |
// var stringifyJSON = JSON.stringify; | |
// but you don't so you're going to write it from scratch: | |
var stringifyJSON = function(obj) { | |
if(typeof(obj) === "number"){ | |
return "" + obj + ""; |