MOAR to COME
ABANDONED
MP3: https://planetarystatusreport.com/mp3/20250115_ABANDONED.mp3
Donate: https://www.paypal.com/paypalme/doctorfreckles
Today, the park still remains abandoned:
Out there in the grease passageways …
Skitting from bush to bush …
Loose women and rough alligators …
A park meant for hobo kings, drugs and sweaty dreams.
You build FAFO PARK …
I would install the following:
- DARK WEB remote controlled .308 cal cannons, way up on the abandoned rides.
- Pitfalls with alligators and swamp turtles.
- Gangs of swarthy, dusky, shirtless men chasing busting young scantily clad women around the ponds and wallows …
PEOPLE WOULD CUM FROM MILES AROUND … just for the thrill.
It would no longer be abandoned …
It would be a home to drug addicts and schizoids …
We’d hire the VERY BEST to keep the place CLEAN, but the meanness would seep in and the juices of EVIL will flow.
Don’t go without a plan … it’s shady after dark.
Always …
It keeps the demons from sector-11 away from your BLAUPUNKT stereo …
By putting the tin foil in the dishwasher you preserve your beef spunk jizzum powers …
The mall is closed …
The park is abandoned …
The bridge is fallen …
The day is done …
Have fun Carl McGunn,
Winner of the turnip prize.
Enjoy your art at the Ale House,
where Billy and Teddy bake bread.
One day the carolers will signal downfall,
one day your cat will learn to fix your water heater.
CHOSEN …
Covered in hoisin …
Making it and baking it, from Tel Aviv to Mar a Lago …
CHOSEN JUST FOR YOU …
(sounds like Trump)
Summary of “TRUMP Can’t Do Nothing”:
- DEMS WILL PASS BILL BLOCKING CHILDCARE WORKERS FROM REPORTING ILLEGALS
- UKRAINE WAR WILL CONTINUE
- WEF ELITES WILL FORCE TRUMP TO SUCK GRETA’S COCK
- JD TRANCE SAYS BIDEN IS SETTING UP TRAPS AND BROKEN THINGS
- JD TRANCE SAYS NO PARDON FOR VIOLENT OFFENDERS
- BIDEN SENDS OIL PRICES SOARING (govt CAN’T control the weather, but it can do this?)
- TULSI WANTS TO WATCH YOU HAVE SEX …
Summary of “TRUMP Miracles”:
- MELANOMA is even MOAR Beautiful …
- FARM RECOVERY! (next year)
- TRUMP WILL ISSUE A SHIT TON OF EXECUTIVE ORDERS DAY 1
- BLACKROCK IS GOOD GUYS NOW
- ZUCKERBERG IS REALLY FUCKING SORRY
- BLUMP REVEALS SECRET OF THE DRONES
- BLUMP VOWS TO TAKE ON CENSORS
Something Weird: https://planetarystatusreport.com/?p=16975
Evil pedo-Aliens set the fires: https://planetarystatusreport.com/?p=16950
RE-RUN of LAST YEAR RAYTHEON: https://planetarystatusreport.com/?p=16945
MY DICK POSTER: https://planetarystatusreport.com/?p=16920
stealth dollar collapse?:
CRIMINAL GANGS LOOTING: https://planetarystatusreport.com/?p=16824
POPPING SMOKE ALERT: https://planetarystatusreport.com/?p=16841
Another case: “he can’t do nothing”
Sniffing her bicycle seat Zero Hedge?
UKRAINE WAR CONTINUES, eh?
SWI PROLOG: interfacing as a process singleton
Link to SWI page: https://www.swi-prolog.org/contrib/DotNetInterface.md
RUBY SCRIPT:
#!/usr/bin/env ruby
$prologRef = nil
$prologTempDir = "/Users/daniel/Desktop/Temp/"
$prologExe = "/opt/local/bin/swipl"
$isHalted = false
def StartProlog
$prologRef = IO.popen($prologExe,"w")
$isHalted = false
end
def StopProlog
$prologRef.close_write
$isHalted = true
end
def CallProlog(statement)
$prologRef.puts "call((" + statement + "))."
end
def IsTrueProlog(statement)
t = Time.now
srand(t.to_i)
randNum = rand(10000)
$prologRef.puts "tell('" + $prologTempDir + "TEST" + randNum.to_s + "')."
$prologRef.puts "(" + statement + ") -> write('true') ; write('false')."
$prologRef.puts "told."
accumulate = ""
isRead = false
while not isRead
if $isHalted == true
return false
end
begin
File.open($prologTempDir + "TEST" + randNum.to_s) do |query_result|
query_result.each do |line|
accumulate += line
end
isRead = true
end
rescue
end
end
File.delete($prologTempDir + "TEST" + randNum.to_s)
if accumulate != "true"
return false
else
return true
end
end
def QueryProlog(variablelist,query)
t = Time.now
srand(t.to_i)
randNum = rand(10000)
$prologRef.puts "tell('" + $prologTempDir + "QUERY" + randNum.to_s + "')."
$prologRef.puts "findall((" + variablelist + "),(" + query + "),Z),write(Z),fail."
$prologRef.puts "told."
accumulate = ""
isRead = false
while not isRead
if $isHalted == true
return ""
end
begin
File.open($prologTempDir + "QUERY" + randNum.to_s) do |query_result|
query_result.each do |line|
accumulate += line
end
isRead = true
end
rescue
puts "error"
end
end
File.delete($prologTempDir + "QUERY" + randNum.to_s)
return accumulate
end
StartProlog()
CallProlog("assert(dog(dan))")
CallProlog("assert(dog(jim))")
CallProlog("assert(dog(pete))")
for i in 0 ... 100
CallProlog("assert(person(fname(dan" + i.to_s + "),lname(sull" + i.to_s + ")))")
end
f = File.open("/Users/daniel/Desktop/Temp/results.md","w")
f.puts QueryProlog("X,Y","person(X,Y)")
f.puts QueryProlog("X","dog(X)")
f.puts IsTrueProlog("dog(ddddddan)")
f.close_write
StopProlog()
C# wrapper:
using System;
using System.Diagnostics;
using System.Collections;
using System.Collections.Generic;
using System.Text;
using System.Text.RegularExpressions;
using System.IO;
namespace LogicEngineLib
{
public class LogicEXE
{
public Process p = null;
public int PID = -999;
private string _dumpDir;
private string _plcon;
private int _timeOut;
public LogicEXE(string dumpDir, string plCon, int timeoutMilliseconds)
{
this._timeOut = timeoutMilliseconds;
this.p = new Process();
this.p.StartInfo.FileName = plCon;
this.p.StartInfo.RedirectStandardInput = true;
this.p.StartInfo.UseShellExecute = false;
this.p.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;
this.p.StartInfo.CreateNoWindow = true;
this._dumpDir = dumpDir;
this._plcon = plCon;
this.p.Start();
this.PID = this.p.Id;
}
public string ReStart()
{
this.p = new Process();
this.p.StartInfo.FileName = this._plcon;
this.p.StartInfo.RedirectStandardInput = true;
this.p.StartInfo.UseShellExecute = false;
this.p.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;
this.p.StartInfo.CreateNoWindow = true;
this.p.Start();
this.PID = this.p.Id;
return "Restarted service.";
}
public void Write(string statement)
{
this.p.StandardInput.WriteLine(statement);
}
public string Stop()
{
this.p.Close();
return "Process Stopped.";
}
public string Assert(string query)
{
this.Write("assert(" + query + ").");
return "Assert performed.";
}
public string Call(string execString)
{
execString = execString.Replace('.',' ');
string sres = Guid.NewGuid().ToString();
Write("tell('" + this._dumpDir.Replace('\\', '/') + sres + "').");
this.Write("call(" + execString + ") -> write('Call Succeeded') ; write('Call Failed').");
Write("told.");
string rstr = string.Empty;
rstr = SpinAndWaitRead(this._dumpDir + sres);
return rstr;
}
public void Consult(string file)
{
this.Write("consult('" + file.Replace('\\', '/') + "').");
}
public string Save(string fileNamePath)
{
Write("tell('" + fileNamePath.Replace("\\","/") + "').");
Write("listing.");
Write("told.");
return "Save Accomplished";
}
public bool IsTrue(string query)
{
query = query.Replace('.', ' ');
StringBuilder sb = new StringBuilder();
Hashtable ht = new Hashtable(20);
bool hasVariables = false;
string[] vars = GetTokens(query);
foreach (string s in vars)
{
if (s.Trim().Length > 0)
{
char[] carr = s.ToCharArray();
if (Char.IsUpper(carr[0]))
{
string tmp = s.Trim();
if (!ht.Contains(tmp))
{
ht[tmp] = tmp;
sb.Append(" " + s);
}
hasVariables = true;
}
}
}
if (hasVariables) return false;
string sres = Guid.NewGuid().ToString();
Write("tell('" + this._dumpDir.Replace('\\', '/') + sres + "').");
Write("(" + query + ") -> write('True') ; write('False').");
Write("told.");
string rstr = string.Empty;
rstr = SpinAndWaitRead(this._dumpDir + sres);
if (rstr.Trim().Length < 4) return false;
bool result = false;
try
{
result = bool.Parse(rstr);
return result;
}
catch
{
return false;
}
}
public string Query(string query, bool distinctResults)
{
query = query.Replace('.',' ');
StringBuilder sb = new StringBuilder();
Hashtable ht = new Hashtable(20);
bool hasVariables = false;
string[] vars = GetTokens(query);
foreach (string s in vars)
{
if (s.Trim().Length > 0)
{
string tmp1 = s.Trim();
char[] carr = tmp1.ToCharArray();
if (Char.IsUpper(carr[0]))
{
string tmp = s.Trim();
if (!ht.Contains(tmp))
{
ht[tmp] = tmp;
sb.Append(" " + s);
}
hasVariables = true;
}
}
}
string sres = Guid.NewGuid().ToString();
Write("tell('" + this._dumpDir.Replace('\\', '/') + sres + "').");
if (hasVariables)
{
if (distinctResults)
{
Write("setof((" + sb.ToString().Trim().Replace(" ", ",") + ") ,(" + query + "),Z),write(Z),fail.");
}
else
{
string tres = "findall((" + sb.ToString().Trim().Replace(" ", ",") + ") ,(" + query + "),Z),write(Z),fail.";
Write(tres);
}
}
else
{
Write(query + ".");
}
Write("told.");
string rstr = string.Empty;
rstr = SpinAndWaitRead(this._dumpDir + sres);
return rstr;
}
public string Listing()
{
string sres = Guid.NewGuid().ToString();
Write("tell('" + this._dumpDir.Replace('\\', '/') + sres + "').");
Write("listing.");
Write("told.");
string rstr = string.Empty;
rstr = SpinAndWaitRead(this._dumpDir + sres);
return rstr;
}
private string SpinAndWaitRead(string fileName)
{
StreamReader sr = null;
string rstr = string.Empty;
int counter = 0;
bool done = false;
while (!done)
{
try
{
if (File.Exists(fileName))
{
sr = new StreamReader(fileName);
rstr = sr.ReadToEnd();
sr.Close();
done = true;
}
}
catch
{
continue;
}
counter++;
System.Threading.Thread.Sleep(1);
if (counter == this._timeOut) break;
}
try
{
File.Delete(fileName);
}
catch { }
return rstr;
}
private string[] GetTokens(string prologStatement)
{
string[] vars = Regex.Split(prologStatement, @"[,)(=;+:%$@~^/\-><@&*!]");
return vars;
}
}
}
Still weird …
So …
Up until a few days ago, and for the last year that I’ve had the T-MOBILE hotspot, my primary IP address pointed to a location in WA State, usually Tukwilla or Seatrack.
But for the last couple days (I surmise) my IP has pointed to Tampa, Florida.
This could be related to the fires in LA, might be … and it is diagnostically interesting from the perspective of collapse, cascading failures in complex systems.
Now imagine a 2 X LA FIRE scenario if different parts of the country, or 4 times …
Imagine what that looks like.
FUN STORIES …
These are FUN because it’s like they’re telling you WHEN the next shoe drops …
- FARM income recovery 2026
- Back to the Moon 2030
- Quantum Computers 2030
blah, blah, blah … always in the distance … but as the distance closes, you get the impression that something else approacheth …
Collapse …
“Why do people think collapse is linear or continuous?” – Dr. Freckles
PREDICTION: the LA FIRE disaster will NOT be the most expensive disaster in the USA, in 2025.
MOAR “he can’t do nothing?”
FILE UNDER: “He can’t/couldn’t do nothing …”
This is strange, weird …
WHY THE FUCK DIDN’T YOU LEAVE YEARS AGO?
I mean really: at a certain point people look really fucking dumb … they have the resources to get the FUCK out of the cities, but they don’t …
DON’T FUCKING COMPLAIN THEN …