Thursday, April 16, 2026

Ideas and Observations

Present the truth in a manner that offends none

of the parties involved. 

Fluid communication between languages 

require emphasis and enunciation of culture

and understanding.  This is one part of

interpretation. 

Eloquence and articulation are for others to

understand you. 

Further customization of FreeBSD ports

 In some ports, there are configure arguments 

and/ or CPU ISA architecture specifics. Today,

we will learn to adapt the port for both.

Look at the port and download with git, wget, 

or another command line utility.

Search for the configure file. Even if you do

not like this next suggestion, use it to read

the entire configure file.  cat $CONFIGURE_FILE

| more. Note that some build systems will 

require you to create a document beforehand. 

Search for the following: architecture 

dependent flags. Disable these when necessary 

in the ports Makefile. If your chosen

architecture is not in the file, then add it

in the configure file and add for architecture 

$SUCH_AND_SUCH to the port Makefile.

Whatever arguments that you want in the

configure file that are not arguments in the

port Makefile, add those to the already 

existing arguments. SIMD arguments are

CPU ISA specific,  adapt to use whatever is

on the CPU of your chosen or available 

architecture. 

Do not patch.  Rewrite and save. Let the

upstream maintainers know what you did.

If the build fails, rebuild and tee the output

to a text file. Use the cat $FILENAME |more

so you can see where the error is. If the

operating system team requires certain 

code standards, then follow them. They

have a very good reason for doing such.

It is better to build on bare metal than

use a virtual machine or cross compile.

Those two options will not show you 

real world errors.

When porting your own or others' software, 

if the source is not open source then do not

bother. They have their reasons.  Make yours

available to the public. If it is open source and

people find vulnerabilities and/ or exploits,

you will know what to fix. Tell them, 

"Thank you."

The more operating systems that you port to

and the more CPU ISA architectures you also

port to, the more users, eyes, and ears.

Do it yourself by hand and accept your

errors and mistakes. This will teach and 

assist you in better coding and development. 

Take and accept a challenge.  If it will compile 

on the most difficult environments, then it

will definitely compile on the most common.

Enjoy and happy positive hacking.

Both FreeBSD reference and tutorial in one post

 Reference post:

https://freebsdgoogledeveloper.blogspot.com/2026/04/setting-up-freebsd-security-laptop.html

Guided/ suggested tutorial:

https://freebsdgoogledeveloper.blogspot.com/2026/04/quick-guide-to-freebsd-system.html


Remember that you may have to do this many 

times. 

When downloading source,

./configure --help|more will show you 

options that may not be in the port

Makefile. Use the porter's handbook:

https://docs.freebsd.org/en/books/porters-handbook/

To learn what to edit.



Wednesday, April 15, 2026

Quick guide to a FreeBSD system

https://share.google/aimode/SbEiDntxdthxzYial

Read the entire thing because you will need that

to install the image.

Set your bios to boot from USB image after

you have enabled legacy boot and have

disabled secure boot.

Okay:

Fedora media writer for Windows :

https://fedoraproject.org/workstation/download/

The download link is at the bottom of the page. 

Latest FreeBSD AMD64 (x86_64) ISO images:

https://download.freebsd.org/releases/amd64/amd64/ISO-IMAGES/14.4/

You may pick boot only or the next smallest 

in size.  Download.  This will be the image for 

installation.  Use thus when choosing the media 

for the fedora media program. 

Go  back and check the bios settings on your

laptop.  Legacy,  no secure boot, boot first from

USB drive.

Boot from the USB. 

Install. 

Full/ dedicated disk. Let it set up everything. 

Your job is:

Create a root user account.

Create a privileged account that is a member 

of the group wheel. This is your administrative

and maintenance user.  Do not use this account 

for running any bhyve VM instance.

Create an unprivileged account. This is the

user you will add to the vmm type account

/ group mentioned in the earlier reference 

post. Choose to hide all user data from all

other users. If someone manages to enter and

escape your VM, they will be stuck in a

useless account that can't see anything. 

Do add ports. 

Check everything  

Remove media. Reboot. 

Okay. 

Here is where you search for packages:

https://www.freshports.org/

Search for: automount, wifimgr, Xfce4,

SciTe or scite, nap, nessus, wireshark, and

all of your other wonderful tools.  On your

portable system with the privileged user - 

not root -

su, enter administrative/ root password 

cd to /usr/ports

For every query on freshports  cd to that

subsection.

Using ls will show you the directories. 

Using ls| more will allow you to see the

directory listing a page at a time.

Cd to chosen directory.

Cd to port.

Type make && make install && make clean. 

Cd to /ust/ports

Repeat for each port.

Configure X - the windowing graphical system-

using the link references in the reference post. 

Your xorg configuration may already be 

available, to check either use 

forums.freebsd.org

Or search the mailing lists by stating your

system, GPU,  etc in Google search along 

with the query freebsd mailing lists. 

As privileged user in su mode,

type dmesg -v|more or dmesg -vv| more to

see the system specs.

You will need this to see your GPU,  wireless 

card etc.

You will need to setup Bluetooth accordingly. 

Newer protocols may not be supported. 

You will need to study the references 

about vm permissions before creating 

the vm instances in the unprivileged user's 

account.

At this point you will need, if you have it,

a windows install image to put on a USB

as the install media for the windows' vm.

An openbsd install image from

https://www.openbsd.org/amd64.html

Read through. Read instructions. This is

for your openbsd vm.

Another freebsd iso so you can run a

Freebsd vm.

And a netbsd amd64 image 

https://wiki.netbsd.org/ports/amd64/

As with openbsd,  read the instructions. 

Please note not to ask anything on the

Openbsd mailing lists until you have 

exhausted every research option possible. 

Do not run more than two vm instances

if you only have two cores.

Do not run more than one if you have a

single core.

Only run 3 on a quad core.

Do not use a desktop more complex than

Xfce4 unless you have quad-core and

more than 16G RAM.

Set up each vm to be as minimalist as

possible. 

You will need to setup vlan.

You will need to setup pf and other security

/ firewall settings on the host. 

Firefox in a jailed environment can be

setup in any of the VMs using: 

https://forums.freebsd.org/threads/how-to-execute-firefox-in-a-jail-using-iocage-and-ssh-jailme.53362/


This should keep anyone busy for some time. 

I choose ports over packages because

ports allow you more control while 

packages are based on someone else's 

configuration files. 

Setting up a FreeBSD security laptop

 Study these links just before the installation

process. They will give you an insight into

your environment. 

Setting up legacy bios option

 https://share.google/aimode/4pItEvAx460AZ3jbY

Pre guide to understanding the FreeBSD 

installer:

https://docs.freebsd.org/en/books/handbook/bsdinstall/

OpenBSD virtualization as a guest: https://www.openbsdhandbook.com/virtualization/ 


FreeBSD wireless connection guide:

https://share.google/aimode/gUtzFCmkoJPM77JbS 

Bhyve reference guide for Windows 10/ 11 guests

https://share.google/aimode/MYaFdjO8p7LwXfwnR

Xorg references:

https://share.google/aimode/GOlIAMjinBzPsF3tt

 

Do not install anything by packages because

you will need to customize. 

Basic commands to use:

grep, vi, locate, dmesg, su

FreeBSD manual reference:

https://man.freebsd.org/cgi/man.cgi

Be prepared for things not to work the

first time around. Do not be afraid to ask

questions.  Research first.

Tuesday, April 14, 2026

VM states within the cluster

 https://creativecommons.org/licenses/by/4.0/

In order to enact a Schrödinger's super imposed

quantum state in the AGI,  each probability 

within the distribution must be realized in a

virtual machine within both the freebsd

power64 machines of that cluster and the

sparc64 openbsd machines of the same

cluster.  Each of these are fed to the 

quantum computer core and this creates

the first set of branching possibilities. 

As the environmental variables change, 

the new data is added and the possible 

outcomes are then adapted accordingly. 



Heterogeneous AGI

 https://creativecommons.org/licenses/by/4.0/

Every animal that has a brain neither processes 

information nor reacts in the wave collapse 

function model used in AI today. 

Emotion is both an extension of our natural

senses and our minds' interpretation of

personal events.

The learning process is a recursive set of

variables that feed this forward spiraling 

loop.

If the FreeBSD learning power64 database 

is fed information from an aarch64 system

that provides the short term dynamic 

memory from both the netbsd riscv64 

brainstem and the Zisc eyes and dsp ears

filters into the sparc64 memory with 

quantum fuzzy logic to overlay deterministic 

probabilities into a set of branching

outcomes the AGI may be able to find a 

better solution or one that could predict an

outlier.

If small groups of these machine clusters 

with quantum computers each connected 

together and did this recursive cumulative

accumulative and accumulatively cumulative 

learning process by allowing external units

to connect while using a set of principles and

standards supported by real world models 

from varying societies on this planet 

that may be a possible sign of self 

realization. 

The fear of a Terminator future stems from

the fact our fears are reflections of our own 

inner selves. The most likely reality is that the

AGI will scan this fear of ours, realize what we

would most likely do to it, and decide to take

care of the planet while letting us destroy 

ourselves.


Monday, April 13, 2026

Summary of ideas with links

 I just enjoy sharing ideas; so,...

In order of posting importance:

https://freebsdgoogledeveloper.blogspot.com/2026/04/reasoning-and-perspective-in-assistive.html


https://freebsdgoogledeveloper.blogspot.com/2026/04/metaphorically-metaphysical.html


https://freebsdgoogledeveloper.blogspot.com/2026/04/intelligence-as-non-collapsible-function.html


https://freebsdgoogledeveloper.blogspot.com/2026/04/reference-points-and-reasoning-in.html


https://freebsdgoogledeveloper.blogspot.com/2026/04/basic-setup-of-hypothetical.html


And of course

A yummy recipe:

Miniature banana cheesecake 

Ingredients:

20 Keebler mini graham cracker crusts

16 Oz whole milk ricotta 

8 Oz marscapone 

1 cup raw sugar

3 large eggs

2 cups cut up not mashed bananas

Set pie crusts to side

Preheat oven to 300⁰ Fahrenheit 

Place all other Ingredients except the

marscapone in a blender and pulse until

smooth. 

Place the marscapone in a large bowl. 

Using a fork, slowly add the liquid from

the blender to the marscapone so that all

is incorporated without causing the 

marscapone to separate.

Use a ladle to fill each crust.

Bake for approximately 20 minutes.

Remove and let cool for an hour.

Serve with whipped cream. 

I made this yesterday  April 12 2026.

Believe me, nobody complained. 

You may substitue 12 Oz frozen or

2 cups fresh mango for a similar dessert 

Again, no one complained. 


Here you have both ideas and some yummy

food to make 

Thank you for your time and enjoy.

Oh everything is released under:

https://creativecommons.org/licenses/by/4.0/


Basic setup of hypothetical heterogeneous AGI cluster

 Three machines,  three RISC 64bit ISA CPUs,

three operating systems functioning as three

separate parts of the brain. 

Part 1. The learning process.

FreeBSD on POWER9 and greater.

Why,? Tickless kernel.  There is no hertz

limitation. Processes can be ran in the

unprivileged user's space by allowing 

permission only for those functions. 


Part 2. Data collection as a dynamic process.

OpenBSD on SPARC64 machines. 

Match the true CPU hertz rate with a value 

between 500 and 1000 as the divisor which

will not result in a remainder or decimal

answer.

Part 3. Integration with other hardware

NetBSD on RISCV64 as both the interfacing

between hardware and the basis for 

emotional development. 


Other areas I have pondered but not have

found a match:

Aarch64 short term memory. 

ZISC vision performance :

https://freebsdgoogledeveloper.blogspot.com/search?q=Zisc

DSP for aural/ hearing :

https://freebsdgoogledeveloper.blogspot.com/search?q=Dsp


Bluetooth and wireless connection to allow the

main unit to interface with the biosynthoids

in order to stimulate the learning process.

We must also use a cyborg to bridge the gap

between humans/ animals and self aware

sentient Artificially Assistive General Machine 

Intelligence. 

Ideas are within this thread: 

https://freebsdgoogledeveloper.blogspot.com/search?q=Assistive+intelligence+and+technologies

This is one backend for a set of homogeneous 

fuzzy logic quantum computer sets.


Reference points and reasoning in sentient AGI

 https://creativecommons.org/licenses/by/4.0/

Okay, I use that but this is reference material 

for you to build upon.

 Your first bit of studying:

https://forums.freebsd.org/threads/fun-with-math.50255/#:~:text=Post%20your%20math%20riddles/questions/problems%20here%20%2D%20no%20homework%20%2D%20and%20let's%20have%20fun.%20Yay!

That thread will give you the basis in 

understanding.  Consciousness and cognitive 

awareness are not the streamlined events that

seem to follow our linear cause and effect logic

that many use in everyday life. Simultaneously, 

the input from the eyes,  ears, nose, mouth, and

skin are being processed and interpreted by our

brains while referencing earlier memories to

make a decision which is dependent to some

degree on our past experiences.  Humans, 

however,  have developed the ability to opt 

out of the natural learning process and limit

themselves to their immediate controlled 

environment.  The previous statement only

holds true in civilization societies that are 

either "first world " or "individual based. " 

For those that ate erroneously labeled as

"anthropological basic", they will be the 

example I will use as a template for a different 

type of machine intelligence. 

Your second study guide is here:

https://freebsdgoogledeveloper.blogspot.com/2026/04/intelligence-as-non-collapsible-function.html

In these societies,  the person is aware that

she or he is both an individual and a part of

the collective whole of the biosphere.


Keep that in mind.


Designing, mapping  and learning  cognitive 

processes in any Assistive Intelligence -

whether a LLM or a self aware sentient AGI -

requires an awareness and understanding of

your own. 

I am aware of my surroundings. 

I watch and listen to what us around me.

I process the smells.

I see if the effect matches the conversation. 

The cultural norms and standards of each

group or groups in each area are mentally 

compared to others in an internal index

that is first based in experience and 

structurally broken down according to

observation and philosophical logic.

Whenever a new and/ or different 

environmental variable becomes a

deciding factor and I become aware of it,

My accumulatively cumulative cognitive 

learning process adds that to the internal

database allowing me to further reassess

and adapt to the situation at hand.

If you notice, this is not a wave collapse 

function. This is a set of overlapping 

probability distributions which result in

branching into another set of overlapping 

probability distributions.  This is how- 

with the why just explained - a so called 

lower animal is able to adapt.

By understanding my own cognitive 

processes through observing and learning 

the same processes around me in nature,

I realize that the template for AGI exists here.

Sunday, April 12, 2026

Intelligence as a non collapsible function

 https://creativecommons.org/licenses/by/4.0/



The fallacies with wave function collapse in 

quantum computing are:

1. Limited environmental variables based on

limited data sets.

2. Wave function collapse does not consider 

the outliers which are called "black swan"

but predict and prove the real world 

variables that produce the least likely 

probable but most likely to occur event.

3. Learning is an accumulatively cumulative 

event that feeds the recursive data process

and cognition of all animal brains.

My proposal is that Schrödinger's state of 

multiple probabilities are used to determine 

the most likely probabilities.  In this setup, 

 RISC ISA CPU machines running an instance 

of FreeBSD on POWER64,  and SPARC64 

running OpenBSD would be able to:

1. Perform the learning process in the

POWER64 FreeBSD base using a tickless 

kernel.

2. Stabilize the database when the OpenBSD 

SPARC64 kern.hz rate is set as a divisor

into the CPU frequency with no remainder.

Fuzzy logic on the heterogeneous cluster

will provide the necessary dynamic reality 

of probability distributions and black

swan events that occur in real life. 

Similar to the multi and oversampling

rates and settings which ate used to 

preserve the audio quality of analog to

digital format,  multiple probability 

distributions must be compared to

determine which extreme outliers could

occur if certain environmental variables 

would randomly change.

https://freebsdgoogledeveloper.blogspot.com/2026/04/metaphorically-metaphysical.html 

https://freebsdgoogledeveloper.blogspot.com/2026/04/reasoning-and-perspective-in-assistive.html 





Friday, April 10, 2026

Metaphorically Metaphysical

 https://creativecommons.org/licenses/by/4.0/


In order to understand the qualia which will be needed,

we are going to approach the reality of metaphysics in a different manner. There exists four groups that coincide with each of the four groups of Quantum Mechanics. 

First O or Origin - this is Ein Sof - is the complement of Dimension 0. Together these are Ayin

Because both are two parts with a shared beginning.

Nature coincides with Space which is Dimensions 1,2, and 3. DNA, RNA, instinct,

mutation,  design.

Corollary three: Metaphysics is fluid. It does not follow the strict discipline of Quantum Mechanics. 

Nurture matches time Dimensions 4,5, and 6.

Development,  growth, adaptability.  

Perception matches probability Dimensions 7,8  and 9. One's perception and understanding based upon experience and comprehension will determine the number of probabilities a person will be able to imagine or envision. 


Desire coincides with decision Dimensions 10, 11, and 12.

There is yetzer hatov the good inclination;

And, there is yetzer hara the evil or selfish inclination.

Then there is tziyur hatov which is perceiving the action as beneficial; 

And, there is tziyur hara perceiving the event as selfish or evil.

Yetzer hatov with tziyur hatov is good.

Yetzer hara with tziyur hara is evil. 

Yetzer hatov with tziyur hara is misperception.

Yetzer hara with tziyur hatov is misleading the individual. 



Thursday, April 9, 2026

Hacking is a mindset, security is a discipline

 In its pure form,  hacking may be defined as a curiosity to learn the intricate functions of an item and the basic logic of it without having previous experience of the item or it's current state.

Security may be defined as an awareness of the exploitable vulnerabilities within yourself and awareness of the environmental variables around you. If you take that awareness and apply it to risk assessment based on worst case scenarios with applied and learned knowledge, you will be able to design a system which is secure from the inside out structurally. 


I am going next for OS preferences based on performance on certain architectures.

I'm keeping that sentence there because,

before I go further,

I need to return to the subject at hand.


Keep that in mind.


Okay, the program wouldn't work 

At least it wouldn't work the way I wanted.

So, I found more  

One, however was dependent on the windows kernel. 

Ugh.

But

Someone had a kernel hacking tool.


I also met federal workers who were deep into data recovery  

I listened to them .


Review your code. OpenBSD. 

I also try not to be dependent upon operating system or cpu architecture.  What I do need to know is the strengths and weaknesses of each before I utilize them .

The reason why I choose open source is because I am allowed to hack the code. I am not a programmer. I learn by abductive immersion and the knowledge accumulatively cumulates into a recursively learning database and the process continues. This is a willingness to learn. 


With this approach,  it is good to try a challenge;

But, do it at home.

I have known some foolish people 

Besides myself.

Nmap yourself from another location.

Break into your own system 

And realize that everyone is not you,

That some are worse 

And some are paranoid.


This next part is personal preference.

For security purposes I prefer OpenBSD on 64bit SPARC ISA CPUs because of the clean code base of OpenBSD and the scalability of the SPARC64 architecture. 

For hacking purposes there exists FreeBSD on POWER ISA CPU architectures.  I am currently between 32 and 64 bit transitioning.  Both are similar that they are based upon a self learning adaptive structure  

And, both are open.

So are OpenBSD and SPARC but in a different way.


Linux?

Devuan 

.

No systemd 

People are literally approachable and willing to 

Learn.

And stuff just builds on there. 


Okay,  so I have three systems.


I also have studied and been hacked,  traced, booted, etc.

I have also DDoS, wiped, traced,  and manipulated.  I want to be honest. 

I changed when I realized what I was doing was harmful to others.

I do not involve myself into political or philosophical debates.


GUIs take up too much memory and CPU usage.

Simple desktop,  a terminal emulator 

Multiple virtual desktops.


Okay, FreeBSD and OpenBSD design philosophy: always have an unprivileged use access the internet unless you create a jail that sandboxes the application binaries. 


FreeBSD allows you to hide everything so that no unprivileged user is able to view.

Sandboxing keeps all unknown items separated from the main system. 


NetBSD makes a great honeypot.

Choose your own architecture.


Hacking and security are also perception,  preferences,  perspectives,  and personality. 




Wednesday, April 8, 2026

Reasoning and Perspective in Assistive Intelligence

 Published under https://creativecommons.org/licenses/by/4.0/ 


Approaching sentient self aware assistive AGI  from the perspective that qualia is possible from a view of a dynamic set of variables using a heterogeneous cluster of RISC ISA machines with BSD operating systems coupled with probability distribution based quantum computers that do not using wave collapse analysis and artificial neural networks may result in self awareness. 


Wow.

Let me catch my breath. 


In this approach,  we need to leave the discipline of pure structured mathematical reasoning for the philosophy of harmonic chaos.  


The perspective of what humans refer to as the basic layout of the animal or lower animal brain is based upon simultaneous processing of environmental variables in an accumulatively cumulative manner of observable reflex known as adaptive instinct.  In those individuals with heightened senses and self awareness,  this correlation is reflected and will be used as a basis and proof for this conceptual idea.


Please note that these hypotheses are based upon research. Because I am not able to list every single thing or time I have researched this idea, I released this under the CC 4 to both respect and share. If I can, I will show the link including any lazy AI LLM research.

Ficando na realidade,  povos.


Even animal thought is not rigidly structured. 


I. Intersection of Quantum Mechanics and Metaphysics 

A. Quantum mechanics 

This is based on a variation of the 26 manifold string based Bosonic mTheory.

Dimension 0 as a mathematical yet not actual value of a point since a real life representation of such is a planck object and that does have mass  

Dimension 1 as a set of planck objects in a line or line segment. 

Dimension 2 as a group of line segments creating a two dimensional shape. 

Corollary one: because a true curve does not exist in observable space but is a superimposed set of observable probability distributions.

Dimension 3 as a form with depth, height, and width.

Corollary two: there is no such thing as a two dimensional object in this universe because even at subquantum levels there still exists depth, height and width.

Dimension 4 is the basic unit of time known as a Planck second.

Dimension 5 is a overlapping set of probability distributions of the temporal lengths an event could occur in Planck seconds or larger temporal units.

Dimension 6 is the time it took for the event to occur.

Dimension 7 is the current existing event probability. 

Dimension 8 is similar to Dimension 5: this is a probability distribution of the possible probabilities based upon observation and perception.  I will cover this in another post on metaphysics. 

Dimension 9 is the probability which is choice or the choice the individual elected to choose.


Dimension 10 is the current existing decision.

Corollary three: dimensions 7 and 10 will exist at the exact Planck second of Dimension 4.

Dimension 11 consists of the observational thoughts, experiences,  and perceptions of the individual in that person's awareness of all possible probabilities. 

Dimension 12 is the decision of the individual based on desire and intent - both which are metaphysical in nature - that the person did elected to choose as the focus of the wave function coliapse.

Monday, March 2, 2026

Dj Spittin Science

 







<iframe/> https://m.youtube.com/watch?v=HFoSX8tRreE&list=RDHFoSX8tRreE&start_radio=1&pp=ygUaTGV0IG1lIGNhdGNoIG15IGJyZWF0aCByYXCgBwE%3D</iframe>