Skip to content

Instantly share code, notes, and snippets.

View daguitosama's full-sized avatar

Dago daguitosama

  • some where in the tropical line
  • 01:50 (UTC -04:00)
View GitHub Profile
@dillonchanis
dillonchanis / example.css
Created September 20, 2020 14:44
Tailwind Utility for using gradients with text
@layer utilities {
.text-gradient {
background-clip: text;
-webkit-text-fill-color: transparent;
}
}
@vbsessa
vbsessa / chrome-devtools.md
Last active February 28, 2025 03:42
How to customize Chrome devtools fonts
  1. Enable #enable-devtools-experiments flag in chrome://flags section.

  2. Open Chorme Devtools and check Settings > Experiments > Allow extensions to load custom stylesheets.

  3. Create the following four files in a dedicated folder.

    3.1. devtools.html

    <html>
    <head></head>
    <body><script src="devtools.js"></script></body>
<?php
/***********************************************************************************
These are examples and references for the WooCommerce Order Item meta data hooks
that is displayed in the admin side of WordPress when viewing a customer's order.
***********************************************************************************/
//Do Something before the order item's meta data
do_action( 'woocommerce_before_order_itemmeta', $item_id, $item, $_product );
//Do Something after the order item's meta data
@staltz
staltz / introrx.md
Last active June 6, 2025 21:39
The introduction to Reactive Programming you've been missing