Skip to content

Instantly share code, notes, and snippets.

Q:what is a XULLUUU?
A:NONE
Q:what is an elephant?
A:an elephant is a mammel. CONFIDENT
Q:can birds fly into space? Why?
A:no, because air doesn't exist in space. CONFIDENT
Q:can ants fly?
A:
!dream "a dendritic monster emerging from the ocean, sea waves, vray, 55mm" -n 5
!dream "a wormy dendritic monster emerging from the ocean, sea waves, vray, 55mm" -n 5
!dream "furry friendly monster, photorealistic, colored, unreal engine, vray, 55mm" -n 9
@PtrMan
PtrMan / web log.txt
Last active December 1, 2025 05:12
https://kajsotala.fi/2007/10/14-objections-against-aifriendly-aithe-singujlarity-answered/
https://www.psychologytoday.com/us/blog/shut-and-listen/201806/humans-cant-plan-long-term-and-heres-why
https://kajsotala.fi/2007/10/14-objections-against-aifriendly-aithe-singularity-answered/
Friendly AI
https://towardsdatascience.com/attention-in-neural-networks-e66920838742
@PtrMan
PtrMan / Classifier.py
Last active April 15, 2021 12:14
NLP AI experiment which I did in 2012
from MiniClasses import *
class Classifier:
def __init__(self):
pass
def classifySentence(self, Sentence):
i = 0
@PtrMan
PtrMan / SpecialLangs.md
Last active July 16, 2020 16:30
Languages

some specialized languages sorted by domain

GPU DSL

Impala

Impala Github can be used to compile code for GPU's.

  • supports partial specialization
@PtrMan
PtrMan / NarsTutorialDecisonMaking.rs
Created June 4, 2020 12:13
NARS Tutorial codes
use rand::Rng;
use std::rc::Rc;
use std::cell::RefCell;
// DONE< check for events which were anticipated and remove anticipations! >
// DONE< compute expectation while decision making and take the one with the highest exp(), check against decision threshold! >
// TODO< compute table of exponential intervals! >
// TODO< compute anticipation deadline >
@PtrMan
PtrMan / GenMaze.py
Created May 28, 2020 11:48
ONA experiments
print("*motorbabbling=false")
#encode a field as a term
def encField(y,x):
name = str(y)+"Y"+str(x)
return "<f"+name+" --> F"+name+">"
# encode maze
for ix in range(10):
for iy in range(10):