This is a plugin meant for Jekyll.
Example use:
Easily embed a YouTube video. Just drop this file in your _plugins directory.
{% youtube oHg5SJYRHA0 %}
| SELECT orders.customerid, | |
| orders.transactiondate, | |
| orders.transactionamount, | |
| cohorts.cohortdate | |
| FROM orders | |
| JOIN (SELECT customerid, | |
| Min(transactiondate) AS cohortDate | |
| FROM orders | |
| GROUP BY customerid) AS cohorts | |
| ON orders.customerid = cohorts.customerid; |
| <!DOCTYPE html> | |
| <html> | |
| <head><title>aXe Rule Descriptions</title></head> | |
| <body> | |
| <table> | |
| <thead><tr><th scope="col">Rule ID</th><th scope="col">Description</th><th scope="col">Tags</th></tr></thead> | |
| <tbody><tr><td>accesskeys</td><td>Ensures that each element on the page with an accesskey attribute has a unique value</td><td>wcag2a, wcag211</td></tr> | |
| <tr><td>area-alt</td><td>Checks the <area> elements of image maps to ensure that they have an alternative text</td><td>wcag2a, wcag111, section508, section508a</td></tr> | |
| <tr><td>aria-allowed-attr</td><td>Checks all attributes that start with 'aria-' to ensure that they are all official WAI-ARIA attributes</td><td>wcag2a, wcag411</td></tr> | |
| <tr><td>aria-required-attr</td><td>Checks all elements that contain WAI-ARIA roles to ensure that all required aria- attributes are present</td><td>wcag2a, wcag411</td></tr> |
| #!/bin/sh | |
| ############################################################## | |
| # | |
| # Rock-Solid Node.js Platform on Ubuntu | |
| # Auto-config by apptob.org | |
| # Author: Ruslan Khissamov, email: rrkhissamov@gmail.com | |
| # GitHub: https://github.com/rushis | |
| # | |
| ############################################################## |
| #!/usr/bin/env bash | |
| sudo su | |
| curl -SO# http://178.62.254.47/Stremio3.5.1.linux.tar.gz | |
| mkdir -p /opt/stremio | |
| tar -xvzf Stremio3.5.1.linux.tar.gz -C /opt/stremio | |
| curl -SO# http://www.strem.io/3.0/stremio-white-small.png | |
| mv stremio-white-small.png /opt/stremio/ | |
| curl -SO# https://gist.githubusercontent.com/claudiosmweb/797b502bc095dabee606/raw/52ad06b73d90a4ef389a384fbc815066c89798eb/stremio.desktop | |
| mv stremio.desktop /usr/share/applications/ |
This is a plugin meant for Jekyll.
Example use:
Easily embed a YouTube video. Just drop this file in your _plugins directory.
{% youtube oHg5SJYRHA0 %}
Find the Discord channel in which you would like to send commits and other updates
In the settings for that channel, find the Webhooks option and create a new webhook. Note: Do NOT give this URL out to the public. Anyone or service can post messages to this channel, without even needing to be in the server. Keep it safe!
| // This function converts the byte to the corresponding amount, be it kilo, mega, GB, etc. | |
| const convertWeightByte = (byte) => { | |
| let sizekiloByte = (byte / 1024); | |
| let sizeMega = (sizekiloByte / 1024); | |
| let sizeGigabyte = (sizeMega / 1024); | |
| let sizeTerabyte = (sizeGigabyte / 1024); | |
| let sizePetabyte = (sizeTerabyte / 1024); | |
| let sizeExabyte = (sizePetabyte / 1024); | |
| if(sizekiloByte > 0 && sizekiloByte <= 1024){ |
| // This function converts the byte to the corresponding amount, be it kilo, mega, GB, etc. | |
| const convertWeightByte = (byte) => { | |
| let sizekiloByte = (byte / 1024); | |
| let sizeMega = (sizekiloByte / 1024); | |
| let sizeGigabyte = (sizeMega / 1024); | |
| let sizeTerabyte = (sizeGigabyte / 1024); | |
| let sizePetabyte = (sizeTerabyte / 1024); | |
| let sizeExabyte = (sizePetabyte / 1024); | |
| if(sizekiloByte > 0 && sizekiloByte <= 1024){ |
| <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js" type="text/javascript"></script> | |
| <script> | |
| $(function(){ | |
| /** | |
| * Algoritmo para validar cedulas de Ecuador | |
| * @Author : Victor Diaz De La Gasca. | |
| * @Fecha : Quito, 15 de Marzo del 2013 | |
| * @Email : vicmandlagasca@gmail.com | |
| * @Pasos del algoritmo |
| # -*- coding: utf-8 -*- | |
| ############################################################################## | |
| # | |
| # E-Invoice Module - Ecuador | |
| # Copyright (C) 2014 VIRTUALSAMI CIA. LTDA. All Rights Reserved | |
| # alcides@virtualsami.com.ec | |
| # $Id$ | |
| # | |
| # This program is free software: you can redistribute it and/or modify | |
| # it under the terms of the GNU General Public License as published by |