// ==UserScript==
// @name Soylent Upgrade
// @match http://soylentnews.org/submit.pl
// @match https://soylentnews.org/submit.pl
// @match http://soylentnews.org/submit.pl?op=viewsub&subid=*
// @match https://soylentnews.org/submit.pl?op=viewsub&subid=*
// @match http://soylentnews.org/admin.pl
// @match https://soylentnews.org/admin.pl
// @match http://soylentnews.org/admin.pl?op=edit&sid=*
// @match https://soylentnews.org/admin.pl?op=edit&sid=*
// @match http://soylentnews.org/comments.pl*
// @match https://soylentnews.org/comments.pl*
// ==/UserScript==var simplifyChars = true;
var boxes = document.getElementsByTagName("textarea");
for (var x=0; x<boxes.length; x++)
{
if (boxes[x].name == "introtext" || boxes[x].name == "bodytext" || boxes[x].name == "story")
{
var temp = boxes[x].value;
temp = temp.replace(/<\/p><p>/g,"<\/p>\n\n<p>");
temp = temp.replace(/<br>\s?<br>/g,"<\/p>\n\n<p>");
temp = temp.replace(/<\/blockquote><p>/g,"<\/blockquote>\n\n<p>");
temp = temp.replace(/<\/p><blockquote>/g,"<\/p>\n\n<blockquote>");
temp = temp.replace(/<blockquote><div><p>/g,"<blockquote><div>\n\n<p>");
temp = temp.replace(/<\/p><\/div><\/blockquote>/g,"<\/p>\n\n<\/div><\/blockquote>");
temp = temp.replace(/<\/blockquote><blockquote>/g,"<\/blockquote>\n\n<blockquote>");
temp = temp.replace(/<p class="byline">\s/i,"<p class=\"byline\">");
temp = temp.replace(/<p>\s/g,"<p>");
temp = temp.replace(/\s<\/p>/g,"<\/p>");
temp = temp.replace(/<\/li><li>/g,"<\/li>\n<li>");
temp = temp.replace(/<\/li><\/ul>/g,"<\/li>\n<\/ul>");
temp = temp.replace(/<\/p><ul>/g,"<\/p>\n\n<ul>");
temp = temp.replace(/<p>\[...\]/g,"<p>[...] ");
while (temp.indexOf(" ")!=-1)
{
temp = temp.replace(/ /g," ");
}
if (simplifyChars)
{
temp = temp.replace(/\u2018/g,"'");
temp = temp.replace(/\u2019/g,"'");
temp = temp.replace(/\u201C/g,"\"");
temp = temp.replace(/\u201D/g,"\"");
temp = temp.replace(/\u2026/g,"..."); // ellipsis
}
boxes[x].value = temp;
boxes[x].rows = 32;
}
var toolbar = document.createElement("div");
// Blockquote button
var tempbutton = document.createElement("input");
tempbutton.setAttribute("type","button");
tempbutton.setAttribute("value","Blockquote");
tempbutton.setAttribute("onmousedown","addBlockquote(document.getElementsByTagName('textarea')["+x+"]);");
toolbar.appendChild(tempbutton);
// Bold button
var tempbutton = document.createElement("input");
tempbutton.setAttribute("type","button");
tempbutton.setAttribute("value","B");
tempbutton.setAttribute("style","font-weight:bold;");
tempbutton.setAttribute("onmousedown","addBold(document.getElementsByTagName('textarea')["+x+"]);");
toolbar.appendChild(tempbutton);
// Italic button
var tempbutton = document.createElement("input");
tempbutton.setAttribute("type","button");
tempbutton.setAttribute("value","I");
tempbutton.setAttribute("style","font-style:italic;");
tempbutton.setAttribute("onmousedown","addItalic(document.getElementsByTagName('textarea')["+x+"]);");
toolbar.appendChild(tempbutton);
// Strike button
var tempbutton = document.createElement("input");
tempbutton.setAttribute("type","button");
tempbutton.setAttribute("value","S");
tempbutton.setAttribute("style","text-decoration:line-through;");
tempbutton.setAttribute("onmousedown","addStrike(document.getElementsByTagName('textarea')["+x+"]);");
toolbar.appendChild(tempbutton);
boxes[x].parentNode.insertBefore(toolbar, boxes[x].nextSibling);
}var temp = document.createElement("script");
temp.appendChild(document.createTextNode("function addBlockquote(area) { var sel = getSelection(); if (sel.length != 0) { area.value = area.value.replace(sel,'<blockquote>'+sel+'<\/blockquote>'); } } function addBold(area) { var sel = getSelection(); if (sel.length != 0) { area.value = area.value.replace(sel,'<b>'+sel+'<\/b>'); } } function addItalic(area) { var sel = getSelection(); if (sel.length != 0) { area.value = area.value.replace(sel,'<em>'+sel+'<\/em>'); } } function addStrike(area) { var sel = getSelection(); if (sel.length != 0) { area.value = area.value.replace(sel,'<strike>'+sel+'<\/strike>'); } }"));
document.getElementsByTagName('head')[0].appendChild(temp);function getSelection() {
return (!!document.getSelection) ? document.getSelection() :
(!!window.getSelection) ? window.getSelection() :
document.selection.createRange().text;
}
// ==UserScript==
// @name Soylent Upgrade
// @match http://soylentnews.org/submit.pl
// @match https://soylentnews.org/submit.pl
// @match http://soylentnews.org/submit.pl?op=viewsub&subid=*
// @match https://soylentnews.org/submit.pl?op=viewsub&subid=*
// @match http://soylentnews.org/admin.pl
// @match https://soylentnews.org/admin.pl
// @match http://soylentnews.org/admin.pl?op=edit&sid=*
// @match https://soylentnews.org/admin.pl?op=edit&sid=*
// @match http://soylentnews.org/comments.pl*
// ==/UserScript==var simplifyChars = true;
var boxes = document.getElementsByTagName("textarea");
for (var x=0; x<boxes.length; x++)
{
if (boxes[x].name == "introtext" || boxes[x].name == "bodytext")
{
var temp = boxes[x].value;
temp = temp.replace(/<\/p><p>/g,"<\/p>\n\n<p>");
temp = temp.replace(/<br>\s?<br>/g,"<\/p>\n\n<p>");
temp = temp.replace(/<\/blockquote><p>/g,"<\/blockquote>\n\n<p>");
temp = temp.replace(/<\/p><blockquote>/g,"<\/p>\n\n<blockquote>");
temp = temp.replace(/<blockquote><div><p>/g,"<blockquote><div>\n\n<p>");
temp = temp.replace(/<\/p><\/div><\/blockquote>/g,"<\/p>\n\n<\/div><\/blockquote>");
temp = temp.replace(/<\/blockquote><blockquote>/g,"<\/blockquote>\n\n<blockquote>");
temp = temp.replace(/<p class="byline">\s/i,"<p class=\"byline\">");
temp = temp.replace(/<p>\s/g,"<p>");
temp = temp.replace(/\s<\/p>/g,"<\/p>");
temp = temp.replace(/<\/li><li>/g,"<\/li>\n<li>");
temp = temp.replace(/<\/li><\/ul>/g,"<\/li>\n<\/ul>");
temp = temp.replace(/<\/p><ul>/g,"<\/p>\n\n<ul>");
temp = temp.replace(/ /g," ");
if (simplifyChars)
{
temp = temp.replace(/\u2018/g,"'");
temp = temp.replace(/\u2019/g,"'");
temp = temp.replace(/\u201C/g,"\"");
temp = temp.replace(/\u201D/g,"\"");
temp = temp.replace(/\u2026/g,"..."); // ellipsis
}
boxes[x].value = temp;
boxes[x].rows = 32;
}
var toolbar = document.createElement("div");
var tempbutton = document.createElement("input");
tempbutton.setAttribute("type","button");
tempbutton.setAttribute("value","Blockquote");
tempbutton.setAttribute("onmousedown","addBlockquote(document.getElementsByTagName('textarea')["+x+"]);");
toolbar.appendChild(tempbutton);
boxes[x].parentNode.insertBefore(toolbar, boxes[x].nextSibling);
}var temp = document.createElement("script");
temp.appendChild(document.createTextNode("function addBlockquote(area) { var sel = getSelection(); if (sel.length != 0) { area.value = area.value.replace(sel,'<blockquote>'+sel+'<\/blockquote>'); } }"));
document.getElementsByTagName('head')[0].appendChild(temp);function getSelection() {
return (!!document.getSelection) ? document.getSelection() :
(!!window.getSelection) ? window.getSelection() :
document.selection.createRange().text;
}
blockquote {border-left:3px solid #0F0 !important; padding-left:1em !important;}
/* Submissions */
.data .status0 {background:#FFF !important; color:#080 !important;}
.data .status0 a {color:#080 !important;}
.data .status0 a:visited {color:#0A0 !important;}
.data .status0 a:hover {color:#0C0 !important;}
.data .status1 {background:#800 !important;}
.data .status2 {background:#256625 !important;}
Today I lapsed in my local front of the ’War On Open Tabs (And Also Windows)’ (or ‘Woot(Aaw)’ for short) and from looking closer at ChipWhisperer-Lite detouring to EEVBlog and on to ESD (ElectroStatic Discharge) issues and Bill Beaty who tricked me into clicking onwards to ‘Vulture Central’ (The Register) where I ended up picking through the bones of the recent news of “Lost White City of the Monkey God Found After 500 Years” in which I came across a reference to a work of Lovecraft written 94 years ago which I didn't remember reading.
However it turned out I had read it under a different name, and on that same Wikipedia page once again yet another venerated authority was quoted slagging off HPL accusing him of being a “racist” or supremacist or anything else non-imaginative even though HPL had plainly explained what he was writing about or in response to (which was unimaginative shitty white village dramas).
At which point I wanted to congratulate E. F. Bleiler for picking through a dead man's brain in order to arouse himself and revel in the sticky glory of it. HPL would surely appreciate the combined or better yet unified necrophiliac morbidity and righteous “holy” bigoted megalomania of Bleiler's actions.
(And where else to offer my sarcastic approval than on my very own journal? Did I piss on his grave? I apologize but in my defense I can't be blamed for not noticing it on account of the latrine placed at the same spot by so many of his peers).
But yes for a while already E. F. Bleiler has been just as dead and if there's anything left after a few generations of macro and microfaunal procreation any maggots can continue his gruesome trade on his own brain :)
Now please excuse me as I make a few bookmarks for perusal in the eternity of time I do not have (and correct an index in an actual book) and close twenty or so tabs… the war must go on.
…and now I can't help but wonder what the world would be like if there was a Mr. and/or Mrs. Crowley-Lovecraft out there, and yes it has to be a double-barreled surname ;)
P.S. Happy Easter!
Title says it all really but I found it surprising that there wasn't much noticeable difference. It started out foggy but the fog had mostly risen to 100% low cloud cover at local eclipse maximum (88.8%) yet if I didn't know and someone told me there was an 88.8% eclipse at that moment I wouldn't have believed them at all. The level of light felt unexceptionally normal. It was more noticeable a while after the local maximum was over as it started to get a little bit brighter but for all purposes it was just like a normal variation caused by weather, no weird shadows, not even any streetlights turning themselves on.
It was so unnoticeable I double-checked the time of the event and my clock. I guess my eyes almost entirely compensated for the small and ever so gradual change. Right now it's not even supposed to be entirely over yet but meh :)
I slept through the last eclipse so maybe this is all completely normal, the lack of difference that is; me sleeping right through “events” is very normal :D
How deeply unfortunate that it's given such an easily misunderstood ‘name’.
Want to sum up most or maybe all of humanity's problems in two words?
The specific meaning of ‘Moral hazard’ should be shouted from the rooftops. Every single human being ought to be taught what the concept means and the fact that it does not just apply as a term in economics. It describes every major problem inherent to politics I can think of. The fallacies of ideology and ideals or principles, the limits to society, the inescapable “death” from complexity, automatic corruption and institutionalized cronyism, the pressures towards groupthink, secrecy, pressure groups and lobbying, and everything else, it's all there, it touches everything.
If someone wants to make a truly better society and/or if they have to rebuild from the ground then they should focus on removing and inhibiting as much moral hazard as possible. Maybe it's all it takes but the amount of work it requires is enormous.
The first step towards that would be to identify all of it in anything new or old.
Maybe it's the season.
Anyway here's me quoting RT.com quoting Obama (whe-heey nested quotations):
‘“We cannot have a society in which some dictators someplace can start imposing censorship here in the United States because if somebody is able to intimidate us out of releasing a satirical movie, imagine what they start doing once they see a documentary that they don't like or news reports that they don't like,” Obama said.’
( source )
Damn right.
Obama & the US made precisely this point four years ago according to the New York Times:
‘When Air Force personnel on the service’s computer network try to view the Web sites of The Times, the British newspaper The Guardian, the German magazine Der Spiegel, the Spanish newspaper El País and the French newspaper Le Monde, as well as other sites that posted full confidential cables, the screen says “Access Denied: Internet usage is logged and monitored,” according to an Air Force official whose access was blocked and who shared the screen warning with The Times. Violators are warned that they face punishment if they try to view classified material from unauthorized Web sites.’
( source )
Because it is completely different when it is not an entertainment movie but instead a list containing some of the biggest and most central papers in five countries as well as large number of irrelevant smaller ones. It doesn't compare at all and has to be far more unimportant than Hollywood fiction.
If the task is to record history for the future then it is of particular unimportance since no one will ever use it for anything sensible:
‘An error message pops up every time a search is performed with the word “WikiLeaks”.
It’s not entirely clear when the US National Archives decided to block these searches.’
‘The Library of Congress went further by blocking access to WikiLeaks content from its server in 2010.
The American Library Association suggested this violated the First Amendment rights of internet users to receive information.
“The Library of Congress’s decision is a violation of the First Amendment and a violation of the American Library Association’s Bill of Rights. Moreover, it is a violation of the professional ethics of librarians to always provide free access to all information,” their statement said.’
( source )
Nor does it take much for the banhammer to fall, as is right, rumor is enough, rumor is fact:
‘The directive states:
“We have received information from our higher headquarters regarding a potential new leaker of classified information. Although no formal validation has occurred, we thought it prudent to warn all employees and subordinate commands. Please do not go to any website entitled “The Intercept” for it may very well contain classified material.
As a reminder to all personnel who have ever signed a non-disclosure agreement, we have an ongoing responsibility to protect classified material in all of its various forms. Viewing potentially classified material (even material already wrongfully released in the public domain) from unclassified equipment will cause you long term security issues. This is considered a security violation.”
A military insider subject to the ban said that several employees expressed concerns after being told by commanders that it was “illegal and a violation of national security” to read publicly available news reports on The Intercept.
“Even though I have a top secret security clearance, I am still forbidden to read anything on the website,” said the source, who spoke on condition of anonymity due to the sensitivity of the subject. “I find this very disturbing that they are threatening us and telling us what websites and news publishers we are allowed to read or not.”’
( source )
A rigid notion of determinism turns it into a mechanical folly and inverts the importance away from higher functions and towards the lowest detectable causal events, it creates a world in which ultimately the smallest and most remote causal interactions are given disproportionate amounts of importance even though such interactions are constantly changing at speeds far faster than the results they are supposed to have deterministically forced into being. With such an outlook it wouldn't be “turtles all the way down” but instead “turtles all the way up”.
By analogy of a computer program the importance according to such determinism is given to the bits flipping between zero and one rather than the higher structures ruling their behavior.
Such determinism remains technically true but becomes devoid of meaning, comprehension, and value[¹], and thus also without importance.
Instead for any given end result determinism acts as a negative feedback loop in relation to its own importance when given enough complexity: a robot operating its algorithms on the basis of what might as well be an infinite number of ever-changing, causal, and mutually connected variables cannot remain a robot, it is forced into random output and/or the beginnings of intelligence where it chooses which output to give and later also chooses the reason why it is supposed to be the correct output or why a different output is more correct.
Hmm, googly eyes or Einstein afro? It makes sense to me…
(Also ¹ looks like a nice explanation of why “pop” determinism and nihilism so often end up as best friends.)
(And another tangential: if it was possible I wonder what an inverse square type of law would look like for each causal step in determinism, the fact that it rained yesterday has no discernible impact on me writing this journal entry (but now it has and thus two points were made rather than one: one about determinism and one about indirect Wittgensteinian word games).)
The focus of this post was really meant to be the part at the end that I made bold.
To me it makes one or two connections in a way that I haven't seen before (and I know about system complexity and emergence and such). In some way it feels a bit more direct and explanatory tying in a correct understanding/evaluation of determinism as well as (possibly the most basic) evolutionary pressure/fitness challenge. In this way it gets very hands on and mucky (conceptually, and also conceptually reducing the challenge of creating intelligence to that of triggering such a first move and then escalating it). Has anyone seen anything similar elsewhere?
P.S. Yet another tangential: a different kind of amusing folly, more entertaining than determinism but maybe not all that different after all?