I hereby claim:
- I am juanvqz on github.
- I am juanvqz_ (https://keybase.io/juanvqz_) on keybase.
- I have a public key ASCaZfVx6ES9Ywbk4T36eydtdiXFYNMEoJZ4Cj1PqPdniQo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
name: release | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ main ] | |
jobs: | |
release-please: | |
runs-on: ubuntu-latest |
### SAP Individual Contributor License Agreement | |
Thank you for your interest in contributing to open source software projects (“Projects”) made available by SAP SE or its affiliates (“SAP”). This Individual Contributor License Agreement (“Agreement”) sets out the terms governing any source code, object code, bug fixes, configuration changes, tools, specifications, documentation, data, materials, feedback, information or other works of authorship that you submit or have submitted, in any form and in any manner, to SAP in respect of any of the Projects (collectively “Contributions”). If you have any questions respecting this Agreement, please contact [email protected]. | |
You agree that the following terms apply to all of your past, present and future Contributions. Except for the licenses granted in this Agreement, you retain all of your right, title and interest in and to your Contributions. | |
**Copyright License.** You hereby grant, and agree to grant, to SAP a non-exclusive, perpetual, irrevocable, worldwi |
# frozen_string_literal: true | |
# Use this setup block to configure all options available in SimpleForm. | |
SimpleForm.setup do |config| | |
# Default class for buttons | |
config.button_class = "button" | |
# Define the default class of the input wrapper of the boolean input. | |
config.boolean_label_class = "checkbox" |
/*! debug.css | MIT License | zaydek.github.com/debug.css */ | |
*:not(path):not(g) { | |
color: hsla(210, 100%, 100%, 0.9) !important; | |
background: hsla(210, 100%, 50%, 0.5) !important; | |
outline: solid 0.25rem hsla(210, 100%, 100%, 0.5) !important; | |
box-shadow: none !important; | |
} |
module.exports = { | |
title: 'JuanVqz.github.io', | |
themeConfig: { | |
nav: [ | |
{ text: 'Bienvenido', link: '/'} | |
], | |
sidebar: [ | |
'/', |
<?php | |
// composer.json | |
// "autoload-dev": { | |
// ... | |
// "files": ["tests/utilities/functions.php"] | |
// ... | |
// } | |
function create($class, $attributes = []) |
<?php | |
namespace Tests; | |
use Illuminate\Foundation\Testing\TestCase as BaseTestCase; | |
abstract class TestCase extends BaseTestCase | |
{ | |
use CreatesApplication; | |
extends html | |
snippet foreach "@foreach" | |
@foreach ($${1:array} as $${2:item}) | |
{{ $$2->${3} }} | |
@endforeach | |
snippet if "@if" | |
@if (${1:true}) | |
${2:tag} |