Skip to content

Instantly share code, notes, and snippets.

View joelibaceta's full-sized avatar
🏠
Working from home

Joel Ibaceta joelibaceta

🏠
Working from home
View GitHub Profile
#colour_container {
width: 150px;
height: 150px;
background-color: black;
}
.color-option {
width: 50px;
height: 50px;
}
<html>
<head>
</head>
<body>
<form>
<p>
Ingrese numero 1:
<html>
<head>
</head>
<body>
<p> Hola soy un texto </p>
.banner {
background-image: url('banner.jpg');
background-repeat: no-repeat;
background-size: cover;
background-position: center center;
color: white;
}
@joelibaceta
joelibaceta / index.html
Created January 26, 2022 22:55
carousel
<html>
<head>
<link href="http://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<script src="http://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script>
</head>
<body>
<div class="container">
const router = new VueRouter({
routes: [
{ path: '/login', component: 'login-form'},
{ path: '/sign-up', component: 'signup-form'},
{ path: '/product-list', component: 'product-list'},
{ path: '/category/:category/product-list', component: 'product-list'}
]
})
var app = new Vue({
@joelibaceta
joelibaceta / app.js
Created January 24, 2022 22:26
vue-ecommerce
const router = new VueRouter({
routes: [
{ path: '/login', component: 'login-form'},
{ path: '/product-list', component: 'product-list'}
]
})
var app = new Vue({
router,
@joelibaceta
joelibaceta / app.js
Created January 24, 2022 21:39
router3
const router = new VueRouter({
routes: [
{path: "/hello/:name", component: "hello"},
{path: "/bye/:name", component: "bye"}
]
})
const app = new Vue({
router,
class Node:
def __init__(self, value):
self.value = value
self.next = None
class Stack:
# Initializing a stack.
# Use a dummy node, which is
# easier for handling edge cases.
function main(splash)
use_crawlera(splash)
assert(splash:go(splash.args.url))
splash:wait(5)
button = splash:select("#MasterGC_ContentBlockHolder_RadTabStrip1 div ul li:nth-of-type(4) a")
button:click()
return {
html = splash:html()
}