Skip to content

Instantly share code, notes, and snippets.

View 92bondstreet's full-sized avatar

Yassine A. 92bondstreet

  • 92 Bond Street
  • Paris
View GitHub Profile
@philhawksworth
philhawksworth / conference-mc-tips.md
Last active August 23, 2025 10:46
Conference MC-ing tips

👀📎 It looks like you're preparing to MC a conference...

🚨 GIANT DISCLAIMER: This stuff is far from authoritative. But it's what I think works for me, and what I enjoy in an MC when I'm attending a conference.


Biggest tip - enjoy yourself.

@miguelmota
miguelmota / tmux.conf
Created November 24, 2018 07:40
Tmux fix reattach-to-user-namespace unsupported new OS error
# how to fix the error:
# warning: reattach-to-user-namespace: unsupported new OS, trying as if it were "10.10" Mojave
# replace
bind-key -T copy-mode-vi 'y' send -X copy-pipe "reattach-to-user-namespace pbcopy"
# with
bind-key -T copy-mode 'y' send -X copy-pipe-and-cancel "pbcopy"
export TERM=xterm-256color
export CLICOLOR=1
export ZSH=$HOME/.oh-my-zsh
ZSH_THEME='asap'
plugins=(brew git npm node osx yarn zsh-autosuggestions zsh-syntax-highlighting)
@asapzacy
asapzacy / .macos
Last active April 18, 2019 21:54
#!/bin/bash
HOSTNAME="asapzacy"
TIMEZONE="America/Los_Angeles"
# Close any open System Preferences panes, to prevent them from overriding
# settings we’re about to change
osascript -e 'tell application "System Preferences" to quit'
# Ask for the administrator password upfront
@Integralist
Integralist / SLI, SLO, SLA.md
Last active July 18, 2024 16:43
[SLI, SLO, SLA] #SLI #SLO #SLA #Process #Service

SLI, SLO, SLA ?

When building a service, we have a responsibility to define some baseline agreements as to the service’s expected uptime and performance. This document focuses on the various terminology that we use to define these values.

  • Service Level Indicator (SLI)
    What the service owner has chosen to measure progress towards their goal.
    e.g. What is good/bad service for your users.

  • Service Level Objective (SLO)
    What the service owner’s goal is for the given indicator.

@laugri
laugri / Who-The-A-Method-for-Hiring.md
Last active October 28, 2025 20:41
Who: The a Method for Hiring - Geoff Smart and Randy Street - Summary

This is my summary of "The A method for recruiting" by Geoff Smart and Randy Street.

"I feel great ! I have a fantastic team working with me now. [...] It's all because I have a team of A players."

The "A" method for recruiting

  • Make a scorecard for the position
  • Source candidates
  • Select a candidate
  • Sell the job to them
@hakanilter
hakanilter / kafka-elastic.js
Last active October 2, 2019 07:56
Indexing data from Kafka to ElasticSearch with Node.js in 30 lines :)
var elasticsearch = require('elasticsearch');
var elastic = new elasticsearch.Client({
host: 'localhost:9200',
log: 'info'
});
var kafka = require('kafka-node'),
HighLevelConsumer = kafka.HighLevelConsumer,
client = new kafka.Client(),
consumer = new HighLevelConsumer(
@firatkucuk
firatkucuk / delete-slack-messages.js
Last active February 4, 2026 21:36
Deletes slack public/private channel messages, private chat messages and channel thread replies.
#!/usr/bin/env node
// Channel ID is on the the browser URL.: https://mycompany.slack.com/messages/MYCHANNELID/
// Pass it as a parameter: node ./delete-slack-messages.js CHANNEL_ID
// CONFIGURATION #######################################################################################################
const token = 'SLACK TOKEN';
// Legacy tokens are no more supported.
// Please create an app or use an existing Slack App
@e7d
e7d / README.md
Last active June 2, 2025 16:41
[Debian] Setup a Squid anonymous proxy

FWIW: I (@rondy) am not the creator of the content shared here, which is an excerpt from Edmond Lau's book. I simply copied and pasted it from another location and saved it as a personal note, before it gained popularity on news.ycombinator.com. Unfortunately, I cannot recall the exact origin of the original source, nor was I able to find the author's name, so I am can't provide the appropriate credits.


Effective Engineer - Notes

What's an Effective Engineer?