Skip to content

Instantly share code, notes, and snippets.

View eseceve's full-sized avatar

Sebas Contreras eseceve

  • SCL
View GitHub Profile
@eseceve
eseceve / MarkdownComments.md
Created April 5, 2022 22:31 — forked from randallreedjr/MarkdownComments.md
How to add comments to Markdown

There are comments here but you can't see them

Below this ↓

//: (It’s a little bizarre, but it works with MacDown and Pandoc.) // # (This syntax works like a comment, and won't appear in any output.) // This syntax works like a comment, and won't appear in any output. //: # This syntax works like a comment, and won't appear in any output.

@eseceve
eseceve / readme.md
Last active August 6, 2017 04:25 — forked from jonah-williams/readme.markdown
Readme template for Github repository

Project

Description: What does this project do and who does it serve?

Project Setup

How do I, as a developer, start working on the project?

  1. What dependencies does it have (where are they expressed) and how do I install them?
  2. How can I see the project working before I change anything?
### INSTALLATION NOTES ###
# 1. Install Homebrew (https://github.com/mxcl/homebrew)
# 2. brew install zsh
# 3. Install OhMyZsh (https://github.com/robbyrussell/oh-my-zsh)
# 4. brew install reattach-to-user-namespace --wrap-pbcopy-pbpaste && brew link reattach-to-user-namespace
# 5. Install iTerm2 (https://code.google.com/p/iterm2/downloads/list)
# 6. In iTerm2 preferences for your profile set:
# Character Encoding: Unicode (UTF-8)
# Report Terminal Type: xterm-256color
# 7. Get scripts for status-right
@eseceve
eseceve / gist:4370295
Last active December 10, 2015 02:48 — forked from jslopez/gist:3990739
override "cd" command. Now: - Check virtualenv for activate/deactivate. - Check git and show a status. - Show directory files (with "ls").
# cd + virtualenv activation + ls + git status
function cd() {
# default cd
builtin cd $1;
# virtualenv activation
GIT_DIR=`git rev-parse --git-dir 2> /dev/null`
if [[ $? == 0 ]]
then
if [[ -f $GIT_DIR/../.env/bin/activate ]]