Skip to content

Instantly share code, notes, and snippets.

@lokamaya
lokamaya / ZTE-F609.md
Created April 26, 2020 17:58 — forked from ndunks/ZTE-F609.md
Manual help untuk Modem Indihome TELNET ZTE F609

Telnet Manual Modem Indihome

Saya sering lupa, jadi tulis aja di gist.

Login Root via Telnet

telnet 192.168.1.1
login: root

pass : Zte521

@lokamaya
lokamaya / jwt.php
Created March 23, 2019 05:19 — forked from douglascabral/jwt.php
Example of JWT with Pure PHP
<?php
$key = 'your-secret-key-here';
$header = [
'typ' => 'JWT',
'alg' => 'HS256'
];
$header = json_encode($header);
$header = base64_encode($header);
<?php
/**
* An extension to modUser that allows Atlassian Crowd integration via SOAP.
*
* @todo Complete this class to handle all external user management tasks
* allowed with Crowd.
*
* @package modx
* @subpackage user.crowd
*/