Skip to content

Instantly share code, notes, and snippets.

@danielabel
danielabel / Slack-Posting-Guidance.md
Last active April 3, 2021 14:25
Slack Posting Guidance

Using Slack is more like using Twitter than having a chat

  • The audience is likely broader than you think. What you say is recorded and searchable forever.
  • Nuance is hard with words alone - It takes work to express complex ideas, consider using a less public place to finesse them.
  • Your words will sometimes stand alone and lose their conversation context - be aware of what you say, when you say it.
  • Chatting in a private room with your close buddies is very different than @all in #announcements

Post in haste, repent at leisure

  • If you feel very strongly on a topic, consider writing your thoughts down and holding off posting for few hours.
Statistical profiling result from isolate-0x101804a00-v8.log, (363859 ticks, 3906 unaccounted, 0 excluded).
[Shared libraries]:
ticks total nonlib name
193679 53.2% /Users/dan/.nvm/versions/node/v5.5.0/bin/node
114294 31.4% /usr/lib/system/libsystem_malloc.dylib
50502 13.9% /usr/lib/system/libsystem_platform.dylib
888 0.2% /usr/lib/system/libsystem_kernel.dylib
72 0.0% /usr/lib/system/libsystem_c.dylib
23 0.0% /usr/lib/system/libsystem_pthread.dylib
var express = require('express');
var crypto = require('crypto');
var app = express();
var users = [];
app.get('/', function (req, res) {
res.send('Hello World!');
});
var express = require('express');
var crypto = require('crypto');
var app = express();
var users = [];
app.get('/', function (req, res) {
res.send('Hello World!');
});