in reply to Some better way to read/post/follow threads

Is it possible to connect with the various forums, thru NNTP? And use them like regular usenet is setup?

Not really :)

Sure 10+ years ago ... Perlmonks -> NNTP gateway, Monastery NNTP Bridge, CC'ing Comments to Newsgroup... so technically blah blah :) ...

There are already plenty of perl usenet newsgroups ...

Perlmonks isn't usenet :) Is Usenet Still Worth It?, Why does PerlMonks rock?

Is it possible, thru personal settings or whatever to get my group reading interface to resemble the one available on gmane. With Frames and threading so the groups appear in the tried and venerable style of usenet

Sure, its called javascript/jquery, and it most of the hard work has been done already, you just have to load it up into your personal nodelet and DIYSMOP :) See the links of examples and links below


Re^5: mini thread navigation for perlmonks
Re: Functionality to automatically insert

tags into long posts? (naturally)
Free Nodelet Hack: AJAX-enabled Chatterbox
Re: A userscript/userjs to cleanup older releases on PAUSE
Re: Collapsible comments
toggleDisplay
Re^2: dynamic extractor based off static references in file (line-height punch2paragraph punct2paragraph lineheight3em)
Re: No more expanded threads in "Recently Active Threads" (in "Root & node" mode) without Javascript
Free Nodelet Hack: Toggle bodies of Old Replies
Re: themes for Anonymous Monk or try out themes without changing display settings
Free nodelet hack: Auto-Fold threads in RAT for special browsers
Free Nodelet Hack: linkify nodelet headings (for pmdev)
Free Nodelet, JavaScript and PM links
Help for Free Nodelet Settings
function addExpandelator(){ var addExpander = function(t,i){ $(t).find('a[href]').first().parent().prepend('<b onclick="ale +rt(this.innerHTML);">E)'+i+")</b> "); return; }; var trs = $('#replies_table tr[class]'); for( var ix = 0; ix < trs.length; ix++){ if( trs[ix].className.match( new RegExp( '^reply$' ) ) ){ if( ( ix == ( trs.length -1 ) ) || ( trs[ix+1] && trs[ix+1].className.match( new RegExp( '^reply$' ) ) ) ){ addExpander( trs[ix], ix ); } } } return; }
  • Comment on Re: Some better way to read/post/follow threads (nntp usenet newsgroups)
  • Download Code