Skip to content

Instantly share code, notes, and snippets.

View chinedudara's full-sized avatar
💭
.ıllıllı.

Chinedu Okechukwu-Dara chinedudara

💭
.ıllıllı.
View GitHub Profile
@chinedudara
chinedudara / MimeTypes.cs
Created April 29, 2021 12:15 — forked from alex-codes/MimeTypes.cs
List of common MIME types
public static class MimeTypes
{
public static string Aiff
{
get { return "audio/aiff"; }
}
public static string Avi
{
get { return "video/x-msvideo"; }
@chinedudara
chinedudara / gist:86bc13d3f62f144fcea99302cf230821
Created May 17, 2019 19:42 — forked from rxaviers/gist:7360908
Complete list of github markdown emoji markup

People

:bowtie: :bowtie: 😄 :smile: 😆 :laughing:
😊 :blush: 😃 :smiley: ☺️ :relaxed:
😏 :smirk: 😍 :heart_eyes: 😘 :kissing_heart:
😚 :kissing_closed_eyes: 😳 :flushed: 😌 :relieved:
😆 :satisfied: 😁 :grin: 😉 :wink:
😜 :stuck_out_tongue_winking_eye: 😝 :stuck_out_tongue_closed_eyes: 😀 :grinning:
😗 :kissing: 😙 :kissing_smiling_eyes: 😛 :stuck_out_tongue:
@chinedudara
chinedudara / herok_github.md
Created March 11, 2019 04:24 — forked from jczaplew/herok_github.md
Heroku + Github + Sensitive Data

Heroku + Github + Sensitive Data

Scenario: You deployed a Heroku project that contains sensitive data (password, API key, etc) but you want to share it on Github.

Problem: You need to commit all files necessary for the application to run on Heroku. However, pushing this to Github would reveal the sensitive info.

Solution: Have a production branch (for this example, master will be the production branch) and a Github branch. The latter contains a different .gitignore that ignores the sensitive files.