Skip to content

Instantly share code, notes, and snippets.

View Tittoh's full-sized avatar
🌍
Remote

Titus K. Tittoh

🌍
Remote
  • Nairobi, KE
  • 00:49 (UTC +03:00)
View GitHub Profile
@Tittoh
Tittoh / github.css
Created December 15, 2022 14:49 — forked from tuzz/github.css
Github Markdown Stylesheet
/*
Copyright (c) 2017 Chris Patuzzo
https://twitter.com/chrispatuzzo
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
@Tittoh
Tittoh / postgres-brew.md
Created June 7, 2022 02:42 — forked from ibraheem4/postgres-brew.md
Installing Postgres via Brew (OSX)

Installing Postgres via Brew

Pre-Reqs

Brew Package Manager

In your command-line run the following commands:

  1. brew doctor
  2. brew update
@Tittoh
Tittoh / .babelrc
Created January 5, 2021 22:31 — forked from federicofazzeri/.babelrc
Node Express-based REST API (CRUD) using Firebase cloud Functions and FireStore cloud database + Babel config (The current Node version running in Cloud Functions is 6.10)
{
"presets": [
["env", {
"targets": {
"node": "6.10"
}
}]
]
}