Skip to content

Instantly share code, notes, and snippets.

View jonilano's full-sized avatar

Jonathan Ilano jonilano

View GitHub Profile
@jonilano
jonilano / pldt-home-fibr-an5506-04-fa-rp2616-advanced-settings.md
Created April 16, 2018 07:45 — forked from kleo/backspace.md
PLDT HOME FIBR AN5506-04-FA RP2616 Advanced Settings

PLDT HOME FIBR AN5506-04-FA RP2616 Advanced Settings

By default the PLDT HOME FIBR AN5506-04-FA RP2616 comes only with limited settings.

Hidden from the web interface are the rest of the router's capabilities and advanced settings.

We just need to enter the right url for the settings you're looking for.

We need to be logged in before we can do anything else, use your defined password if you already set the admin password.

@jonilano
jonilano / ssh_config
Last active January 15, 2017 06:51
~/.ssh/config
# ~/.ssh/config
Host *
ServerAliveInterval 60
Host alias-name
Hostname ip-or-servername
Port 22
User username
@jonilano
jonilano / pubsub.js
Last active July 12, 2016 17:59 — forked from learncodeacademy/pubsub.js
Basic Javascript PubSub Pattern
//events - a super-basic Javascript (publish subscribe) pattern
var events = {
events: {},
on: function (eventName, fn) {
this.events[eventName] = this.events[eventName] || [];
this.events[eventName].push(fn);
},
off: function(eventName, fn) {
if (this.events[eventName]) {