Initialize a git repo in the current directory
# git init
Add a remote called "origin"
<!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 --> |
@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 |
Initialize a git repo in the current directory
# git init
Add a remote called "origin"
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.
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 |
git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
<!-- 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"> |