Skip to content

Instantly share code, notes, and snippets.

View larizzatg's full-sized avatar
🎯
Focusing

Larizza Tueros larizzatg

🎯
Focusing
View GitHub Profile
@larizzatg
larizzatg / Webpack
Created November 17, 2016 13:28
Webpack commands
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',
@larizzatg
larizzatg / basic.css
Created November 17, 2016 14:22
Idiomatic css layout
/* ==========================================================================
STYLE GUIDE
========================================================================== */
/**
*
*/
/* ==========================================================================
UTILITIES
@larizzatg
larizzatg / index.html
Created July 4, 2017 23:55
Koala #dailycssimages
<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
@larizzatg
larizzatg / gist:f6a9049365acd859aa9f54cd46a155e5
Created October 16, 2017 01:36 — forked from CristinaSolana/gist:1885435
Keeping a fork up to date

1. Clone your fork:

git clone [email protected]: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
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"