Skip to content

Instantly share code, notes, and snippets.

View jgermade's full-sized avatar
🎨
Working from home

Jesús Germade jgermade

🎨
Working from home
View GitHub Profile
{
"toc": true,
"merchant": {
"cancel_url": "/demo-cancel.html",
"success_url": "/demo-success.html"
},
"customer": {
"id": "140",
"email": "[email protected]",
"address": {
{
"toc": true,
"merchant": {
"confirmation_url": "/confirm",
"cancel_url": "/demo-cancel.html",
"ko_url": "/demo-cancel.html",
"success_url": "/demo-success.html",
"force_document_id_manual_upload": true
},
"customer": {
var path_setters = {
radio: function (path, radio) {
path.el.setAttribute('r', radio );
},
stroke_color: function (path, stroke_color) {
path.stroke_color = stroke_color || 'transparent';
path.el.style.stroke = stroke_color;
},
stroke_width: function (path, stroke_width) {
path.stroke_width = stroke_width || 0;

Keybase proof

I hereby claim:

  • I am jgermade on github.
  • I am jgermade (https://keybase.io/jgermade) on keybase.
  • I have a public key whose fingerprint is 3456 AA0C 5F57 5223 656A A0BA B520 697D 241F 883F

To claim this, I am signing this object:

{
"Horizontal Spacing" : 1,
"Tags" : [
],
"Ansi 12 Color" : {
"Green Component" : "0.6235294",
"Blue Component" : "0.8117647",
"Red Component" : "0.4470588"
},
#!/bin/sh
synclient LeftEdge=1588
synclient RightEdge=5352
synclient TopEdge=1398
synclient BottomEdge=4452
synclient FingerLow=25
synclient FingerHigh=30
synclient MaxTapTime=180
synclient MaxTapMove=247
default partial alphanumeric_keys
xkb_symbols "basic" {
name[Group1]= "Epañol (R_Control as Menu)";
include "es(altgr-intl)"
// my custom changes:
key <RCTL> { [ Menu ] };
{
"merchant": {
"cancel_url": "/demo-cancel.html",
"ko_url": "/demo-cancel.html",
"success_url": "/demo-success.html",
"close_on_success": false,
"timeout_extra": 0
},
"customer": {
"id": "140",
{
"toc": true,
"merchant": {
"confirmation_url": "https://api-demo-dev.aplazame.com/confirm",
"cancel_url": "/demo-cancel.html",
"success_url": "/demo-success.html"
},
"customer": {
"id": "140",
"email": "[email protected]",
@jgermade
jgermade / shadow-dom.md
Created June 6, 2020 02:31 — forked from praveenpuglia/shadow-dom.md
Everything you need to know about Shadow DOM

I am moving this gist to a github repo so more people can contribute to it. Also, it makes it easier for me to version control.

Please go to - https://github.com/praveenpuglia/shadow-dom-in-depth for latest version of this document. Also, if you find the document useful, please shower your love, go ⭐️ it. :)

Shadow DOM

Heads Up! It's all about the V1 Spec.

In a nutshell, Shadow DOM enables local scoping for HTML & CSS.