Skip to content

Instantly share code, notes, and snippets.

View juanfernandes's full-sized avatar
💭
Available for contract / freelance work

Juan Fernandes juanfernandes

💭
Available for contract / freelance work
View GitHub Profile
@juanfernandes
juanfernandes / 01_web-dev-setup-files.md
Last active November 10, 2022 15:06
Web Dev Environment Setup

Web Dev Environment Setup

Note: This was for my Ubuntu setup - need to update this for my macbook setup

@juanfernandes
juanfernandes / 01_sublime-text-setup.md
Last active July 27, 2023 14:40
Sublime Text Setup

Sublime Text setup files

.nav {
&__list {
&__item {
&--featured {
}
}
}
}

Keybase proof

I hereby claim:

  • I am juanfernandes on github.
  • I am juanfernandes (https://keybase.io/juanfernandes) on keybase.
  • I have a public key ASCNPfnhhCmCmE2iGXsOlKcNB4MfPGdrKOm8AuoJDiYT7wo

To claim this, I am signing this object:

@juanfernandes
juanfernandes / get-text-content
Created September 2, 2013 09:10
Get text content from HTML with out html code.
Let's say you have the following HTML:
<div id="module">
<p>
This is some <b>example</b> text
<span>with some random markup.</span>
</p>
</div>
If you want to grab all the text content inside of #module, you can do this:
@juanfernandes
juanfernandes / .bashrc
Created June 1, 2013 06:36
Add to end of .bashrc - removes username@machine and shows your current branch etc - see http://lancespeelmon.wordpress.com/2012/05/10/three-tips-for-creating-the-best-ever-git-command-line/
# http://lancespeelmon.wordpress.com/2012/05/10/three-tips-for-creating-the-best-ever-git-command-line/
c_cyan=`tput setaf 6`
c_red=`tput setaf 1`
c_green=`tput setaf 2`
c_sgr0=`tput sgr0`
parse_git_branch ()
{
if git rev-parse --git-dir >/dev/null 2>&1
then