Skip to content

Instantly share code, notes, and snippets.

View jorgejaramillo's full-sized avatar
🎯
Focusing

Jorge Jaramillo jorgejaramillo

🎯
Focusing
View GitHub Profile
title:
SOAT Online a Crédito en Luegopago. Compra ahora, paga luego.
Description:
Paga tu SOAT con tu cupo Sistecrédito en hasta 8 cuotas. Cómpralo con hasta 2 meses de anticipación. Compra ahora, paga luego tu SOAT online.
@jorgejaramillo
jorgejaramillo / API-Google-Search-Console.py
Last active January 12, 2022 14:57
Uso solo en Colab
!pip install git+https://github.com/joshcarty/google-searchconsole
# Librerias utilizadas
import searchconsole
import pandas as pd
import numpy as np
from datetime import datetime
from datetime import timedelta
import calendar
@jorgejaramillo
jorgejaramillo / Shopify-dataLayer.js
Created September 8, 2021 14:47
Shopify dataLayer (Checkout - Purchase)
{% if first_time_accessed %}
<script>
window.dataLayer = window.dataLayer || [];
var shipping_price = '{{shipping_price | money_without_currency }}';
shipping_price = shipping_price.replace(",", ".");
var total_price = '{{total_price | money_without_currency }}';
total_price = total_price.replace(",", ".");
var tax_price = '{{tax_price | money_without_currency }}';
tax_price = tax_price.replace(",", ".");
window.dataLayer.push({
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Tangerine">
@jorgejaramillo
jorgejaramillo / robots.txt
Created October 11, 2020 15:24
Ejemplo de robot pero abierto.
User-Agent: *
Disallow:
Sitemap: https://ejemplo.com/sitemap.xml
<script type="application/ld+json">
{
"@context": "https://schema.org/",
"@type": "Recipe",
"name": "Receta de PLATANO CON QUESO",
"image": "https://tortadebanano.com/img/torta-banano-paso-1.jpg",
"description": "Un manjar del trópico.",
"keywords": "Bananos, banana",
"author": {
"@type": "Person",
@jorgejaramillo
jorgejaramillo / metas-ejemplo.txt
Last active October 10, 2020 15:54
Titles y descripciones
<title>Torta de Banano</title>
<meta name="title" content="Torta de Banano" />
<meta name="description" content="Conoce las diferentes recetas de Torta de banano." />
<meta http-equiv="content-language" content="es" />
<meta name="robots" content="index, follow" />
<link rel="canonical" href="https://tortadebanano.com" />
<meta name="author" content="Tu nombre" />
@jorgejaramillo
jorgejaramillo / sitemap-base.xml
Last active June 19, 2023 22:15
Diferentes tipos de mapas del sitio.
<!--Sitemap base-->
<?xml version="1.0" encoding="utf-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>https://jorgejaramillo.com/</loc>
<lastmod>2020-10-08</lastmod>
<changefreq>daily</changefreq>
<priority>1.0</priority>
</url>
</urlset>
<html>
<head>
<title>Preguntas frecuentes</title>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [{
"@type": "Question",
"name": "Pregunta 1",
javascript:document.body.contentEditable = 'true'; document.designMode='on'; void 0