Return Styles: Pseud0ch, Terminal, Valhalla, NES, Geocities, Blue Moon. Entire thread

header files in C

Name: Anonymous 2007-06-23 21:40 ID:HRBo/NOe

Should you have to include a header file into its own library? I can't understand why I sometimes, but not always, get compile errors because it's not getting the header file prototypes before it compiles the libraries.

Name: Anonymous 2009-09-07 17:47

[code]// ==UserScript==
// @name          /prog/ : Ignore necroposting
// @version       1.3.9 RC1
// @namespace     http://dis.4chan.org/read/prog/1/
// @description   Do not display threads older than 2009 on /prog/'s main page.
// @include       http://dis.4chan.org/prog/
// ==/UserScript==

var threads, thread;
threads = document.evaluate("//div[@class='border']", document, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null);
for (var i = 0; i < threads.snapshotLength; i++) {
  thread = threads.snapshotItem(i);
  if (-1 != thread.childNodes[3].childNodes[3].childNodes[1].childNodes[1].textContent.search(/200[4-8]-[0-9][0-9]-[0-9][0-9] [0-9][0-9]:[0-9][0-9]/g)) {
      thread.style.display = "none";
  }
}
// Doing it cleanly? Are you crazy? It'd take me, like, minutes.[code]

Newer Posts
Don't change these.
Name: Email:
Entire Thread Thread List