Anonymous ID: deb7fb Jan. 20, 2021, 10:44 p.m. No.12645554   🗄️.is 🔗kun   >>5924

>>>12643974

 

>Look it up, CERN invented the World Wide Web so that scientists could communicate faster dealing with the original Hadron Collider

 

CERN Predecessor … Bigger if not Badder

Waxahachie, Texas

Texas Superconducting Super Collideris around 87.1 kilometers (54.1 miles) in circumference, while the Large Hadron Collider is a comparatively measly 27 kilometers (17 miles) in circumference.

 

This video by Atlas Obscura, below, tells the sad and mysterious tale of Texas’ lost particle collider.

https://youtu.be/Dj9ExFT_FEk

 

LaRoucePac Esoterica

https://archive.schillerinstitute.com/lar_related/2009/lyn_webcast_1203.html

 

 

The Abandoned Texas Supercollider That Dwarfed The LHC

https://www.iflscience.com/physics/why-worlds-largest-particle-collider-lays-abandoned-texas/

 

You’ve probably heard of CERN's Large Hadron Collider, the home of the particle accelerator on the French-Swiss border which discovered the Higgs boson.

 

But you might not know that there’s an abandoned particle collider still hidden beneath Waxahachie, Texas that is three times as large and potentially three times as powerful as its European cousin. The Texas Superconducting Super Collider is around 87.1 kilometers (54.1 miles) in circumference, while the Large Hadron Collider is a comparatively measly 27 kilometers (17 miles) in circumference.

 

It begun construction in 1991 and had the potential to blast the United States to the forefront of particle physics. However, just two years later, Congress withdrew its funding and the project was cancelled amid a cloud of politics, money, and ego.

 

 

Trivia: UofTAustin has Reactors under LBJ Library … the one that ins't commonly known is the one under JJ Pickle Research Lab on IBM properties in Austin…

Heresay: Skunkworks, Tunnels from Austin to Temple/Killeen Bases.. probably on down to SAntonio.. - Tunnels gets one's attention these days..

Anonymous ID: deb7fb Jan. 20, 2021, 10:54 p.m. No.12645653   🗄️.is 🔗kun   >>5685

>>12645406

dev tools, CTRL-ENTER, throw wget in front… ghey, but quick

 

function printImgUrls(els) {

 

var arrItems = [];

for ( var each in els)

{

var ahref = els[each].href;

if(isFileTypeIsImage(ahref) && isFileStore(ahref)){

// console.log(ADDING HREF: ${ahref});

arrItems.push(ahref);

}

}

console.log(arrItems length: ${arrItems.length});

console.log("");

 

for ( var each in arrItems){

url = arrItems[each];

idx = arrItems[each].lastIndexOf("/");

filename = url.substring( (idx+1) ,url.length);

console.log(${url});

}

}

 

printImgUrls(getImageLinkElements());

Anonymous ID: deb7fb Jan. 20, 2021, 10:55 p.m. No.12645672   🗄️.is 🔗kun   >>5710 >>5869

One for all the capitol vids - think compiled by libtards, but nice resources nonetheless

ghey, but quick

 

/*

Pulls All video URLS from

https://projects.propublica.org/parler-capitol-videos/?id=Uq7a9O5w29W9

Generates wget output for each with filename including timestamp from video label

*/

 

function getElements(text)

{

return $x(text);

}

 

function getElAttributeValue(node, value)

{

return node.getAttribute(value);

}

 

function loopElsGetInnerTextReturnArray(els)

{

var arrTemp = [];

for ( var each in els )

{

var value = els[each].innerText;

arrTemp.push(value);

}

return arrTemp;

}

 

function loopElsReturnArray(els,attr)

{

var arrTemp = [];

for ( var each in els )

{

var value = getElAttributeValue(els[each],attr);

arrTemp.push(value);

}

return arrTemp;

}

 

function getFileName(url)

{

var idx = url.lastIndexOf("/");

filename = url.substring( (idx+1) ,url.length);

// console.log(${url});

return filename;

 

}

 

function outputWget() {

 

for ( var i = 0; i<arrVidUrls.length; i++)

{

var u = arrVidUrls[i];

var f = getFileName(u);

var l = arrVidLabels[i].trim().replace(' • ','-').replace(' ',).replace(' ',).replace('a.m.','am').replace('p.m.','pm');//.replace('m.','m.-');

 

console.log(wget -O &quot;dcprotests-${l}-${f}&quot; ${u});

 

}

 

}

 

var datasrcEls = getElements('//*[contains(@data-src,".mp4")]');

var videoLabelEls = getElements('//*[contains(@data-src,".mp4")]/../div[1]/div[1]');

console.log(Vids: ${datasrcEls.length} Labels: ${videoLabelEls.length});

 

var arrVidUrls = loopElsReturnArray(datasrcEls,"data-src");

var arrVidLabels = loopElsGetInnerTextReturnArray(videoLabelEls);

console.log(VidsA: ${arrVidUrls.length} LabelsA: ${arrVidLabels.length});

 

outputWget();

Anonymous ID: deb7fb Jan. 20, 2021, 10:56 p.m. No.12645685   🗄️.is 🔗kun

>>12645653

sorry, its late

 

function getImageLinkElements() {

var imgLinks = $x('//img/parent::a');

return imgLinks;

}

 

 

function printImgUrls(els) {

 

var arrItems = [];

for ( var each in els)

{

var ahref = els[each].href;

if(isFileTypeIsImage(ahref) && isFileStore(ahref)){

// console.log(ADDING HREF: ${ahref});

arrItems.push(ahref);

}

}

console.log(arrItems length: ${arrItems.length});

console.log("");

 

for ( var each in arrItems){

url = arrItems[each];

idx = arrItems[each].lastIndexOf("/");

filename = url.substring( (idx+1) ,url.length);

console.log(${url});

}

}

 

printImgUrls(getImageLinkElements());

Anonymous ID: deb7fb Jan. 20, 2021, 11 p.m. No.12645733   🗄️.is 🔗kun   >>5752

One for all the capitol vids - think compiled by libtards, but nice resources nonetheless

ghey, but quick

 

/*

Pulls All video URLS from

https://projects.propublica.org/parler-capitol-videos/?id=Uq7a9O5w29W9

Generates wget output for each with filename including timestamp from video label

*/

 

function getElements(text)

{

return $x(text);

}

 

function getElAttributeValue(node, value)

{

return node.getAttribute(value);

}

 

function loopElsGetInnerTextReturnArray(els)

{

var arrTemp = [];

for ( var each in els )

{

var value = els[each].innerText;

arrTemp.push(value);

}

return arrTemp;

}

 

function loopElsReturnArray(els,attr)

{

var arrTemp = [];

for ( var each in els )

{

var value = getElAttributeValue(els[each],attr);

arrTemp.push(value);

}

return arrTemp;

}

 

function getFileName(url)

{

var idx = url.lastIndexOf("/");

filename = url.substring( (idx+1) ,url.length);

// console.log(${url});

return filename;

 

}

 

function outputWget() {

 

for ( var i = 0; i<arrVidUrls.length; i++)

{

var u = arrVidUrls[i];

var f = getFileName(u);

var l = arrVidLabels[i].trim().replace(' • ','-').replace(' ',).replace(' ',).replace('a.m.','am').replace('p.m.','pm');//.replace('m.','m.-');

 

console.log(wget -O &quot;dcprotests-${l}-${f}&quot; ${u});

 

}

 

}

 

var datasrcEls = getElements('//*[contains(@data-src,".mp4")]');

var videoLabelEls = getElements('//*[contains(@data-src,".mp4")]/../div[1]/div[1]');

console.log(Vids: ${datasrcEls.length} Labels: ${videoLabelEls.length});

 

var arrVidUrls = loopElsReturnArray(datasrcEls,"data-src");

var arrVidLabels = loopElsGetInnerTextReturnArray(videoLabelEls);

console.log(VidsA: ${arrVidUrls.length} LabelsA: ${arrVidLabels.length});

 

outputWget();

>>12645710

>>>12645672 (You)

 

>Cool, can you make one that downloads all of dear leader biden's videos, but doesn't accidentally download all of my jounalism stuff and email it back to

 

where they @? gotta url?

Anonymous ID: deb7fb Jan. 20, 2021, 11:07 p.m. No.12645797   🗄️.is 🔗kun

>>12645688

That antwoord is something else… surprised if it doesn't open a portal straight to hell right from your monitor.. ugly boy had me running through protection prayers