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

Hypothetical Matter

Name: Anonymous 2010-05-05 14:12

A tachyon is a hypothetical particle that moves at superliminal speeds.
A gauge boson always travels at the speed of light, e.g., gluons and photons.
That regulates the rest of the known matter in the universe to a class of particles known as tardyons - subliminal speeds.

Are there any hypotheses that suggest the existence of a particle that DOES NOT move?

Name: Anonymous 2010-05-19 16:52

>>12
Here's a Greasemonkey script you'll enjoy:

// ==UserScript==
// @name           fix sci
// @description    fixes all of :/'s posts on /sci/
// @namespace      http://dis.4chan.org/sci/
// @include        http://dis.4chan.org/*;
// @version        1.dix
// ==/UserScript==

(function(){
 var posts = [];
 var myclass = new RegExp('\\bpost\\b');
 var divs = document.getElementsByTagName('div')
 for(var i = 0; i < divs.length; ++i){
  var classes = divs[i].className;
  if(myclass.test(classes)) posts.push(divs[i]);
 }
 for(var i = 0; i < posts.length; ++i){
  var postername = posts[i].getElementsByTagName('span')[3];
  var postertrip = posts[i].getElementsByTagName('span')[4];
  var postbody   = posts[i].getElementsByTagName('blockquote')[0];
  if(/:\//.test(postbody.innerHTML))
   posts[i].parentNode.removeChild(posts[i]);
 }
})();

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