Thought I'd share a shortcut with you. You've probably seen Tampermonkey (or Greasemonkey) before. This one adds my favourite shortcuts to the DW nav:
Here's the easy script:
// ==UserScript==
// @name DIAFOL_BAR
// @include https://www.daniweb.com/*
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js
// @grant GM_addStyle
// ==/UserScript==
$("nav .navbar-nav").append ( '<li><a href="/programming/web-development/6">WP</a></li><li><a href="/community-center/3">CC</a></li>');