Skip to content

Instantly share code, notes, and snippets.

View MiguelMateoTavarez's full-sized avatar
🎯
Focusing

Miguel Mateo MiguelMateoTavarez

🎯
Focusing
  • BitBox Caribe SRL
  • Dominican Republic
  • 10:50 (UTC -04:00)
  • X @MiguelMateoT
View GitHub Profile
@Klerith
Klerith / README.md
Last active May 14, 2024 23:39
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 May 11, 2024 22:25
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));
};