Skip to content

Instantly share code, notes, and snippets.

View enteropositivo's full-sized avatar
🎯
Focusing

Entero Positivo enteropositivo

🎯
Focusing
View GitHub Profile
@enteropositivo
enteropositivo / 0_reuse_code.js
Last active August 29, 2015 14:21
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console

Experience

  • Software Development
  • UX/UI
  • Enterprise Management
  • Reverse Engineering (SoftIce, W32Dasm, ...)
  • Hardware (Arduino, ESP32, STM32, ...)

image image image image image image image

@enteropositivo
enteropositivo / TinyToken-samples.php
Last active May 22, 2022 12:11
TinyToken is a class that generates unique and small tokens for use in your PHP proyects as UID for your database users, sessions, forms And returned token it is verifiable!
<?php
require "TinyToken.php";
// Generate new unique token
$token = TinyToken::get();
// Show it !
echo $token;
echo "<br>";