Skip to content

Instantly share code, notes, and snippets.

View davidcp90's full-sized avatar
🎯
Software engineer & leader

David Felipe Camargo Polo davidcp90

🎯
Software engineer & leader
View GitHub Profile
<!DOCTYPE html>
<html>
<head>
<title>Migue</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<style type="text/css">
#icons{
display: flex;
width: 100%;
justify-content: center;
@davidcp90
davidcp90 / hamburguer.css
Created October 5, 2019 04:20
HamburguerReact
#menu {
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
padding: 8px;
}
#lista {
display: flex;
align-items: center;
@davidcp90
davidcp90 / RandomSamplesShell.php
Created March 10, 2016 15:37
RandomSamplesShell
<?php
/**
* Definition of RandomSamplesShell
*
* PHP version 5.3.x
*
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
@davidcp90
davidcp90 / subsettings
Created May 6, 2015 16:52
my sublime settings
{
"added_words":
[
"customizado"
],
"caret_extra_width": 1,
"caret_style": "phase",
"close_windows_when_empty": false,
"color_scheme": "Packages/User/SublimeLinter/Flatland Monokai (SL).tmTheme",
"copy_with_empty_selection": false,
@davidcp90
davidcp90 / Animated-Hotspot-with-Images.markdown
Created January 30, 2015 00:56
Animated Hotspot with Images
@davidcp90
davidcp90 / zshrc
Last active August 29, 2015 14:01
complete zshrc
# Path to your oh-my-zsh installation.
export ZSH=$HOME/.oh-my-zsh
# Set name of the theme to load.
# Look in ~/.oh-my-zsh/themes/
# Optionally, if you set this to "random", it'll load a random theme each
# time that oh-my-zsh is loaded.
ZSH_THEME="miloshadzic"
# Example aliases
from tutorya.settings import *
print 'Usando local_settings'
DEBUG = True
#Auth User Model Information
# AUTH_USER_MODEL = 'profiles.User'
# EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend'
INTERNAL_IPS = ('127.0.0.1',)
@davidcp90
davidcp90 / sexyalias
Created March 25, 2013 18:00
My alias to do some things fast in linux terminal, if you want to use please modify your .bashrc file in your home directory and add the following lines at the end of the file
alias sublime="sublime-text-2"
alias supsub="sudo sublime-text-2"
alias instalar="sudo apt-get install"
alias actualizar="sudo apt-get update"
alias proxyud='export http_proxy="http://proxy.udistrital.edu.co:3128"'
alias udproxy='export https_proxy="http://proxy.udistrital.edu.co:3128"'
alias gita="git add ."
alias gitpl="git pull origin master"
alias gitps="git push origin master"
alias gitc="git commit -m"