Archive for February, 2024

1100 hours

Tuesday, February 27th, 2024

hour meter showing 1100.1 hours

So, I’ve made it to 1100. Still getting better, although there are interesting phenomenons where some aspects get worse and then better as parts of my neural network rebalance. Anyway, looking forward to seeing what I’m like at 2000.

Interest breaks Capitalism

Monday, February 26th, 2024

So, one way that I know, for sure, the US is in no way a Christian nation is that all over the place in the US, everywhere money is being loaned, interest is being charged. Jesus certainly never went off on the subjects of abortion or sex before marriage, but charging interest made him flip over some tables in a temple because he was so mad.

Jesus was right to be mad, because charging interest *breaks* capitalism. Here’s the basic problem. In our system, money is a pointer to value. The little bits of green paper have no actual value but you can use them to buy various goods, so they are backed by all they can buy.

When you charge interest, you are doing something with the pieces of paper which cannot be matched in the real world. Very few real world activities generate more actual value just by holding a certain amount of value – farming being the one exception. But, because you’re making the accounting system do something that doesn’t match reality, *trouble* ensues. We’ve talked about in previous episodes how the great depression was caused by a failure in the accounting system – and that’s the kind of failure you can run into.

TascamSlurp

Friday, February 16th, 2024

This is a perl script that can be used to pull all the files from a DA-6400 and automatically divide them into folders based on their timestamps


#!/usr/bin/perl
$|=1;

$targetbase = “~/DownloadLocation”;
$host = “tascam”;

use Net::FTP;
use Time::Local qw ( timelocal );

use Data::Dumper;

print “Creating FTP object\n”;

$ftp = Net::FTP->new($host, Debug => 0) || die “Can’t connect to tascam”;
print “Logging in\n”;

$ftp->login(“DA-6400″,”DA-6400”) || die “Can’t login ” , $ftp->message;
print “CWD\n”;
$ftp->cwd(“/ssd/DA Files”) || die “Cannot CWD: ” . $ftp->message;
print “BIN\n”;
$ftp->binary() || die “Cannot set to bin mode: ” . $ftp->message;

my $list = $ftp->ls();

my $maxtime = 0;
my $timestamps = {};

# determine newest date
foreach $file (@{$list}) {
next if($file eq “.”);
next if($file eq “..”);
next if(!($file =~ /.*.wav/));

my $unixtime = getFileTimestamp($file);
my $ts = getTimestamp($unixtime);

print “file: [$file] ts: $ts\n”;
$maxtime = $unixtime if($unixtime > $maxtime);
$timestamps->{$unixtime} = 1;
}
foreach $ts (keys %{$timestamps}) {

$targetstub = getTargetDir($ts);
$targetdir = $targetbase . ‘/’ . $targetstub;
if(! -d $targetdir) {
mkdir $targetdir;
} else {
next;
}

$targetdir .= “/ftp”;
if(! -d $targetdir) {
mkdir $targetdir;
}

chdir $targetdir;
print “$ts – Writing to $targetdir\n”;

foreach $file (@{$list}) {
next if($file eq “.”);
next if($file eq “..”);
next if(!($file =~ /.*.wav/));

my $unixtime = getFileTimestamp($file);
if($unixtime == $ts) {
print “Fetching $file ..”;
$ftp->get($file);
print (-s $file);
print “\n”;
}
}
}

sub getTargetDir
{
my $time = shift;
my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime($time);
return sprintf(“%02d%02d%04d”,$mon+1,$mday,$year+1900);
}

sub getTimestamp
{
my $time = shift || time();

my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime($time);
return sprintf(“%02d/%02d/%04d-%02d:%02d:%02d”,$mon+1,$mday,$year+1900,$hour,$min,$sec);
}

sub getFileTimestamp
{
my $file = shift;
my ($prefix, $datetime, $take, $channel, $name) = split(/_/, $file);

print “Datetime: [$datetime]\n” if($main::debug);

my ($date, $time) = split(/-/, $datetime);
print “Date: [$date]\n” if($main::debug);

my ($yy, $MM, $dd) = $date =~ /(\d{4})(\d{2})(\d{2})/;
my ($hh, $mm, $ss) = $time =~ /(\d{2})(\d{2})(\d{2})/;

print “yy: [$yy] mm: $mm dd: $dd\n” if($main::debug);

$MM -= 1;
$yy -= 1900;

my $unixtime = timelocal($ss, $mm, $hh, $dd, $MM, $yy);

return $unixtime;
}

The boundaries between neural networks

Thursday, February 15th, 2024

So, I’ve been working on a theory.. this is more of my hand-wavy guessing what’s going on inside a NNN stuff..

My theory is that children grow their ego.. the portion of their decision trees that is recognizably them – from the inside out. At the same time, society grows it’s internal manifestation of state from the outside in. When combined with the fact that humans have a large number of neurons between their senses and their conscious experience – the part of them that is “on the ride” – there are some problems that can crop up here.

My mother had stated at one point that when I was younger she thought that I wanted to go to seminary school. I think what was actually going on there was she was seeing reflected light of her own beliefs through the upper layer because my ego had not yet grown the strength to manifest and clearly communicate my opinions about Christianity and my desires surrounding it.

Now, I’m going to segue for a second (I promise this is all related, at least in my mind) to say that I have nothing against people choosing to be transgendered. I have a number of friends who are, or who have experimented with it. I see nothing wrong with us choosing our gender identities and if it were up to me we would be able to quickly and easily change the configuration of our bodies to match, or even experiment with different alternatives. I would certainly be curious to experience being female. For them as argue that we are thwarting God’s will, I would respond that our bodies are gifts and when I give a gift I don’t give it with the expectation that the receiver will not modify it or re-gift it if it doesn’t work out for them. I might be sad that they choose to do so but I certainly would not feel that I should be in a position to force them to do otherwise or that it is a sin.

The reason I bring all this up, though, is I know of at least one case in which a child did not want to be transgendered but it appeared at least from the outside that they did. And I think it’s important to understand the reflected light phenomenon and be aware of the fact that – in cases like religion and gender identity – one can’t really tell with young children what they want because they will have a significant challenge in communicating that when the society-programmed layers nearer their senses will tend to conform to whatever the visible authority figures in their lives are pushing.

I think this is a big problem in the case of religion because religions are viral – most of them have survived by being informational virii after all – which is why people should not force their children to go to church or be confirmed in a specific religion. Removing this informational virus after it has been installed is basically impossible – NNNs have no delete – and it can only be disabled after considerable effort. I do not think I have yet removed all the deleterious effects of Christianity, for example.

In the case of people changing gender identity, all indications from my own personal exposure to the result are it can be even more traumatic. What I’m saying is, there’s time – children don’t really need to have a specific gender identity and I see no problem with them wearing the clothing and having the pronouns of either gender but one should definitely make absolutely and very sure that they are really onboard, for themselves, before using hormones or having surgery. (I think the latter is not a problem because I don’t think confirmation surgery is done until after puberty). When I was first told of one individual choosing to be a confirmed transgender who was very young my response was I wasn’t really sure how you could possibly know until after puberty, although I understand that on the other side of that is that it gets a lot harder post puberty and so puberty blockers are a time-sensitive thing.

I don’t know. In most cases I freely admit transgender issues are well beyond my pay grade and my opinions mean very little. But I do think that *in general* psychologists and psychiatrists should be aware of what is actually happening in the neural network and aware of the possibility of confirmation bias on the part of the caregivers for children, and the possibility that children are not able to communicate their true needs and desires because they are still very deep inside their minds and slowly learning how to reach the outside and when and how to push back against authority.

(As a side note, I do think our society is somewhat aware at least subconsciously of the problem here and it is why one should absolutely not participate in sex with children. We understand that they can’t give informed consent for sex and that they might not speak of their true needs because of the power imbalance issue. I think we just don’t always realize that this problem is prevalent all over the place)

Our children are not our property – to the extent they belong to anyone they belong to themselves and to the tribe as a whole. Forcing certain types of decisions is likely to have a bad effect on them and a bad effect on all of us in the sense that we are all connected.