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
webpack .\entry.js bundle.js | |
webpack -w .\entry.js bundle.js | |
webpack -w --devtool source-map ./entry.js bundle.js | |
npm i css-loader style-loader -D | |
require('style!css!./style.css') | |
module.exports = { | |
entry: './entry.js', |
/* ========================================================================== | |
STYLE GUIDE | |
========================================================================== */ | |
/** | |
* | |
*/ | |
/* ========================================================================== | |
UTILITIES |
<body> | |
<!-- Begin Image --> | |
<!-- Invisible Box--> | |
<div class="box"> | |
<!-- Circular Head--> | |
<div class="head"> | |
<!-- Circular Head Copy --> | |
<div class="head-copy"></div> |
Workflow for contributing in a github project | |
1. Fork the choosen project | |
2. Git clone your fork project [git clone url] | |
3. Check existing branchs in the project [git branch] | |
4. Create a branch for each pull request (issue, feature...) [git checkout -b branch_name] | |
5. Commit changes [git commit -m "message"] | |
6. Push branch to remote repository [git push origin branch_name ] | |
7. Go to fork repository, select branch, select pull request, fill data and send it |
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
1. Players C# Guide | |
2. Pluralsight C# Playlist | |
3. Head First C# | |
4. Head First OOP | |
Knowledge | |
1. Create console app | |
2. Create website (just pages) | |
3. Create a web app |
https://bocao.com.do/restaurantes/yao | |
https://bocao.com.do/restaurantes/limao | |
https://bocao.com.do/restaurantes/shibuya | |
https://bocao.com.do/restaurantes/sushi-train |
using System; | |
using Yunen.Extensions; | |
namespace Yunen | |
{ | |
class Program | |
{ | |
static Mango originalMango = new Mango(); | |
static void Main(string[] args) | |
{ |
<template> | |
<div class="form-group"> | |
<label for="" v-if="typeof label !== 'undefined'">{{ label }}</label> | |
<!-- GROUP --> | |
<template v-if="isGroup"> | |
<div class="input-group"> | |
<!-- PREPEND --> | |
<div v-if="hasPrepend" class="input-group-prepend" |
<template> | |
<div> | |
<app-input | |
:label="label" | |
:type="type" | |
prepend-content="lock" | |
:append-content="passwordIcon" | |
:append-inside="true" | |
:append-pointer="true" |