Skip to content

Instantly share code, notes, and snippets.

View braian125's full-sized avatar

Brian Vanegas Parra braian125

View GitHub Profile
<div className="flights-records">
<div className="grid grid-cols-1 gap-4">
{[1, 2, 3, 4, 5].map((items, key) => (
<div key={key} className="border-secondary border-b py-4">
<div className="border border-gray-400 rounded-2xl p-2 md:p-4 mb-2">
<div className="grid grid-cols-6 md:grid-cols-5">
<div className="col-span-2 md:col-span-1 flex flex-col justify-center">
<span className="text-secondary font-semibold text-lg md:text-xl">Ida</span>
<span className="text-xs md:text-sm font-light">23/07/2021</span>
<img src={AaLogo} alt="logo refer" className="object-cover w-full ml-auto block md:hidden" />
//src/containers/dashboard/Dashboard.vue
<template>
<el-container class="main-container">
<sidebar />
<el-container>
<el-header>
<Header />
</el-header>
<el-main>
<router-view />
//src/App.vue
<template>
<div id="app">
<router-view />
</div>
</template>
<script>
export default {
name: "App",
//router/index.js
import Vue from "vue";
import Router from "vue-router";
Vue.use(Router);
const router = new Router({
mode: "history",
routes: [
{
package miprimerproyecto;
import java.util.Scanner;
import javax.lang.model.util.ElementScanner6;
public class Calculadora {
public static void main(String[] args) {
Scanner teclado = new Scanner(System.in);
int numeroUno;
@braian125
braian125 / gitflow-breakdown.md
Created February 27, 2018 22:11 — forked from JamesMGreene/gitflow-breakdown.md
A comparison of using `git flow` commands versus raw `git` commands.

Initialize

gitflow git
git flow init git init
  git commit --allow-empty -m "Initial commit"
  git checkout -b develop master

Connect to the remote repository