wait you guys are using Lynx? now this is awkward
It was the Bitcointalk forum that inspired us to create Bitcointalksearch.org - Bitcointalk is an excellent site that should be the default page for anybody dealing in cryptocurrency, since it is a virtual gold-mine of data. However, our experience and user feedback led us create our site; Bitcointalk's search is slow, and difficult to get the results you need, because you need to log in first to find anything useful - furthermore, there are rate limiters for their search functionality.
The aim of our project is to create a faster website that yields more results and faster without having to create an account and eliminate the need to log in - your personal data, therefore, will never be in jeopardy since we are not asking for any of your data and you don't need to provide them to use our site with all of its capabilities.
We created this website with the sole purpose of users being able to search quickly and efficiently in the field of cryptocurrency so they will have access to the latest and most accurate information and thereby assisting the crypto-community at large.
// ==UserScript==
// @name bitcointalk minifyer
// @namespace blah
// @include https://bitcointalk.org/*
// @version 1
// ==/UserScript==
if(document.documentElement.innerHTML.indexOf('My Messages [1]')!=-1){
if(confirm("New PM, view?")){
document.location.href="https://bitcointalk.org/index.php?action=pm";
}
}
if(document.location.href.indexOf("action=pm")!=-1){
document.getElementById("outbox").checked=true;
}
if((
document.location.href.indexOf("topic=")!=-1 ||
document.location.href.indexOf("action=watchlist")!=-1 ||
document.location.href.indexOf("action=unread")!=-1
)&&document.location.href.indexOf("action=post")==-1){
var datrs = document.getElementsByTagName('tr');
for(i=0;iif(datrs[i].innerHTML.indexOf('class="maintab')==-1){
//datrs[i].innerHTML=datrs[i].innerHTML.replace(','');
datrs[i].innerHTML=datrs[i].innerHTML.replace(/]*> <\/td>/g,'');
//datrs[i].innerHTML=datrs[i].innerHTML.replace('','');
datrs[i].innerHTML=datrs[i].innerHTML.replace(/]*><\/td>/g,'');
}
var innertds=datrs[i].getElementsByTagName('td');
if(innertds.length==7){
datrs[i].removeChild(innertds[0]);
datrs[i].removeChild(innertds[0]);
dabr=innertds[4].getElementsByTagName('br');
if(dabr.length>0) dabr[0].parentNode.removeChild(dabr[0]);
for(j=0;jinnertds[j].className="calendar_today";//White_bg
}
}
}
}
And to everyone using this: make sure I didn't put a password stealer in there..
edit: sorry, just changed something before posting, fixed some bugAugust 02, 2012, 04:25:20 PMI already have something like this in a greasemonkey script. I also changed the colors so it looks nice over remote desktop (16-bit).Hey I'd love to use that script if you have it available. The above is mostly playing around, but I do use the forum over RDP very often, so 16-bit would help. Does it change actual embedded images, or just the forum styles?
Also, it looks a lot nicer if you remove the linefeed in the rightmost column in the thread list (between post time and nick).August 02, 2012, 04:08:59 PMI already have something like this in a greasemonkey script. I also changed the colors so it looks nice over remote desktop (16-bit).
Also, it looks a lot nicer if you remove the linefeed in the rightmost column in the thread list (between post time and nick).August 01, 2012, 11:46:05 AMAugust 01, 2012, 10:58:37 AMJust for grins, I created some AdblockPlus element hiding rules, after discovering the cool Element Hiding Helper addon. Note that the following might be a little buggy and could probably be refactored by someone that knows what they are doing, but here they are anyway. The rules strip out a few table columns with useless (to me!) info such as popularity graphics etc.Code:bitcointalk.org##.titlebg2[height="32"]:first-child
bitcointalk.org##.windowbg[valign="middle"]:first-child
bitcointalk.org##TD.catbg
bitcointalk.org##TD[style="padding: 0 0 1px 0;"]:first-child:last-child
bitcointalk.org##DIV.tborder:last-child
bitcointalk.org##TD[width="28%"][valign="middle"][align="right"]:first-child
bitcointalk.org##TD[width="28%"][valign="middle"][align="left"]:last-child
bitcointalk.org##TD[width="10%"][colspan="2"]
bitcointalk.org##TD.windowbg2[width="6%"][valign="middle"][align="center"]
bitcointalk.org##.windowbg2[width="4%"][valign="middle"][align="center"]
bitcointalk.org##TD.middletext:first-child:last-child
bitcointalk.org##TD.windowbg2.leftimg[width="5%"][valign="middle"][align="center"]:first-child
bitcointalk.org##TD.catbg3[width="9%"][colspan="2"]:first-child
bitcointalk.org##TD.smalltext[style="padding-top: 2ex;"]:first-child
bitcointalk.org##TD.smalltext[valign="top"][style="padding-top: 2ex;"]
You can disable ones that you don't like; currently they do the following:
Disable the "Bitcoin Forum" text at the top of the page
Disable the "Hello, username" at the top of the page
Disable the avatar at the top of the page
Disable the first 2 columns in the main table, since they contain mostly uselss info (little popularity graphics)
Disable the graphic explanations at the bottom of every page
Disable other extraneous graphicsPages:Jump to: