Skip to content

Instantly share code, notes, and snippets.

View MiguelMateoTavarez's full-sized avatar

Miguel Mateo MiguelMateoTavarez

  • BitBox Caribe SRL
  • Dominican Republic
  • 19:10 (UTC -04:00)
  • X @MiguelMateoT
View GitHub Profile
@Klerith
Klerith / README.md
Last active May 17, 2025 17:15
Deprecated Method - Decorador

@Deprecated - Method Decorator

En la definici贸n del m茅todo, se puede marcar como obsoleto (deprecated) con la justificaci贸n. Esto ayudar谩 a que otros developers sep谩n que deben de utilizar ya la alternativa.

@Deprecated('Most use speak2 method instead')
 speak() {
      console.log(`${ this.name }, ${ this.name }!`)
 }
@Klerith
Klerith / Instalaciones-React.md
Last active June 6, 2025 22:51
Instalaciones recomendadas para mi curso de React de cero a experto
@wildshark
wildshark / index.html
Created April 3, 2019 00:16
POS Receipt Template Html Css
<div id="invoice-POS">
<center id="top">
<div class="logo"></div>
<div class="info">
<h2>SBISTechs Inc</h2>
</div><!--End Info-->
</center><!--End InvoiceTop-->
@Klerith
Klerith / parse-jwt.js
Created March 15, 2018 15:07
Parse - JWT - Obtener Payload y fecha de creaci贸n y expiraci贸n
function parseJwt (token) {
var base64Url = token.split('.')[1];
var base64 = base64Url.replace('-', '+').replace('_', '/');
return JSON.parse(window.atob(base64));
};