Skip to content

Instantly share code, notes, and snippets.

View larizzatg's full-sized avatar
🎯
Focusing

Larizza Tueros larizzatg

🎯
Focusing
View GitHub Profile
https://strapi.io/blog/building-a-static-website-using-gatsby-and-strapi/#2installation
"remote.WSL.fileWatcher.polling": true
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
</head>
<body>
<script id="jsbin-javascript">
@larizzatg
larizzatg / async_await_and_promises.js
Created April 26, 2018 01:35
Async Await and Promises
// First Function
const canRegister = async (idCard, yunenCard) => {
const url = `${names.API_ENDPOINT_AFFILIATE}BuscarPendienteRegistro`;
const request = {
usuario: null,
requerimiento: `${idCard}-${yunenCard}`,
};
return new Promise((resolve, reject) => {
axios.post(url, request)
<template>
<div>
<app-input
:label="label"
:type="type"
prepend-content="lock"
:append-content="passwordIcon"
:append-inside="true"
:append-pointer="true"
<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"
using System;
using Yunen.Extensions;
namespace Yunen
{
class Program
{
static Mango originalMango = new Mango();
static void Main(string[] args)
{
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
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
@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
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