Skip to content

Instantly share code, notes, and snippets.

View kevinah95's full-sized avatar
🇨🇷

Kevin Hernández Rostrán kevinah95

🇨🇷
View GitHub Profile
<!DOCTYPE html>
<html ng-app="Nombre_del_Modulo">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Las 3 tags 'meta' de arriba son necesarias para el diseño web adaptable proporcionado por bootstrap -->
<title>Introducción a Angular</title>
<!-- ==========Bootstrap========== -->
<link href="bower_components/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet">
<!DOCTYPE html>
<html ng-app="Nombre_del_Modulo">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Las 3 tags 'meta' de arriba son necesarias para el diseño web adaptable proporcionado por bootstrap -->
<title>Introducción a Angular</title>
<!-- ==========Bootstrap========== -->
<!-- Compilación minimizada del CSS de Bootstrap -->
@kevinah95
kevinah95 / OpenWithSublimeText.bat
Created April 3, 2016 03:05 — forked from zouyang08/OpenWithSublimeText.bat
Open folders and files with Sublime Text 3 from windows explorer context menu (tested in Windows 10)
@echo off
SET st3Path=C:\Program Files\Sublime Text 3\sublime_text.exe
rem add it for folders
@reg add "HKEY_CLASSES_ROOT\Directory\shell\Open with Sublime Text" /t REG_SZ /v "" /d "Open with Sublime Text" /f
@reg add "HKEY_CLASSES_ROOT\Directory\shell\Open with Sublime Text" /t REG_EXPAND_SZ /v "Icon" /d "%st3Path%,0" /f
@reg add "HKEY_CLASSES_ROOT\Directory\shell\Open with Sublime Text\command" /t REG_SZ /v "" /d "%st3Path% \"%%1\"" /f
pause
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@kevinah95
kevinah95 / space_ship.svg
Created April 7, 2016 01:56
Exposición Renderización de Vectores
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@kevinah95
kevinah95 / git-cheat-sheet.md
Created October 28, 2016 23:01 — forked from prograhammer/git-cheat-sheet.md
Git cheat sheet for some useful Git commands and command scenarios.

Contributing

When contributing to this repository, please first discuss the change you wish to make via issue, email, or any other method with the owners of this repository before making a change.

Please note we have a code of conduct, please follow it in all your interactions with the project.

Pull Request Process

  1. Ensure any install or build dependencies are removed before the end of the layer when doing a
import matplotlib.pyplot as plt
import matplotlib.ticker as ticker
import numpy as np
from Bio.Seq import Seq
#------------------------------
seq1 = Seq("GATCCA")
seq2 = Seq("GTGCCT")
match_award = 1
mismatch_penalty = -1
@kevinah95
kevinah95 / gist:65f0fc16a80948eeb8881b71d95dfed0
Created October 9, 2017 02:03 — forked from CristinaSolana/gist:1885435
Keeping a fork up to date

1. Clone your fork:

git clone git@github.com:YOUR-USERNAME/YOUR-FORKED-REPO.git

2. Add remote from original repository in your forked repository:

cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
@kevinah95
kevinah95 / index-pwa.html
Last active June 6, 2018 19:04 — forked from ianaya89/favicons.html
[PWA] All Favicons for All Devices and Sizes
<!-- manifest -->
<link rel="manifest" href="manifest.json">
<!-- favicon -->
<link rel="shortcut icon" sizes="16x16 32x32 48x48 64x64" href="favicon.ico">
<!-- iOS -->
<link rel="apple-touch-icon" href="touch-icon-iphone.png">
<link rel="apple-touch-icon" sizes="152x152" href="touch-icon-ipad.png">
<link rel="apple-touch-icon" sizes="180x180" href="touch-icon-iphone-retina.png">