Skip to content

Instantly share code, notes, and snippets.

View chicho69-cesar's full-sized avatar
:octocat:
I'm programing!!

Cesar Villalobos Olmos chicho69-cesar

:octocat:
I'm programing!!
View GitHub Profile
@ShahrozTanveer
ShahrozTanveer / native-base-ions.md
Last active February 15, 2023 13:29
Icons list used with Native base

Native Base Ions List

  • "ios-add"
  • "ios-add-circle"
  • "ios-add-circle-outline"
  • "ios-add-outline"
  • "ios-alarm"
  • "ios-alarm-outline"
  • "ios-albums"
  • "ios-albums-outline"
  • "ios-alert"
@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));
};