Skip to content

Instantly share code, notes, and snippets.

View stacklast's full-sized avatar
:electron:
Keep It Simple!

Edwin Benalcázar E. stacklast

:electron:
Keep It Simple!
View GitHub Profile
@Klerith
Klerith / instalaciones-node.md
Last active October 25, 2025 00:46
Instalaciones recomendadas - Curso de Node de cero a experto
@Klerith
Klerith / instalaciones-qwik.md
Created May 8, 2023 22:31
Instalaciones recomendadas para qwik
@Klerith
Klerith / flutter-instalaciones.md
Last active December 9, 2025 01:32
Instalaciones del curso de Flutter - Móvil de cero a experto
@stacklast
stacklast / wp-add-hubspot-embed-code.php
Created July 10, 2021 00:04
[WordPress] - Add HubSpot Embed Code
<?php
add_action( 'wp_footer', 'my_own_hubspot', 20 );
function my_own_hubspot() { ?>
<!-- Start of HubSpot Embed Code -->
<script type="text/javascript" id="hs-script-loader" async defer src="//js.hs-scripts.com/XXXXXXX.js"></script>
<!-- End of HubSpot Embed Code -->
<?php
}
@stacklast
stacklast / wp-google-analytics-code.php
Created July 10, 2021 00:02
[WordPress] - Add Google Analytics | Global site tag (gtag.js) - Google Analytics
<?php
// Add Google Analytics
add_action( 'wp_head', 'my_own_analytics', 20 );
function my_own_analytics() { ?>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-XXXXXXXXX-X"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
@stacklast
stacklast / woocomerce-add-back-button-on-single-product.php
Created July 9, 2021 23:56
[WooComerce] - Add Back Button on the top before Sigle Product content
<?php
add_action( 'woocommerce_before_single_product', 'my_function_sample', 10);
function my_function_sample() {
global $product;
echo ' <button style="margin-top: 1.5em;" class="weforms_submit_btn" type="button" onclick="history.back();"> Go Back </button>' ;
}
@LayZeeDK
LayZeeDK / angular-cli-node-js-typescript-rxjs-compatiblity-matrix.csv
Last active November 12, 2025 17:59
Angular CLI, Angular, Node.js, TypeScript, and RxJS version compatibility matrix. Officially part of the Angular documentation as of 2023-04-19 https://angular.dev/reference/versions
Angular CLI version Angular version Node.js version TypeScript version RxJS version
~16.0.0 ~16.0.0 ^16.13.0 || ^18.10.0 >=4.9.5 <5.1.0 ^6.5.5 || ^7.4.0
~15.2.0 ~15.2.0 ^14.20.0 || ^16.13.0 || ^18.10.0 >=4.8.4 <5.0.0 ^6.5.5 || ^7.4.0
~15.1.0 ~15.1.0 ^14.20.0 || ^16.13.0 || ^18.10.0 >=4.8.4 <5.0.0 ^6.5.5 || ^7.4.0
~15.0.5 ~15.0.4 ^14.20.0 || ^16.13.0 || ^18.10.0 ~4.8.4 ^6.5.5 || ^7.4.0
~14.3.0 ~14.3.0 ^14.15.0 || ^16.10.0 >=4.6.4 <4.9.0 ^6.5.5 || ^7.4.0
~14.2.0 ~14.2.0 ^14.15.0 || ^16.10.0 >=4.6.4 <4.9.0 ^6.5.5 || ^7.4.0
~14.1.3 ~14.1.3 ^14.15.0 || ^16.10.0 >=4.6.4 <4.8.0 ^6.5.5 || ^7.4.0
~14.0.7 ~14.0.7 ^14.15.0 || ^16.10.0 >=4.6.4 <4.8.0 ^6.5.5 || ^7.4.0
~13.3.0 ~13.3.0 ^12.20.2 || ^14.15.0 || ^16.10.0 >=4.4.4 <4.7.0 ^6.5.5 || ^7.4.0
@joshbuchea
joshbuchea / semantic-commit-messages.md
Last active December 11, 2025 12:37
Semantic Commit Messages

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example