Skip to content

Instantly share code, notes, and snippets.

View claudey's full-sized avatar
🎯
Focusing

Claude Ayitey claudey

🎯
Focusing
View GitHub Profile
@claudey
claudey / better-git-branch.sh
Created January 14, 2024 00:54 — forked from schacon/better-git-branch.sh
Better Git Branch output
#!/bin/bash
# Colors
RED='\033[0;31m'
GREEN='\033[0;32m'
NO_COLOR='\033[0m'
BLUE='\033[0;34m'
YELLOW='\033[0;33m'
NO_COLOR='\033[0m'
@claudey
claudey / twitterbot.md
Created May 19, 2020 00:35 — forked from aparrish/twitterbot.md
Make-A-Twitter-Bot Workshop
Accounting
Advertising/Public Relations
Agribusiness
Air
Architecture
Auto
Banking & Finance
Communications/Electronics
Construction
Education
@claudey
claudey / sample-slack-coc.md
Created July 29, 2018 06:59 — forked from annalee/sample-slack-coc.md
A sample code of conduct for social slack teams.

[SLACKNAME] Code of Conduct

Welcome!

[BRIEF DESCRIPTION OF THE SLACK AND ITS PURPOSE]

The current admins are:

  • [NAMES]
Process: Evernote [97025]
Path: /Applications/Evernote.app/Contents/MacOS/Evernote
Identifier: com.evernote.Evernote
Version: 7.2.1 (456793)
App Item ID: 406056744
App External ID: 827478735
Code Type: X86-64 (Native)
Parent Process: ??? [1]
Responsible: Evernote [97025]
User ID: 501

What I Wish I'd Known About Equity Before Joining A Unicorn

Disclaimer: This piece is written anonymously. The names of a few particular companies are mentioned, but as common examples only.

This is a short write-up on things that I wish I'd known and considered before joining a private company (aka startup, aka unicorn in some cases). I'm not trying to make the case that you should never join a private company, but the power imbalance between founder and employee is extreme, and that potential candidates would

@claudey
claudey / gist:32ab7d1e17656f71bff027ef78fddfbe
Created May 30, 2016 11:33 — forked from pitch-gist/gist:2999707
HTML: Simple Maintenance Page
<!doctype html>
<title>Site Maintenance</title>
<style>
body { text-align: center; padding: 150px; }
h1 { font-size: 50px; }
body { font: 20px Helvetica, sans-serif; color: #333; }
article { display: block; text-align: left; width: 650px; margin: 0 auto; }
a { color: #dc8100; text-decoration: none; }
a:hover { color: #333; text-decoration: none; }
</style>
@claudey
claudey / AirlineRes.java
Created November 1, 2012 02:17 — forked from yawboakye/AirlineRes.java
A full of bugs, unoptimized Java code for a CLI airline reservation.. Everything was built to be static. You may make it better or use the methods elsewhere.
package airlinereservationsystem_yawboakyeyiadom;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileWriter;
import java.io.IOException;
import java.util.InputMismatchException;
import java.util.Scanner;
/**