Re: [ot][spam][crazy][is it appropriate to direct disruption towards things that have been heavily disrupted?]

2022-06-23 Thread Undiscussed Horrific Abuse, One Victim of Many
it now orbits the camera when keys are held. d4840a326cdf610f00509d61f468ada50904a17c uhhh it uses the key repeat rate to do so. i guess it could be nice to measure the fastest repeat time, and wait twice for that to register a release, so it moves smoothly every frame isntead of when the repeat

Re: [ot][spam][crazy][is it appropriate to direct disruption towards things that have been heavily disrupted?]

2022-06-23 Thread Undiscussed Horrific Abuse, One Victim of Many
e1a03cd4ccfbe22689650212489e53053344 it now displays 4 points in a square in 3-space on a ground plane, and when run one can just barely tell that it is actually 3d in the TUI. which i'm sure has been done before, but is fun to have implemented. maybe it would be most productive next to make

Re: [ot][spam][crazy][is it appropriate to direct disruption towards things that have been heavily disrupted?]

2022-06-23 Thread Undiscussed Horrific Abuse, One Victim of Many
i roughly did that. it's not working yet, bugs remain. something i do more as a norm now is `import pdb; pdb.set_trace()` where-ever i want to look at information to resolve the error. this seems to really ease debugging when very confused. no need to do the breakpoints/conditions dance. no need

Re: [ot][spam][crazy][is it appropriate to direct disruption towards things that have been heavily disrupted?]

2022-06-23 Thread Undiscussed Horrific Abuse, One Victim of Many
i'm confused around the screen matrix can i do this with a 2x2 matrix? how do i do it? it's not a 2d transformation matrix if it's 2x2. that would be 3x3. when i think of the 2x2 matrix, i imagine it applying to an equation: the first column multiplies, the second adds. then i can put input

Re: [ot][spam][crazy][is it appropriate to direct disruption towards things that have been heavily disrupted?]

2022-06-23 Thread Undiscussed Horrific Abuse, One Victim of Many
i'm kinda paused. i'm at the point of writing a screen matrix to move to the center of the screen . i was thinking of holding a 2x2 matrix as an object member. the plan is to divide the width and height by two, and take the minimum and call it dim. then to scale by dim (first column of matrix) and

Re: [ot][spam][crazy][is it appropriate to direct disruption towards things that have been heavily disrupted?]

2022-06-23 Thread Undiscussed Horrific Abuse, One Victim of Many
maybe text along the lines of 'just a hobby project so i can do something other than flail my limbs around'

Re: [ot][spam][crazy][is it appropriate to direct disruption towards things that have been heavily disrupted?]

2022-06-23 Thread Undiscussed Horrific Abuse, One Victim of Many
the displayed text plan is changing from 'yay! wonderfulness!'. not sure what it will be next. certainly 'we can all get along' will be less publicly shared knowledge.

Re: [ot][spam][crazy][is it appropriate to direct disruption towards things that have been heavily disrupted?]

2022-06-23 Thread Undiscussed Horrific Abuse, One Victim of Many
ok that worked out index f714541..f12338e 100644 --- a/test.py +++ b/test.py @@ -93,6 +93,7 @@ class Engine: if len(self.object_points): untransformed_points = np.concatenate(self.object_points) transformed_points =

Re: [ot][spam][crazy][is it appropriate to direct disruption towards things that have been heavily disrupted?]

2022-06-23 Thread Undiscussed Horrific Abuse, One Victim of Many
o i think i figured it out the transformed point is [ 0., -10., 10.] the original point is [0,0,0] and the camera is CoordFrame.fromaxisangle(Z, 0, [0,10,-10,1]) so this makes total sense; the camera is looking head-on and is 10 units above the object, so the object appears at -10. it

Re: [ot][spam][crazy][is it appropriate to direct disruption towards things that have been heavily disrupted?]

2022-06-23 Thread Undiscussed Horrific Abuse, One Victim of Many
right now it throws an error trying to tell curses to move offscrene, so i have it open in pdb. it's easier for me to see what the errors are when they break to a debugger. it would make sense to step through the process of transforming the world coordinates to screen coordinates. this would show

Re: [ot][spam][crazy][is it appropriate to direct disruption towards things that have been heavily disrupted?]

2022-06-23 Thread Undiscussed Horrific Abuse, One Victim of Many
the new plan is to have it plot text in 3-space that says 'yay! wonderfulness!' and then another text that says 'we can all get along\n\ni just know it!'

Re: [ot][spam][crazy][is it appropriate to direct disruption towards things that have been heavily disrupted?]

2022-06-23 Thread Undiscussed Horrific Abuse, One Victim of Many
i'm not sure whether i will continue / finish this, but it seems cool. i want to remove the references to death from it, maybe switch to positivity for a bit, unsure. - i reversed the order of matrix multiplication. this lets stacks of vectors be processed unmodified by passing to apply() - i

Re: [ot][spam][crazy][is it appropriate to direct disruption towards things that have been heavily disrupted?]

2022-06-22 Thread Undiscussed Horrific Abuse, One Victim of Many
On 6/22/22, Undiscussed Horrific Abuse, One Victim of Many wrote: > different cognitive issue! > > less breakfast possibility engagement received a list unsubscription request with time shown as 1 minute after this email

Re: [ot][spam][crazy][is it appropriate to direct disruption towards things that have been heavily disrupted?]

2022-06-22 Thread Undiscussed Horrific Abuse, One Victim of Many
recreational work at 2b935aa6df632bbcd1775d85c3c29f1ec1164ec2

Re: [ot][spam][crazy][is it appropriate to direct disruption towards things that have been heavily disrupted?]

2022-06-22 Thread Undiscussed Horrific Abuse, One Victim of Many
regarding camera placement: i forgot about whether translation comes before or after rotation in one interpretation, the system orbits the origin, in the other it rotates about its local center i better see which one i implemented with another test committing for now since behavior is

Re: [ot][spam][crazy][is it appropriate to direct disruption towards things that have been heavily disrupted?]

2022-06-22 Thread Undiscussed Horrific Abuse, One Victim of Many
different cognitive issue! less breakfast possibility engagement

Re: [ot][spam][crazy][is it appropriate to direct disruption towards things that have been heavily disrupted?]

2022-06-22 Thread Undiscussed Horrific Abuse, One Victim of Many
translate234.mat[:,3:] = [[2,3,4,1]] copy error here >>> translate234.mat[:,3:] = [[2],[3],[4],[1]] looks like this also works: >>> translate234.mat[:,3] = [2,3,4,1]

Re: [ot][spam][crazy][is it appropriate to direct disruption towards things that have been heavily disrupted?]

2022-06-22 Thread Undiscussed Horrific Abuse, One Victim of Many
i got good results using a column vector >>> import test, numpy as np >>> vec = np.array([1,0,0,1]) >>> translate234 = test.CoordFrame() >>> translate234.mat[:,3:] = [[2,3,4,1]] >>> translate234.apply(vec) array([3., 3., 4., 1.])

Re: [ot][spam][crazy][is it appropriate to direct disruption towards things that have been heavily disrupted?]

2022-06-22 Thread Undiscussed Horrific Abuse, One Victim of Many
i have trouble thinking about matrices because i was building an app using linear algebra research papers in 2014

Re: [ot][spam][crazy][is it appropriate to direct disruption towards things that have been heavily disrupted?]

2022-06-22 Thread Undiscussed Horrific Abuse, One Victim of Many
to place the camera I'm adding a position= keyword parameter to CoordFrame.fromaxisangle(). to put it in a 4x4 matrix, i have to decide whether to put it in the last column, or the last row. i think it depends on whether i am premultiplying or postmultiplying to apply the transformation. i'm

Re: [ot][spam][crazy][is it appropriate to direct disruption towards things that have been heavily disrupted?]

2022-06-22 Thread Undiscussed Horrific Abuse, One Victim of Many
going to implement Scene now to show some points. it still derives from Engine, not separated. it returns the camera to draw eahc call. objects can be passed to Engine() or Engine.add() to put in scene doesn't work yet!

Re: [ot][spam][crazy][is it appropriate to direct disruption towards things that have been heavily disrupted?]

2022-06-22 Thread Undiscussed Horrific Abuse, One Victim of Many
i got confused while adding objects to scene and transforming points, so likely more bugs from missing things during changes

Re: [ot][spam][crazy][is it appropriate to direct disruption towards things that have been heavily disrupted?]

2022-06-22 Thread Undiscussed Horrific Abuse, One Victim of Many
update: rather than a hanging image, considering having it display 3d text saying 'karl is an idiot'

Re: [ot][spam][crazy][is it appropriate to direct disruption towards things that have been heavily disrupted?]

2022-06-22 Thread Undiscussed Horrific Abuse, One Victim of Many
oops cognitive issue

Re: [ot][spam][crazy][is it appropriate to direct disruption towards things that have been heavily disrupted?]

2022-06-22 Thread Undiscussed Horrific Abuse, One Victim of Many
ok um how does the engine know what the camera is to transform points? the scene should tell it. the scene is a subclass. the engine calls the scene's update() function. maybe there can be a method to set the camera. unfortunately, intertwining of cameras and scenes. curses does

Re: [ot][spam][crazy][is it appropriate to direct disruption towards things that have been heavily disrupted?]

2022-06-22 Thread Undiscussed Horrific Abuse, One Victim of Many
commit 0f7743554293b82c6d3204f68f066adad1c2aa6c (HEAD -> main, origin/main) Author: John Doe Date: Wed Jun 22 11:24:21 2022 -0400 added time, organised a little -- okay, so for updating a scene, I'll also need a list of objects that the engine can gather points from to transform. i'm

Re: [ot][spam][crazy][is it appropriate to direct disruption towards things that have been heavily disrupted?]

2022-06-22 Thread Undiscussed Horrific Abuse, One Victim of Many
i'll move those things into __init and __update for consistency

Re: [ot][spam][crazy][is it appropriate to direct disruption towards things that have been heavily disrupted?]

2022-06-22 Thread Undiscussed Horrific Abuse, One Victim of Many
import curses, time, numpy as np ... class Engine: ... def __run(self, window): self.window = window self.__init() self.monotonic_start = time.monotonic() self.time = 0 while True: now = time.monotonic() - self.monotonic_start

Re: [ot][spam][crazy][is it appropriate to direct disruption towards things that have been heavily disrupted?]

2022-06-22 Thread Undiscussed Horrific Abuse, One Victim of Many
to test and debug displaying points, i'll want to add time tracking to the engine so that rotation angles can be calculated to be consistent with framerate

Re: [ot][spam][crazy][is it appropriate to direct disruption towards things that have been heavily disrupted?]

2022-06-22 Thread Undiscussed Horrific Abuse, One Victim of Many
commit d64cc606e31207f5e74eac5a1117a879f8f9

Re: [ot][spam][crazy][is it appropriate to direct disruption towards things that have been heavily disrupted?]

2022-06-22 Thread Undiscussed Horrific Abuse, One Victim of Many
ended up looking like this: @classmethod def fromaxisangle(cls, axis, angle): # from https://en.wikipedia.org/wiki/Rotation_matrix#Rotation_matrix_from_axis_and_angle cos_theta = np.cos(angle) sin_theta = np.sin(angle) axis = axis[:3] axis = axis /

Re: [ot][spam][crazy][is it appropriate to direct disruption towards things that have been heavily disrupted?]

2022-06-22 Thread Undiscussed Horrific Abuse, One Victim of Many
if __name__ == '__main__': frame = CoordFrame.fromaxisangle(Y, 0.2) print(frame) $ python3 -m pdb test.py (Pdb) cont it finds all sorts of errors i totally didn't see, so i go through and fix them.

Re: [ot][spam][crazy][is it appropriate to direct disruption towards things that have been heavily disrupted?]

2022-06-22 Thread Undiscussed Horrific Abuse, One Victim of Many
This is what I have now. It would be more difficulty to hunt down bugs stemming from this method, so it's time to run it through the python interpreter and fix things. X = np.array([1.0,0,0,0]) Y = np.array([0,1.0,0,0]) Z = np.array([0,0,1.0,0]) W = np.array([0,0,0,1.0]) class CoordFrame:

Re: [ot][spam][crazy][is it appropriate to direct disruption towards things that have been heavily disrupted?]

2022-06-22 Thread Undiscussed Horrific Abuse, One Victim of Many
more appropriate 3d coordinate frame rotation matrices are documented at https://en.wikipedia.org/wiki/Rotation_matrix#In_three_dimensions a general purpose matrix form for any axis is given at https://en.wikipedia.org/wiki/Rotation_matrix#Rotation_matrix_from_axis_and_angle i'll copy that

Re: [ot][spam][crazy][is it appropriate to direct disruption towards things that have been heavily disrupted?]

2022-06-22 Thread Undiscussed Horrific Abuse, One Victim of Many
_euler_ angles. not _euclid_ angles. oh those greeks. https://en.wikipedia.org/wiki/Euler_angles#Rotation_matrix long story short: the full expression of an euler angle matrix is ridiculous. it makes more sense to either make axial rotation matrices and combine them, or make rotation about an

Re: [ot][spam][crazy][is it appropriate to direct disruption towards things that have been heavily disrupted?]

2022-06-22 Thread Undiscussed Horrific Abuse, One Victim of Many
euclid angles can have bad singularities but they make sense here since the plan is to artificially limit the engine so that the up direction never changes

Re: [ot][spam][crazy][is it appropriate to direct disruption towards things that have been heavily disrupted?]

2022-06-22 Thread Undiscussed Horrific Abuse, One Victim of Many
i'm starting to feel better. maybe i can have breakfast later/soon :) {{ yesterday i went to a music lunch and didn't eat anything from movement/intention issues, and people commented :S }} for the camera, i guess a camera is basically just a bare coordframe. this would let you reference objects

Re: [ot][spam][crazy][is it appropriate to direct disruption towards things that have been heavily disrupted?]

2022-06-22 Thread Undiscussed Horrific Abuse, One Victim of Many
here's my point class draft. i'm hoping to get it to write text in 3-space: class Point: def __init__(self, str, pos): self.points = np.array([pos]) self.str = str def _points(self): return self.points def draw(self, engine, projected_points): x, y, _ =

Re: [ot][spam][crazy][is it appropriate to direct disruption towards things that have been heavily disrupted?]

2022-06-22 Thread Undiscussed Horrific Abuse, One Victim of Many
i guess you could make something cool just with 3d points. i haven't really decided on how to design it. i'm not sure whether to make a draw() function on it. i guess i will turns out implementing drawing will need a camera though h i guess it makes sense to have two passes, one where all

Re: [ot][spam][crazy][is it appropriate to direct disruption towards things that have been heavily disrupted?]

2022-06-22 Thread Undiscussed Horrific Abuse, One Victim of Many
untested! class CoordFrame: def __init__(self, mat = None): if mat is None: mat = np.array([1.0,0,0,0],[0,1.0,0,0],[0,0,1.0,0],[0,0,0,1.0]) self.mat = mat def apply(self, vec): return self.mat @ vec def inverted(self): return

Re: [ot][spam][crazy][is it appropriate to direct disruption towards things that have been heavily disrupted?]

2022-06-22 Thread Undiscussed Horrific Abuse, One Victim of Many
so i have this, but i don't like the name "destranform" and how the operation of a transform brings something _out_ of the space. maybe I'll change it to be something positive like "apply" or "__call__" and just remember how to use it or write in the comment how: class CoordFrame: def

Re: [ot][spam][crazy][is it appropriate to direct disruption towards things that have been heavily disrupted?]

2022-06-22 Thread Undiscussed Horrific Abuse, One Victim of Many
VectorA = CoordFrameA * VectorB so CoordFrameA is the coordinate frame that VectorB is relative to, expressed in terms of the coordinate frame that VectorA is relative to. there's a way to think about it so there are fewer different frames and vectors everywhere confusing you, not sure what it

Re: [ot][spam][crazy][is it appropriate to direct disruption towards things that have been heavily disrupted?]

2022-06-22 Thread Undiscussed Horrific Abuse, One Victim of Many
ok um camera has one coordinate system, of where it is and where it is looking. this seems at first a fine coordinate system for objects in its field of view. if it aims along an axis, that's the depth axis. ok u to express just a vector translation relative to something, you

Re: [ot][spam][crazy][is it appropriate to direct disruption towards things that have been heavily disrupted?]

2022-06-22 Thread Undiscussed Horrific Abuse, One Victim of Many
i wrote this much: class CoordFrame: def __init__(self): self.mat = np.array([1.0,0,0,0],[0,1.0,0,0],[0,0,1.0,0],[0,0,0,1.0]) there are 3 things i'm likely to want to do: - place something at a specific location - orbit the camera around the origin (to animate seeing a scene from

Re: [ot][spam][crazy][is it appropriate to direct disruption towards things that have been heavily disrupted?]

2022-06-22 Thread Undiscussed Horrific Abuse, One Victim of Many
more precisley, i'm pretty sure for a 90 degree field of view, the horizontal and vertical coordinates are scaled by the depth coordinate. so, to draw stuff in a perspective projection, you transform all the coordinate systems so that they are relative to the camera. i guess i'll see how

Re: [ot][spam][crazy][is it appropriate to direct disruption towards things that have been heavily disrupted?]

2022-06-22 Thread Undiscussed Horrific Abuse, One Victim of Many
normal pictures where things are far away like a camera takes use trigonometry basically, everything has a depth coordinate: distance from the camera. and the size is roughly divided by the depth coordinate. this is correct for a 90 degree field of view and objects at a distance; it would be

Re: [ot][spam][crazy][is it appropriate to direct disruption towards things that have been heavily disrupted?]

2022-06-22 Thread Undiscussed Horrific Abuse, One Victim of Many
ok, um, although it is easy to make a vertical line, to make it look interesting we'll need something more. maybe we could start by plotting the periods at the base? this seems somewhat reasonable? and if the moribidity becomes bad, we could switch to plotting the stick figure standing, maybe

Re: [ot][spam][crazy][is it appropriate to direct disruption towards things that have been heavily disrupted?]

2022-06-22 Thread Undiscussed Horrific Abuse, One Victim of Many
here's the code that uses it: class App(Engine): def __init__(self): self.last_key = 'press key?' def update(self, key = ''): if key: self.last_key = key self.plot(self.width / 2, self.height / 2, self.last_key) if __name__ == '__main__':

Re: [ot][spam][crazy][is it appropriate to direct disruption towards things that have been heavily disrupted?]

2022-06-22 Thread Undiscussed Horrific Abuse, One Victim of Many
i put it in a class for object-orientedness. this makes it seem bigger textwise. then i derived from the class to draw the text centered now. here's the class: class Engine: def run(self): curses.wrapper(self.__run) def __init(self): self.window.nodelay(True)

Re: [ot][spam][crazy][is it appropriate to direct disruption towards things that have been heavily disrupted?]

2022-06-22 Thread Undiscussed Horrific Abuse, One Victim of Many
except for the tui!

Re: [ot][spam][crazy][is it appropriate to direct disruption towards things that have been heavily disrupted?]

2022-06-22 Thread Undiscussed Horrific Abuse, One Victim of Many
i used the github gui interface to add the word 'ascii' to the description which was horrendously missing. this is not intended to be a real 3d engine.

Re: [ot][spam][crazy][is it appropriate to direct disruption towards things that have been heavily disrupted?]

2022-06-22 Thread Undiscussed Horrific Abuse, One Victim of Many
a saving grace is that github does keep a history of such behaviros, and it is publicly accessible i did try to scrape this history once and found it full of corruptions

Re: [ot][spam][crazy][is it appropriate to direct disruption towards things that have been heavily disrupted?]

2022-06-22 Thread Undiscussed Horrific Abuse, One Victim of Many
I failed to add the README, typed thec ommand only into email, not into terminal. I force-pushed a new commit with the change. Doing so is improper in two domains, and hides details on the ongoing community destruction.

Re: [ot][spam][crazy][is it appropriate to direct disruption towards things that have been heavily disrupted?]

2022-06-22 Thread Undiscussed Horrific Abuse, One Victim of Many
$ vim README.md vim is a text editor where you use hjkl to move the cursor around instead of arrow keys (a mouse works but it doesn't make sense to use one with vim). in order to change the text, you have to hit 'i' to switch to editing mode, and then 'esc' to switch out (long ago 'esc' was near

Re: [ot][spam][crazy][is it appropriate to direct disruption towards things that have been heavily disrupted?]

2022-06-22 Thread Undiscussed Horrific Abuse, One Victim of Many
i think i'll make a README for the project and publish it

Re: [ot][spam][crazy][is it appropriate to direct disruption towards things that have been heavily disrupted?]

2022-06-22 Thread Undiscussed Horrific Abuse, One Victim of Many
the tutorial says this: Your application can determine the size of the screen by using the curses.LINES and curses.COLS variables to obtain the y and x sizes. Legal coordinates will then extend from (0,0) to (curses.LINES - 1, curses.COLS - 1). we'll also need the character aspect ratio to draw

Re: [ot][spam][crazy][is it appropriate to direct disruption towards things that have been heavily disrupted?]

2022-06-22 Thread Undiscussed Horrific Abuse, One Victim of Many
yeah the extra call to refresh() can be removed. ok, next we'll need the width and height

Re: [ot][spam][crazy][is it appropriate to direct disruption towards things that have been heavily disrupted?]

2022-06-22 Thread Undiscussed Horrific Abuse, One Victim of Many
- the nodelay call is mentioned in the tutorial as letting things continue if no key is pressed (good for animation) - i tried calling clear() in the loop but it makes flicker. changing it to erase reduces refresh, and then putting it after getkey() seems important; getkey() can refresh. it might

Re: [ot][spam][crazy][is it appropriate to direct disruption towards things that have been heavily disrupted?]

2022-06-22 Thread Undiscussed Horrific Abuse, One Victim of Many
here's what i have now: import curses def main(stdscr): stdscr.nodelay(True) stdscr.clear() key = 'press key?' while key != 'q': try: key = stdscr.getkey() except: pass stdscr.erase() stdscr.addstr(4, 3, key) stdscr.refresh()

Re: [ot][spam][crazy][is it appropriate to direct disruption towards things that have been heavily disrupted?]

2022-06-22 Thread Undiscussed Horrific Abuse, One Victim of Many
Here are some pasted together snippets from the tutorial. i don't imagine copypasta to actually work. import curses def main(stdscr): stdscr.nodelay(True) stdscr.clear() while True: try: key = stdscr.getkey() except: key = 'press key?'

Re: [ot][spam][crazy][is it appropriate to direct disruption towards things that have been heavily disrupted?]

2022-06-22 Thread Undiscussed Horrific Abuse, One Victim of Many
it sounds like doupdate is really basic, so i might be able to just copy something from this at the top of the doc page: Curses Programming with Python Tutorial material on using curses with Python, by Andrew Kuchling and Eric Raymond. The Tools/demo/ directory in the Python source distribution

Re: [ot][spam][crazy][is it appropriate to direct disruption towards things that have been heavily disrupted?]

2022-06-22 Thread Undiscussed Horrific Abuse, One Victim of Many
oh great, i can blit :D curses.doupdate() Update the physical screen. The curses library keeps two data structures, one representing the current physical screen contents and a virtual screen representing the desired next state. The doupdate() ground updates the physical screen to match the

Re: [ot][spam][crazy][is it appropriate to direct disruption towards things that have been heavily disrupted?]

2022-06-22 Thread Undiscussed Horrific Abuse, One Victim of Many
python curses docs are at https://docs.python.org/3.10/library/curses.html what we will want is: - how to initialise curses - getting the width and height - moving the cursor to a location - blitting an update to the screen blitting might need to be implemented manually, i don't know

Re: [ot][spam][crazy][is it appropriate to direct disruption towards things that have been heavily disrupted?]

2022-06-22 Thread Undiscussed Horrific Abuse, One Victim of Many
it seems kind of nice to code it in c or c++, since it's ascii and all i'm so much more familiar with python now i guess i'll go with python since the goal is shaky

Re: [ot][spam][crazy][is it appropriate to direct disruption towards things that have been heavily disrupted?]

2022-06-22 Thread Undiscussed Horrific Abuse, One Victim of Many
the hard part is using curses, since i focused on text when reinforcing my tech skills

Re: [ot][spam][crazy][is it appropriate to direct disruption towards things that have been heavily disrupted?]

2022-06-22 Thread Undiscussed Horrific Abuse, One Victim of Many
similarly, a sphere is incredibly easily to normalise if its distance doesn't change much. it's always an o or an O. the challenge i left off on when i figured out how to move my body, was the idea of doing a rectangular base that's visible as perspective changes. this is pretty reasonable if

Re: [ot][spam][crazy][is it appropriate to direct disruption towards things that have been heavily disrupted?]

2022-06-22 Thread Undiscussed Horrific Abuse, One Victim of Many
i was thinking, how can i make ascii art primitives that can be viewed from any angle? and for some things it's easy. if you restrict the camera so it never rolls (up vector is always the same) then vertical lines (like the post in the hangman) are always vertical, and just change height. totally

Re: [ot][spam][crazy][is it appropriate to direct disruption towards things that have been heavily disrupted?]

2022-06-22 Thread Undiscussed Horrific Abuse, One Victim of Many
i did not look at the base64 pictures that may or may not be of a waterfall of cubes. i was daydreaming recently of building a 3D engine that uses ASCII art. maybe i could make a 3D presentation of the stick figure hangman with text, that would run on a terminal. i was thinking it could involve

Re: [ot][spam][crazy][is it appropriate to direct disruption towards things that have been heavily disrupted?]

2022-06-22 Thread Undiscussed Horrific Abuse, One Victim of Many
i don't immediately see it mentioned it seems it would be polite to ask at https://huggingface.co/spaces/dalle-mini/dalle-mini/discussions or in the dalle-mini discord i didn't immediately see a way to search the forums for information on this, it can be hard fo rme to see stuff

Re: [ot][spam][crazy][is it appropriate to direct disruption towards things that have been heavily disrupted?]

2022-06-22 Thread Undiscussed Horrific Abuse, One Victim of Many
now let's see if they publish the spec

Re: [ot][spam][crazy][is it appropriate to direct disruption towards things that have been heavily disrupted?]

2022-06-22 Thread Undiscussed Horrific Abuse, One Victim of Many
it looks the response format presently is: { "version": "mega-1:v16", "images": [ "base64-encoded-jpeg-1", "base64-encoded-jpeg-2", ..., "base64-encoded-jpeg-9" ] }

Re: [ot][spam][crazy][is it appropriate to direct disruption towards things that have been heavily disrupted?]

2022-06-22 Thread Undiscussed Horrific Abuse, One Victim of Many
i forgot to _call_ the json function >>> type(generation) >>> generation = generation() >>> type(generation) then it works. >>> type(generation) >>> generation.keys() dict_keys(['images', 'version']) >>> type(generation['images']) >>> len(generation['images']) 9 >>>

Re: [ot][spam][crazy][is it appropriate to direct disruption towards things that have been heavily disrupted?]

2022-06-22 Thread Undiscussed Horrific Abuse, One Victim of Many
>>> import requests >>> generation = requests.post('https://backend.craiyon.com/generate', >>> json=dict(prompt="Waterfall made of cubes")).json let's see if it works !

Re: [ot][spam][crazy][is it appropriate to direct disruption towards things that have been heavily disrupted?]

2022-06-22 Thread Undiscussed Horrific Abuse, One Victim of Many
On 6/22/22, Undiscussed Horrific Abuse, One Victim of Many wrote: > here, i help Boss by loading Dall-E Mini's free public server, sharing I mean that publicising a third-party interface will cost Dall-E Mini money they did not plan to spend. My intention of course is primarily to handle my

Re: [ot][spam][crazy][is it appropriate to direct disruption towards things that have been heavily disrupted?]

2022-06-22 Thread Undiscussed Horrific Abuse, One Victim of Many
here, i help Boss by loading Dall-E Mini's free public server, sharing these exfiltrated specs. i do this a lot. it's well-known their easy to exfiltrate, but nobody shares like me. Method: POST URL: https://backend.craiyon.com/generate Accept: application/json Content-Type: application/json

Re: [ot][spam][crazy][is it appropriate to direct disruption towards things that have been heavily disrupted?]

2022-06-22 Thread Undiscussed Horrific Abuse, One Victim of Many
it showed me babies and cats with a lot of the color green present (the cat had gree whites to their eyes) i saw a POST request to a 'generate' endpoint. let's see if it's obscure or not

Re: [ot][spam][crazy][is it appropriate to direct disruption towards things that have been heavily disrupted?]

2022-06-22 Thread Undiscussed Horrific Abuse, One Victim of Many
i typed in "this is a little nicer" and opened the network dev pane to see if it is a simple api i can just paste into something

Re: [ot][spam][crazy][is it appropriate to direct disruption towards things that have been heavily disrupted?]

2022-06-22 Thread Undiscussed Horrific Abuse, One Victim of Many
"bazzs" gave me a bunch of dark picture of a boxer wearing black elbowpads

Re: [ot][spam][crazy][is it appropriate to direct disruption towards things that have been heavily disrupted?]

2022-06-22 Thread Undiscussed Horrific Abuse, One Victim of Many
i typed "bazz" into https://www.craiyon.com/ , a website i was forwarded to from dall-e mini. i read recently that openai threatened the creator of dall-e mini. i thought dall-e mini was made by a community, not an individual. dunno. i suppose i'm likely wrong. still, it's reminiscent of how

Re: [ot][spam][crazy][is it appropriate to direct disruption towards things that have been heavily disrupted?]

2022-06-22 Thread Undiscussed Horrific Abuse, One Victim of Many
let's make a script that abuses the human condition by downloading random AI-generated images i don't expect to succeed, which means i succeed whether I do or not!

[ot][spam][crazy][is it appropriate to direct disruption towards things that have been heavily disrupted?]

2022-06-22 Thread Undiscussed Horrific Abuse, One Victim of Many
hello it is wednesday 908 am here 06-22-2022 or such. i had a rough night. but i worked for like 4 or 5 days straight which was awesome !! i'm left with my dissociationy stuff with few avenues to pursue with stability that are near me. working memory issues make creative solutions harder,