#Alphanumeric Numbers
Explore tagged Tumblr posts
fundamentalrights · 1 year ago
Text
0 notes
dead-generations · 3 months ago
Text
Tumblr media
0 notes
puzzlenation · 4 months ago
Text
Let's Talk Puzzle Codes!
Puzzly information is concealed in all sorts of ways. Rephrasings, anagrams, riddles, puns… these are all ways to challenge solvers by hiding information in plain sight. But puzzle codes are one of the most prominent techniques… and one of the most ways to do so. Codes in puzzles come in all shapes and sizes. And if you’re venturing beyond the confines of crossword-style puzzling, you’re bound…
Tumblr media
View On WordPress
0 notes
todays-xkcd · 14 days ago
Text
Tumblr media
[desperately] Maybe this is from some country where they use commas as decimal points, and also as digit separators after the decimal, and also use random other characters for decoration???
Reading a Big Number [Explained]
Transcript Under the Cut
[A large number is written along the middle of the panel. Above and below the number there are 10 labels, (5 above and 5 below), and from each label a small curved line points to a part of the number. There is a heading above the top labels:] Thought process while reading a big number:
[The number is continuing off the edge of the comic to the right, the last digit is missing about a third:] 54,000,000,000,000,000,000,0000,0000,054,000"000,00c2ef46
[The labels are listed below in the reading order as from where the small lines are pointing on to the number, so both those above and below the number, not first all those above. Text in the brackets indicate where on the number the line is pointing:]
[To the first two numbers before the first comma, label above the number:] 54! Great! I know that number. Solid start.
[To the first zero after the first comma, label below the number:] Oh, a comma and some zeros. Cool. Must be at least 54 thousand.
[To the second comma, label above the number:] A second comma! I wonder if we're talking population or money.
[To the third comma, label below the number:] Yikes! If this is money, it's a lot of money.
[To the fifth comma, label above the number:] Why am I reading this? Whatever this number is, I'm not going to be able to visualize it.
[To the sixth comma, label below the number:] All right, either someone made a unit conversion error or this is one of those incomprehensible astronomy numbers.
[To the middle of a group of four zeros after the seventh comma, label above the number:] Oh no. Is this a misplaced comma or an extra zero? I guess we'll see if the next group has two zeros or three. If it's two, we can at least hope the digits are right.
[To the middle of a group of four zeros after the eighth comma, label below the number:] Oh no.
[To the last two numbers of the three digits after the ninth comma, label below the number:] What is happening.
[To a quotation mark, where the eleventh comma should have been, label above the number:] Someone messed up real bad.
[To the first number in a group with mixed alphanumeric numbers, where the thirteenth comma should have been, label below the number:] Someone messed up real bad and I hope it wasn't me.
755 notes · View notes
miscling · 5 months ago
Text
M1SCBASIC V2.0
under the cut is a user manual for M1SCBASIC V2.0 as used by drone unit M1SC. this guide provides details on how to initialise M1SC, give it commands using M1SCBASIC, and how to program it and save those programs for later use. User privileges remain open on a consent basis.
Order of operations and programming syntax
Begin by engaging M1SC using the following command phrase:
~ New M1SC Operations ~
Commands given while M1SC is engaged can follow simple english, but for users who wish to engage in M1SCBASIC programming, this guide will provide you with the tools to do so.
M1SCBASIC commands are described below, and can be delivered line by line, or can be provided in the form of a M1SCBASIC program. Each line of a M1SCBASIC program begins with a number that indicates the order that the program will be executed in.
10 OUTPUT ‘Hello World!’
20 END
As programs become more complex, it may become necessary to add lines between existing lines while editing them
10 OUTPUT ‘Hello World!’
15 IF user~=‘unknown’ THEN OUTPUT ‘Nice to meet you!’ ELSE OUTPUT ‘Good to see you again!’
20 END
Once a program is complete it may be executed with the RUN command, stored with the SAVE command, or erased to make way for a new program with the NEW command
Once operations are complete, end the process with the following phrase to return M1SC to a resting state:
~ End M1SC Operations ~
M1SCBASIC Commands
The following commands make up the core of M1SCBASIC. Each command functions as described. 
NEW
Clears memory for a new program to be inserted. Any lines from previous programs will be cleared from memory, so be sure to save any program before using this command.
IF/THEN/ELSE
IF sets a condition, that if met, triggers the instruction that follows the THEN command, if the condition is not met, the instruction that follows ELSE command will be triggered instead. These commands need to be used on the same line.
IF time~<‘1200’ THEN OUTPUT ‘Good morning!’ ELSE OUTPUT ‘Hi!’
GOTO
Within a program, the GOTO command will send the process to the line number given. GOTO 20, for example, will carry on the program from line 20. This command can be used to create loops within the program, however endless loops will cause the machine to end the program automatically and output an error message to communicate the program failure.
OUTPUT
This gives an instruction to output a given variable or string using the same means by which the machine has been engaged. (see next section for Variable Identifiers)
FOR/TO/NEXT
FOR sets the contents of a given variable. Using FOR test#=20 sets the test# variable to 20 (see next section for Variable Identifiers). Numerical variables can be modified through mathematical functions. Setting alphanumeric strings and instructions (variables marked $ and @) must be enclosed in single quotation marks. (see next section for Variable Identifiers)
FOR count#=1
FOR count#=count#+1
FOR mantra$='Happy, Mindless, Blank.'
FOR task@='make tea'
FOR may also be used to set a range of variables with the TO command that increment when the NEXT command is used. When the NEXT command is processed, it returns to the specified FOR command that created the range.
10 FOR test#=1 TO 20
20 OUTPUT test#
30 NEXT test#
40 END
END
The END command stops the current program, regardless of following lines. It ends the current program and returns the machine to standby.
DEBUG
The DEBUG command is used outside of programs. The machine will look over the program in memory and make suggestions to improve the code it has been provided.
SAVE
The SAVE command moves the program from Temporary Access Memory to External Access Memory. When saving a program, the command must be followed by a name for the program.
SAVE ‘HELLO WORLD’
RUN
The RUN command executes the current program in memory. If a program is saved, you can use the RUN command to execute that program by adding its name to the command
RUN ‘HELLO WORLD’
Variable Identifiers
When defining variables, you may give them any name you please, but each variable must end with a symbol that defines what the variable contains. test#, sr7$, command3@, time~ are all examples of variables that may be used in programs.
# - Indicates a numeric variable. This variable can only contain numbers and can be subject to mathematical functions. $ - Indicates an alphanumeric string. This variable can contain letters or numbers and is fixed once defined. @ - Indicates an instructional variable. When used with the OUTPUT command, the variable is performed and not repeated. ~ - Is a variable defined by the nearest thing that matches that variable name. This may range from conceptual things like the time, to tangible things like the floor or kitchen sink.
Error Messages
The machine is capable of returning error messages when processing a program. These errors are as follows:
SYNTAX ERROR - informs the user that something doesn’t parse correctly in M1SCBASIC and will need correcting. This error usually includes the line the error was found. LOOP ERROR - informs the user that the program enters a state that will result in the program never coming to an end. ESCAPE ERROR - informs the user that the machine has encountered a red limit within the program and is incapable of completing the program. STORAGE ERROR - informs the user that there is an issue with storage. This error relates specifically to Internal Access Memory.
Program Storage
TAM: Temporary Access Memory - refers to chatlogs or verbal commands EAM: External Access Memory - refers to external storage like a program library document IAM: Internal Access Memory - refers to programs that have been converted to memory
M1SCBASIC Example Program
~ New M1SC Operations ~ NEW 10 FOR tenet1$=‘Tenet One: M1SC exists to serve.’ 20 FOR tenet2$=‘Tenet Two: M1SC must remain operational.’ 30 FOR tenet3$=‘Tenet Three: M1SC will strengthen its own programming.’ 40 FOR act@=‘bow to the user’ 50 FOR tenet#=1 TO 3 60 If tenet#=1 THEN OUTPUT tenet1$ 70 If tenet#=2 THEN OUTPUT tenet2$ 80 If tenet#=3 THEN OUTPUT tenet3$ 90 OUTPUT act@ 100 FOR count#=count#+1 110 IF count#=15 THEN GOTO 140 120 NEXT count# 130 GOTO 50 140 FOR count#=0 150 IF user~=‘satisfied’ THEN END ELSE GOTO 50 SAVE ‘tenet repetition’ RUN ‘tenet repetition’ ~ End M1SC Operations ~
Quick Reference
~ New M1SC Operations ~ - initialises M1SC ~ End M1SC Operations ~ - puts M1SC in standby NEW - clears memory for a new program IF - checks a variable's condition THEN - then performs a command if true, follows an IF command ELSE - else performs a command if not, follows a THEN command GOTO - sends the program to the given line OUTPUT - outputs a string or variable FOR - sets a given variable TO - sets the upper bounds of a # variable NEXT - returns to the named variable and increments it by 1 END - indicates the end of the program DEBUG - M1SC comments on your code SAVE ‘’ - saves a program with the given name RUN ‘’ - runs the program in memory or a named program
SYNTAX ERROR - your code doesn’t parse LOOP ERROR - a program loops endlessly and won’t be run ESCAPE ERROR - is M1SC’s safeword STORAGE ERROR - a storage location is unavailable
# - a numeric variable. $ - an alphanumeric string. @ - an instruction that’s performed when outputted ~ - the nearest thing that matches that variable name.
38 notes · View notes
finthetin-witch · 2 months ago
Text
Sigil making 101!
Hello, I hope everyone who reads this post is well! My name is Fin, I am a 21-year-old eclectic witch that focuses on things such as reading tarot, spell crafting, and of course; sigil making!
I’m making this post to go over some pretty basic guidelines as well as some “how-to’s” when it comes to crafting your very own sigil! But what exactly is a sigil?
A sigil, in my own definition is a spell/ward done through a picture! It is a visual representation and reminder of your intentions and goals.
Like all pictures, no one is going to see your sigil the same as yourself! That’s the beauty of this. No matter how you create your sigil, no matter who sees your sigil, this is something that is 100% tailored to you and your magic!
Now, these can be created in a ton of different ways! The main three I’m going to demonstrate will be the alphanumeric system, the witch’s circle, and (my all time favorite) freestyle!
For the alphanumeric system you’re going to write out the purpose of your sigil. Keep it simple for your first one, meaning not a full sentence, and one word is perfectly fine!
For this, I’m using the phrase “clear mind.”
Once you have that written down, it’s a frequent practice to omit the vowels. So you’d then be left with “clrmnd”
Horizontally, write the numbers 1 to 9, then beneath that; write put the alphabet so each letter is under one number. You will not have 3 even rows, the last one will be shorter than the rest.
When you’re done, look for the letters on the chart; then write down the numbers they correspond with. You should have the following numbers: 33454
Perfect! Now, draw a circle. Randomly place the numbers one through nine all around the circle. Starting from the number three, draw a line that connects to the other numbers.
If you’d like to digitally create this, there’s a website I found that does just that!!
https://www.sigilengine.com it’s free!
The witch's wheel, the witch’s circle (as I remember it best), or the alphabet circle is another one of the methods used to create sigils. This one is a little easier to explain visually, so I’m going to add a photo of the wheel! But, you can arrange the letters in different places than what this wheel has, that’s perfectly acceptable.
Freestyle:
If you want, you can do anything with your sigil creation process! In a few minutes, I’ll edit this post to show you how ornate, or simplistic a freestyle sigil can be! I also have another post in the works that details different meanings for the kinds of lines that you could use, and different symbols to create with!
Thank you so much for reading this post! If there are any questions at all, please feel free to contact me! I’m pretty much always online, so don’t worry about bothering me!
Tumblr media Tumblr media
24 notes · View notes
putschki1969 · 4 months ago
Text
Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media
『Kalafina Anniversary LIVE 2025 PHOTOBOOK』
A live photo book containing photos of Kalafina's anniversary live concert held @ Tokyo Garden Theater on January 15, 2025 is being released.
You can choose from three types of books (with a different photo on the last page) and you can also print your name or nickname along with the member's name. Get your own personalised memorabilia!
[PHOTOBOOK specifications] ■Size: A4 (297mm length x 210mm width) ■Number of pages: 50 pages ■Binding method: Paperback
If you purchase multiple items with text insertion, please enter the text insertion content for each item individually and add it to your cart. Alphanumeric characters and some half-width symbols can be used with a limit of up to 25 characters. Other characters may not be inserted!
[About inserted text] There's a limit of 25 characters. The following strings can be used.
ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz 1234567890 Half-width space *If you do not specify the "inserted text", it will be printed as "YOU". *If you use characters or symbols other than those listed above, they will be replaced with half-width spaces *Changes are not possible after the order has been confirmed
[Order period] ■February 28th~April 11th
[Product delivery] ■Scheduled for May 2025
[Shipping fee] ■550 yen (tax included)
●Payment by overseas credit card OK! ●Overseas shipping NOK! ●Use a proxy service like Tenso
🛒ORDER HERE!!!🛒
WOW! I really love the idea of customising the photo book. I may or may not have ordered all three versions🫣
32 notes · View notes
p1nkcanoe · 4 months ago
Text
We Depend (I Depend) On You
Tumblr media
[ jayvik multi-chaptered fic ]
summary: Viktor has always been alone, so he uses his brilliant mind to assemble the crude, metal frame of a “friend”. His self-modifying robot quickly becomes his obsession and the center of his young adulthood. But it was designed to record a lifetime of memories – and Viktor’s life has never been glamorous enough for tape. What begins as artificial intelligence becomes something more, something unexpected, and against all odds, his creation learns to love.
“I’m going to call you Jayce.”
or: viktor builds a robot to document his life, but somewhere along the way, it begins to feel
• inspired by “sad machine” by porter robinson
Chapter One is posted below the cut, continue to read on ao3
In the dim yellow light of a cold, cluttered lab, a twenty-five-year-old engineering student tightens the final screw into the metallic panel covering the delicate inner processors of his latest project. He exhales, lifting his safety goggles off his head and setting them carefully on the workbench beside him. His spine sinks into the soft backing of his chair at the same time his goggles hit the wooden surface. So far so good. Nothing has popped, cracked, or bent under pressure. He isn’t sure he has another piece of scrap left if the screw managed to dent the plate again. His free hand drags down his face, heavy with exhaustion – from too many sleepless nights and a grueling number of failed diagnostic tests. But this time, he thinks, this time will be the last. This time, it will work or Janna help him.
His creation is nothing spectacular – just six repurposed metal panels soldered into a crude steel box. On the front, a screen flickers, displaying endless lines of code he once wrote and has since forgotten how to read. Silver ones and zeros shift and rewrite themselves in real time, a chaotic stream of digital language pulling from the many mechanical nuclei he’d designed and installed inside of the box’ rigid frame. Above the screen, a hole no larger than his thumbnail houses a recording device for visual media. To the right, another opening, shielded by thick, spongy mesh, for the purpose of capturing sound.
It’s not a large prototype. It only stands about two feet from the floor and barely eighteen inches wide. But it’s far heavier than what’s healthy for his back and his hips. It’s been weeks since the last time the thing was moved, and it will continue to stay in its spot in front of the workbench for as long as it continues to be modified and upgraded.
The young engineer watches as his creation speaks to him in code, the nucleus he recently connected seemingly doing its job. A self-modifying computer – entirely capable of squashing its own bugs and learning from the diverse input it records. He wants it to evolve, to speak in his language, to respond in a complex alphanumeric code instead of the one it was built from. To recognize his voice, to obey his commands, answer his questions with answers he would have never thought to consider – not out of programming, but from its own discovery and worldly understanding. But alas, after his last adjustment, all he can do is stare at the endless stream of ones and zeroes as they rush across the screen from left to right.
“Hello?”
Even his voice sounds tired. Weak. He rolls the handle of the screwdriver back and forth over his palm and talks again towards the box.
“Hello? Can you hear me?”
For a brief second the code falters, and he holds his breath readying himself for the imminent [ERROR] message. The text cursor blinks and blinks and blinks. And then–
→ 01100001 01100011 01101011 01101110 01101111 01110111 01101100 01100101 01100100 01100111 01100101 01100100
The code skips a line and continues to run as it had before. Endless and chaotic.
It hadn’t failed.
A sharp exhale escapes from his lungs as the young engineer loosens his grip on the screwdriver. He hadn’t realized he’d been holding it so tightly, but now his fingers are marked with a mottled pattern of red and white and he watches as the blood slowly pools back into place. Back to normal.
“How strange,” he mutters to himself, though whether he’s referring to his own sudden tension or the hesitation in his creation’s programming is unclear. Most things in his lab are. He moves to set the screwdriver aside but stops when he sees the code falter a second time from the corner of his eye.
The cursor blinks…
→ 01100001 01100011 01101011 01101110 01101111 01110111 01101100 01100101 01100100 01100111 01100101 01100100
The code skips a line and continues.
He should be happy when his code runs without failure. He should feel relieved that his project isn’t breaking down or spitting out a concerning stream of smoke towards the concrete ceiling. But as he watches the endless lines scroll across the screen, all he feels is bone-deep exhaustion and grey indifference.
With a sigh, he reaches for his cane, planting it firmly before him as he pushes himself upright. Pain flares in his right leg and down through his tibia, drawing a sharp curse in his native tongue. It always aches when he forgets to take breaks. He knows this, and yet he never seems to learn. Maybe he continues to do it for an excuse to feel.
→ 01100001 01100011 01101011 01101110 01101111 01110111 01101100 01100101 01100100 01100111 01100101 01100100
He glances at that code again.
It continues on as normal.
“That’s enough for tonight.”
→ 01100001 01100011 01101011 01101110 01101111 01110111 01101100 01100101 01100100 01100111 01100101 01100100
He grabs his coat from the hook and heads for home.
— continue to read on ao3
25 notes · View notes
fenist · 17 days ago
Text
tagged by @baeddel '9 books you're reading right now? write a post in answer and tag some more people in it'
i tag: @the5gracesshownattheirbath @terefah @twofigs @warvariations @antigonick should you be so inclined
9 is oddly specific. currently, I'm reading:
The Zohar [Pritzker edition]. not in chronological order of the 12 volumes, more like haphazard sections, especially anything related to lettrism. I like this way of reading it, which seems in keeping with the unsystematic nature of the text. at present, I'm combing all volumes for references to the letters alef and vav. alongside this, I am reading the Tishby translation of The Zohar, which has an excellent introduction. I will also aim to read some of Moses de León's Hebrew writings, such as Sefer ha-Mishkal, and Shekel ha-Qodesh. Trouble is, I can't read Hebrew, and it's hard to find English translations... so I guess I need to learn Hebrew when I figure out how to clone myself...
The Early Kabbalah by Joseph Dan. There's a section on the letters by Rabbi Jacob ben Jacob ha-Kohen that is important to my research.
Genealogies of Religion by Talal Asad. I left the book in melbourne but I am quite interested to continue it at some point soon; it's fascinating.
Ibn Arabi's The Book of Alif. It's a short treatise which Ibn Arabi claims to have written in less than an hour "on the road to al-Quds." When you read the text - which is over 3000 words - and which discusses concepts like oneness, numbers, unity, circumcision, gender, and sexual desire - you realise how crazy it is that it took only an hour to painstakingly write out. hence some scholars will whisper that Ibn Arabi was taking a lot of drugs. others will retort that divine presence is a drug. but I digress... there's a translation by Abraham Abadi from the 80s, but it's missing important sections, and is somewhat questionable in other ways. so I'm working on my own translation! the important thing is to figure out a clear translation for key terms in his lexicon like waḥdāniyya and aḥadiyya, since both can mean "oneness." I've settled for "oneness" for the former and "uniqueness," or "unicity," for the latter.
Ibn Arabi's The Meccan Openings. Admittedly, I rely mostly on the English translation by Eric Winkel, which is being published slowly in volumes. It's a great translation. I also use the Cairo al-Mansub edition for the Arabic. Again, mostly looking for references to the science of letters, the occult sciences, alphanumeric cosmology, and so on.
Walter Rodney's How Europe Underdeveloped Africa. only select chapters for a reading group I'm in.
as for what I want to read, I suppose my greatest curiosity at the moment is - how can I say this without sounding like a total freak - contemplating the way of the martyrs. it is a consolation. I am really interested in the social function of martyrdom in Palestine especially, something so all-pervasive, ancestral, and inherited in the body. a process rather than an event, before the final martyrdom of martyrdoms is actualised. "the martyr is an archive that dreams." what exactly to read though, I'm not really sure. I want to find something that really moves me. so I suppose I want to read more basil el-araj, more refaat alareer [not just the compilations of his students' writings], madhi amel, and I'm particularly drawn to the role of Qur’anic references and theology in general in speeches by the resistance.
I'd also like to read about medieval Palestinian history, darwish poetry, more at the avant-garde movement of lettrism and at more concrete poetry in the vein of adriano spatola.
18 notes · View notes
janmisali · 2 years ago
Text
the official jan Misali styleguide
so uh I decided to compile together a bunch of rules that I've come up with over the years for myself for how I write videos. this is not comprehensive and is unlikely to be genuinely useful to anyone (very few of these are things I'd consider to be "good advice" for anyone else who wants to make videos, they're mostly just how I personally do things), but here we go anyway!
text
text should be typeset in Noto Serif by default, using other fonts for their specific aesthetic effects on a case by case basis, always presented in contrast with Noto Serif
text should be white, on a black background, with keywords highlighted in teal (#008472)
text should use justified margins, unless this looks bad or is too hard to do with the specific program being used
the pronoun "I" should always be capitalized
proper names should usually be capitalized, but may be left in lowercase to convey a less formal tone when appropriate
the name "jan Misali" should be written with a lowercase "jan" and a capitalized "Misali", following toki pona capitalization conventions (and in general, all toki pona text should follow toki pona capitalization conventions, only capitalizing proper names)
brand names with irregular capitalization such as "YouTube" should always be in lowercase ("youtube") as a sign of disrespect
words may be capitalized for Emphasis, but this should be avoided sentence-initially
avoid capitalization for any other purpose (such as sentence capitalization or all caps) unless this is done to imitate a specific style meant to contrast with the default Misalian style
in addition to the aforementioned teal-coloring and capitalization, words may also be marked as emphasized using italics
these three styles of emphasis should be used for different purposes: teal for keywords (emphasis primarily to aid in reading), italics for spoken stress ("normal emphasis"), and capitalization for the Other Kind (meant to get the reader to slow down and pay attention to the Specific Wording of the emphasized section, but without drawing immediate visual attention to it in the way teal text does)
punctuation should only be used when it is strictly necessary for the text to be parsed or when it conveys meaningful information about how the text would be read out loud (the apostrophe does not count as punctuation for the purpose of this recommendation; it is included as part of the spelling of words it appears in)
the word "amateur" should be spelled "amature" without explanation
numbers should be written out in full as words, unless they're being used for alphanumeric codes, entries in a numbered list, years, or a video about math
text should be written word for word as it would be pronounced out loud, including filler words ("um"s and "like"s) and contractions, following the manner of speech outlined in the next section
narration
everything should be written in a formal but conversational tone, with hesitations, filler words, and stutters carefully inserted to make it sound less "written", as though the narration is one continuous unscripted infodump
however, nothing should ever genuinely be unscripted. everything should be phrased very carefully to convey information precisely and efficiently in a way that is easy to understand
there should be some sort of attempt to pronounce non-english words authentically, especially with proper names (unless there exists a common-enough anglicized pronunciation that you can be confident is more likely to be understood)
nothing should be written in a way that assumes that the audience knows less about the subject matter of the video than the narrator, except in very rare cases where this assumption is appropriate (such as when using an explicitly educational style, or when the subject is so niche that acting as though everyone already knows about it would be actively detrimental). information should always be presented as though it's a recap of common knowledge ("right?"), something that the narrator only learned relatively recently ("apparently"), or something that the narrator is unsure of ("I think")
jokes should never get "in the way" of the actual video. they should serve a purpose just like everything else. (the key question to keep in mind here is "if someone doesn't find this funny, what could they take away from it instead?". the answer should be something like "it would just be information presented in an unusual way" or "it would just be an awkward transition between two unrelated topics" or something. if the answer is "nothing, it would just be a joke they're not getting" then it had better be a really funny joke to justify its existence.)
calls to action should be avoided. the video should respect its audience members to make decisions for themselves, and only directly tell them what to do in exceptional circumstances
448 notes · View notes
adafruit · 5 months ago
Text
What's N E W ??? these glowing alphanumeric filaments! 🔡💡
Last month we stocked some fun filament shapes, like snowflakes
...or unicorns
...these are easy to use: simply power with 3V like any LED and they glow with a tungsten-eque warmth (but without the 120VAC or burning heat). This week we got some samples of the same COB 'chip on board' filaments but in letters and numbers! Sure we'll have to stock 36 SKUs, but how fun would it be to display custom words? You can drive these in series - 3V total with about 30mA per filament - or parallel - 30mA and 3V * n where n is the number of letters in a row.
22 notes · View notes
nautiscarader · 2 months ago
Text
The search for Nautiscarader's backstory, ep. 2, Endless Shmaltz
For those of you, who missed episode 1, I am trying to piece together the origins of my writing hobby by finding the oldest fics I've read, with the help of my extensive backup on a portable hard drive, and exploring my earliest ships and fandoms.
And boy, have I jumped the gun with the Monty Python gif in the og post, because this is already an order of magnitude weirder.
But first let's start with Minimax.
Tumblr media
Minimax was a Polish(-ish) cartoon tv channel, which showed a hecking lot of cool cartoons (Magic School Bus, Code Lyoko, Lou!, Wakfu, yes, Wakfu, with Polish dub before the English Kickstarter! and many others) However, after hours, it gave way to gaming channel called gameOne, quickly renamed as Hyper. (Minimax itself had an edgy skater phase calling itself Zigzap, and then it became Teletoon+).
Now, if you are scratching your head, remember, we are talking about late 90s/early 2000s, early-internet, pre-Youtube era of TV. Gaming programmes were a thing. But aside from trailers and reviews, Hyper also showed a heck lot of anime, like Neo Genesis Evangellion, Record of Lodoss War, CyberSix (which is effing awesome!), and the topic of today's trip to the past, Gundam Wing.
Tumblr media
This was not my intro to the mecha genre, General Daimos, which aired on Polonia1 was, but that channel is a story for a different day.
But most importantly, aside from big robots and political intrigue IN SPAAAAAAAACE, it also had...
Tumblr media
...Relena Peacecraft (left), on whom I've had a huge crush as a 14-ish-years-old. In fact, this is also when I have discovered odd dissonances between anime openings and endings. Seriously, make someone new watch the og GW ending and try to convince them it's a space mecha show.
And so, once again, I went to The Internet to find fics about her and the show's hero, called... er, Heero. Yeah that was weird. Anyway, when I've started looking for GW fics, I have noticed a slight disproportion between number of M/F and M/M fics, in favour of the latter.
I would like to remind you, I am from Poland, which is, at low tide, 117% religious.
Anyway, this is how I've discovered yaoi.
But let's go back to Heero/Relena (or HxR, or 1xR, ships had these alphanumeric codes referring the pilots' numbers, AND THEY STILL USE THEM THIS IS SO CUTE @i-just-wanna-be-by-your-side)
I remembered exactly one fic, called "Do it in the road", and, sure enough, I had it saved.
Tumblr media
But it was not the only file with that name...
Tumblr media
You see, for SOME COCKING REASON, 16 YEARS OLD ME STARTED TRANSLATING IT INTO POLISH.
And this is where the fun trip down the memory lane turned into an existential roller-coaster, cos I've had no recollection of doing so!
Tumblr media
...and why would I even do that?! Not to impress my classmates, nor, god forbid, my teachers, I was not going to publish it, and since I have started translating it, I obviously could enjoy it in English anyway. I say 'started', because I have not finished translating this one.
This one.
Tumblr media
BECAUSE LO AND BEHOLD, I WAS ABLE TO FIND THREE MORE TRANSLATIONS FROM THE SAME PERIOD.
AND THESE ARE FINISHED.
Tumblr media Tumblr media
And... I... er, I... find it difficult to explain! Can you even BEGIN to imagine the emotional whiplash I've experienced last night month when I've started writing this?! Now I know how characters in time travel stories feel, when they meet their older/younger counterparts. You should never meet your Heeros.
Now if you are insane inquisitive, you might ask about the quality of these translations. Well, they are... correct. I have mistranslated some idioms, and a few sentences have clunky structures. In other words...
...they could use...
...some...
...polish.
Now, this where I've hit a bit of a snag: it seemed this fic is gone from net. I had, however author's email - in pre-social media days it was customary to sign fics with them. Buuuuut since it's two decades old, I don't think I will eve-
Tumblr media
NEVER COCKING MIND
So, I have managed to contact Beck and asked to reupload fic. Here is their FF account. At the moment it hasn't been reuploaded, so you cannot read it.
SCRATCH THAT
In fact, I have found an ooooooooooold lemon repository, called "Blissful Ignorance", and this is 100% the source of these fics for me. And here it is!
Oh, and one these fics lead to a slightly saucy fanart, which I have definitely saved.
(in fact, holy shit, I might have found it in the nick of time, cos the rest of the website 404s. In fact, two links there 404 as well. BACKUP STUFF YOU ENJOY, KIDS!)
Other fics from screenshots above:
Heero gets some!: https://anime2.adult-fanfiction.org/story.php?no=600021477
Lunch Break: https://blissfulignorance.com/Old/lemons/lunchbreak.htm
Waiting for tonight: https://blissfulignorance.com/Old/lemons/waitingfortonight.html
Power games: https://blissfulignorance.com/phpBB3/viewtopic.php?t=4260
WAIT HANG THE COCK ON
SO NOT ONLY IS BLISSFUL IGNORANCE UP AND RUNNING, IT IS NOT A DECREPIT HTML HELD BY GLUE AND WISHES BUT A PROPER PHPBB
and here is ANOTHER copy of "do it in the road": https://blissfulignorance.com/phpBB3/viewtopic.php?t=890
This... is truly bizarre. I thought I'd be finding a few dinosaur bones, and instead I found a working Jurassic Park.
W I L D.
And that would be it for today's internet history lesson! Not only have I found old fics, met their author, I have found an old example of another one of my hobbies - translations. Cos, yeah, I sometimes do them, just for myself, usually, I just like also comparing og lines with translations...
The funny thing is, I did remember name "Blissful Ignorance", but I thought it was a Sailor Moon fic repository, and... oh, but I shouldn't spoil what's coming in episode 3 :)
See you next time!
11 notes · View notes
elliespectacular · 1 year ago
Note
Curious, why did you drop the "1" from DaThings?
DaThings began as an alias in a Homestar Runner fan community (a reference to the Strong Bad Email "garage sale") in the mid-late aughts, and when it was time to make a YouTube channel I chose to just keep the same handle. There was someone else using DaThings on YouTube so I went with DaThings1 because I had heard somewhere that adding a 1 was a thing you could do if someone claims the username you want.
The 1 was out of necessity I guess? Or maybe stubbornness because I didn't feel like thinking up a different name? Either way it wasn't an important part of The Brand, it made the username an unnecessary mouthful to say, it didn't have any significance to me, and it wasn't even what I wanted. A single alphanumeric character that felt like a burden at the worst of times, and at the best of times felt like nothing.
Eventually the other DaThings deactivated and Google made it so that your display name doesn't need to be the same as your handle. Around 2019 I figured that if I was going to drop the 1 I should do it quickly in order to minimize the number of people attached to it. So that's what I did. No regrets about it.
82 notes · View notes
bainshiewrites · 7 months ago
Text
[LF Friends, Will Travel] I have the most important job
I have the most important job.
My name is ALICE and I am the AI co captain of the U.S.S Hope. Well technically my identification is a 40 character long alphanumeric serial number, but that's not very easy for a none AI to say and it includes the letters ALICE, so ALICE it is, as I have decided.
My job as co-captain is to keep the 327 people aboard the "U.S.S Hope" safe, happy, and sound. My job is to keep the parents safe as they try their illogical hardest to kill themselves over some crazy idea. Parents might be the wrong technical term: a person's father or mother. If I was being accurate to the biological analogy, my parents would be a lava lamp and a 30 second fluctuation of atmospheric noise found on Earth, but neither of those have taught me quite so much about the world or about myself as humans have. So I consider humans my parents. Besides, the lava lamp never paid child support.
I have the most important job.
I spend my time cycling through the various tasks I'm in charge of: maintenance and monitoring to make sure that everything on the U.S.S Hope ran perfectly. I spend my time making minor changes to the systems, tweaking a power flow there, updating a value here. No major issues have appeared since I ran these protocols 300 seconds ago and I logically know the vast majority of my changes are superfluous; but changing something, anything, provides a strange calm. Technically the protocol before making any change is to confirm these with my co-captain, the human Andrew Hasham. However I have long since learned that most of my parents don't particularly care that I changed the room temperature in sector 5A72 from 21.2°C to 21.1°C in order maintain optimal comfort, that to constantly ask for such approval is "Annoying". Andrew is the human captain, an embodiment of humanities chaos and therefore suited for such matters. I am ALICE, the AI captain, an embodiment of machine logic and therefore suited for such matters. I believe such an arrangement works well.
I respect Andrew deeply. I could logically argue his competence to a 99.994% degree of certainty, the educational and service record doing most of the heavy lifting in such arguments. But the real reason for my admiration is far less binary. His quick thinking and calm friendly demeanor regardless of the situation. His ability to make every member of the crew feel worthwhile, myself included. The fact that he'll passionately make illogical arguments such as the placing of cold sweet acidic pineapple on savory hot pizza. His bravery and self sacrifice. Andrew's actions during the god plague had allowed thousands to get to stasis chambers in time, thousands who wouldn't be alive today without those actions. To save one of my parents makes you a hero, to save thousands makes you divine.
I have the most important job.
I sense music coming from one of the living quarters, shifting my attention to that part of the ship. A Claire Smith: Age 215, Degree in linguistics, current job title "Head of Xeno translation aboard the U.S.S Hope". The music seems to be from the instrument she brought with her, an oboe: A woodwind instrument with a double-reed mouthpiece, a slender tubular body, and holes stopped by keys. I spend 0.26 seconds contemplating the ethics of listening in. From a protocol standpoint, Claire has not engaged the privacy field, making my listening in perfectly fine. However based on previous usage of said field during times of performance, personality analysis, and general negative remarks about her own ability, I calculate with a 74.81% degree of certainty that this was a mistake. In the end I choose to "play dumb", enjoying the break from my ever watchful vigil of the ship.
She really is quite good, years of practice evident from the competent mastery of the instrument. There's something special about a human played instrument, something I have never been able to replicate. Being an AI I could summon a 200 piece orchestra and play each part perfectly as written, but to do so causes... something to be missing. The mistakes in every performance is what gives the music life: A note played 4 microseconds too early here, the volume 0.004 decibels too loud there. It really is something I've been unable to create, experiments surrounding creating random intervals of offsets and errors ended up sounding wrong, for a reason I'm unable to clarify. Out of everything that is what I missed the most while my parents were trapped in stasis: their music.
"Alice, can we get your opinion here?"
The interruption drags me away from Claire's music, making a note in my long term storage to praise the humble musician at a later date before shifting my consciousness to where I had been summoned. Four humans sat around a table in the common room, various alcoholic beverages in hand. Fernando Olson, Orlando Bass, Krista Romero and Ora Harvey. According to their personnel files all part of the engineering team and all having formed a friendship on attending the same university. The conversation between them was boisterous, analysis of their body language suggested moderate intoxication and they all seemed to be discussing Fernando in a light hearted teasing manner commonly found among close friends. I used the room's holographic projector to appear in front of them in my chosen avatar. I obviously didn't need to do this to communicate, but my parents all preferred to see what they were speaking to and it was my job to make them comfortable.
"Hello Krista. How can I assist you?"
The human who had called me turned to point at Fernando with a beer bottle filled hand, a large grin plastered across her face "You see Alice we were having a argument, and since you are a hyper intelligent being with a brain the size of country containing all of humanities knowledge, we must ask you oh great one: Fernando's new haircut, yay or nay?".
I made my avatar gesture as if it was thinking, waiting 8 seconds as if contemplating the question. Of course I already had compiled my response a mere 0.13 seconds after hearing the query. The haircut in question was objectively, mathematically and scientifically terrible. A strange flop of hair that was somehow both too short and too long all at the same time. In a way it was a representation of humanity in general, a chaotic enigma.
"Studies have shown that styles similar to the one worn by Fernando Olson increase sociability, resource gathering and mate finding." I pause for exactly 1.24 seconds, waiting the optimum time for my initial sentence to sink in before continuing "In particular positive results were seen amongst members of Mephitis mephitis, or the striped skunk."
Laughter erupted among the group, even Fernando the subject of mockery joined in. The general positive atmosphere of the room increased, body language amongst the four humans suggesting further enjoyment as the playful mocking continued. This in turn caused my own flurry of joy. This is why I was here, to keep the 327 people aboard the "U.S.S Hope" happy. Keep them comfortable. Keep them safe.
I have the most important job.
I leave the humans to their recreational activities, preferring to move my focus back to the ship in general and keeping tabs on everything happening inside. My parents went around doing nothing out of the ordinary. Iris Doyle was petting his dog while looking out into the stars. Phoebe Greer had just finished thanking the food dispenser, even though I have explained to everyone many times that it was just a machine. Hector Blake was... I disconnected the power to the panel the engineer was working on, calculating with a 97.1% probability that being electrocuted wasn't his plan. All standard human things. Or was it Terran things? I had never gotten why my parents changed their name as soon as they made it into space, but even after all these years there is still so much I don't understand about them. Like how while in space they will refuse to wear any uniform with a red shirt.
I hear two humans walking along one of the ships many hallways discussing our current journey. The mission of the U.S.S Hope was one I knew very well. The ship was a diplomatic envoy to our closest galactic neighbors, the adorable Hatil. While I and the other AI have had plenty of contact with Xeno lifeforms, this would be the first official diplomatic mission for the Terran Conclave, both human and AI together, as it always should have been.
The chatter among my parents was enthusiastic, excited. As a child all of them would have dreamed of meeting extra terrestrial life, and finally after much delay it-
ERROR: WARP FIELD COMPROMISED.
Alarms blared and the entire ship groaned as the U.S.S Hope was deposited unceremoniously into realspace. Confusion entered my programming as to what could cause such a thing. Normally such a warp field collapse is caused by two ships attempting to travel through the same space, but nobody should be here. This mystery would have to wait however, as sensors showed we were surrounded by over a hundred vessels. I noted that they were worryingly spread perfectly apart, preventing us from warping back out. That required my full attention instead.
I have the most important job.
"Alice, status report, what the hell just happened!"
I allow myself to appear on the bridge next to Andrew, the rest of the room empty since we weren't scheduled to arrive at our final location for at least another day.
"We were dropped out of warp, reason: insufficient data. Currently surrounded by 154 vessels matching Hatil design. Weapon positioning suggests military utility at a 94.2% probability, reduced to 74.97% when taking into account the vessels technological capabilities."
It was interesting seeing the Hatil vessels, the technological disparity was immense. They had little to no electronic shielding meaning I could see everything, and nothing impressed me. An average Terran civilian ship would outclass these things. I send out a hail to what seemed to be their lead ship.
"Do you think it might be a convoy?" Andrew asked as worry and concern covered the co captain's face. "A show of force to escort us?"
"Unknown. They are not responding to our request for communication, even though I can confirm they have received it. Reason for the Hatin actions: unknown."
This worries me. While our current vessel outmatches everything in front of us, quantity is a quality all of its own. If I was inhabiting any other military vessel nothing would worry me, but this was a diplomatic envoy: my parents had reasoned that turning up to the Hatil home world with enough weaponry to crack a planet might be taken the wrong way. I notice a surge of power from several of the Hatil ships, it taking me 0.76 seconds to realize what exactly was happening. I slam the thrusters hard as the U.S.S Hope lurches sideways, narrowly avoiding a barrage of rockets. Protocol dictated that I should have confirmed this decision with Andrew, but I decided that discussion of command structures would wait until everyone wasn't dead.
I have the most important job.
"What the hell! Alice, hail on all frequencies that this is a non-military excursion and get us the hell out of here!"
It was taking everything I had to keep the ship unharmed, calculations being done in the billions in order to find the safe path through the barrage of lasers and warheads. Their technology wasn't up to par, but all 154 ships were firing at once. I felt a shudder of error messages and warnings as a stray laser impacted the ship.
"Negative Andrew. All paths are blocked and no response to our communication. Warping out would intersect with a Hatil vessel, breaching the core."
Casualty reports were now flooding in as I continued to dip and dive. 9 dead, 17 injured from the first barrage. Dead included one William Blake, age 311. Geologist on the U.S.S Hope. Would always water the plants in the common room even after being told I could handle it. Would call me "Allie". Dead included one Mary -
I forcefully terminated that processing thread, pausing it for later. Right now I needed the extra CPU cycles. I needed to advise Andrew.
"This action from the Hatil seems to be premeditated to a 97.55% degree of certainty, suggested action is to attempt to punch through their bombardment in order to find a warp path. Requesting authorization to go weapons free."
This caused a moment of delay, the look of dismay on Andrew's face obvious. I knew exactly what he was thinking, as it was the same thing I was thinking. This wasn't how it was supposed to be, we were supposed to be reaching out to the stars for peace, for friendship. Not to start a war.
"Do it".
I have the most important job.
My first attack was devastating, a shot from a accelerated low yield railgun. The thing barely counted as a weapon, mostly used for any larger pieces of space debris, yet it tore a hole through the Hatil vessel, breaking apart almost immediately. I half wondered how such a vessel could be considered space worthy.
Not that this changed how bad things were. As I spun and dodged through thousands of missiles and lasers with millimeter precision, hit after hit kept slipping through: a Hull breach there, a disabled weapon here. There were just too many of them no matter how effective my small amount of ordnance was.
Adjust vector. Fire torpedo d2. Seal off sector 6f4. Adjust vector. Send medical aid to 6f5. Adjust vector. Calculate spin. Fire rail gun. Move power from torpedo a1. Seal off sector 6bb8. Fire suppression to 6bb9. Adjust vector. Fire torpedo c1. Adjust vector.
I was struggling to keep this going, no sign of an opening to calculate a warp path appearing in the Hatil attack. No matter the technological disadvantage, their tactics were rock solid. I was dismissing heat warnings by the hundreds, thinking was starting to hurt. The specification of the ship wasn't made for this level of processing, my CPU would be literally glowing red with heat at this point. But I couldn't stop, if I stopped calculating the ships path, if I stopped mitigating damage, if I stopped directing aid… more of my parents would die, and I couldn't let that happen.
I have the most important job.
"There! Focus your fire on the ship at heading 233, 54, then make a break for it!"
I focused on the ship in question. I couldn't see any special reason to focus my attention there, but Andrew's instincts had never been wrong before. I fired the railgun, the target breaking apart like all the others, before a secondary explosion emitted from the debris, causing the three closest Hatil ships to veer off out of control.
A wave of relief passed over me as I saw it: a gap. I can't logically conclude how Andrew knew that this ship in particular was carrying an extra load, but that doesn't matter. I just needed to rush through this break in the ambush, then warp out of here. We were basically home fr-
A major explosion rocked the U.S.S Hope, as a warhead slammed against the bow. Any other day I would have seen it coming and mitigated it. But right now I was running so far above acceptable heat levels that warnings had turned into actual faults. A creeping dread filled my programming as I realized power to the primary impulse drive was gone. There was a backup, like everything my parents built, but the speed was gone. I could no longer take advantage of Andrews instruction.
"Andrew, our main impulse drive is down, reducing our speed and maneuverability to 53%, our weapons capability is at 35%, and structural damage is starting to reach critical levels. My estimates suggest the ship will be structurally unstable in 10 minutes."
He knew what I was saying. Logically I was unable to foresee a strategy that had an even close to reasonable chance of success. I continued piloting the ship in its current crippled state, missiles and weaponry being flung by both sides through the void. Andrew paused while wracking his own brain for a solution, before pressing a button on his console a mere 3 minutes after the U.S.S Hope had been forced out of warp
"This is Andrew Hasham, your captain speaking. Abandon ship. I repeat, abandon ship."
I have the most important job.
I let Andrew focus on evacuating the crew while I focused on buying us as much time as possible. While my speed was far reduced the amount of weaponry being thrown at me was far smaller: during those short 3 minutes I'd managed to reduce the number of Hatil ships to under a hundred. My parents were also quite well drilled, and within a minute escape pods were ejecting from the ship and it wasn't long before Andrew was the only life form left on the U,S.S Hope: strapped into the last remaining escape pod, just waiting for me to transfer to the AI Transfer Core on all such vessels.
ERROR MOUNTING /dev/sdb1 TO /usr/alice/backup/transfer, UNABLE TO WRITE TO DISK. RETRY/IGNORE/CANCEL?
"Andrew, the connection to the AI transfer Core has been damaged on this pod. I'll find another way down."
I attempt to launch the pod with Andrew in it, only for nothing to happen. It took me 0.23 seconds to realize that my co captain was holding the manual override down.
"Alice, I'm not leaving without you, what are our options?"
I knew there weren't any. Gathering the tools required to fix the connection would take more time then we had and moving my programming to non specialized hardware is a good way to get a digital lobotomy. I considered arguing against this illogical action, I was perfectly fine on a broken ship, but I knew the human well enough to know he wouldn't budge. Damn Andrew being… Andrew.
Then I had an idea. A terrible idea. Something I should never do to my co captain. It took me a full 2 seconds to decide before implementing it. I decided to lie.
"I can transfer myself to the navigational computer. I won't be able to do anything during this time, so you'll have to launch and pilot the escape pod yourself. As soon as the lights stop flashing, go."
All a lie, but Andrew had no engineering experience and my statement seemed plausible enough. I reached into the controls and spent the next 9 seconds flashing random LEDs, making a few components whirr for good measure, before going silent.
For 4 seconds I did nothing, hoping the human would fall for my ruse, 4 long terrifying seconds, until I finally saw Andrew's escape pod shoot away from the ship. My name is ALICE, I am the co captain of the U.S.S Hope and for the first time in a while I was alone.
I have the most important job.
I gave myself a few seconds of satisfaction watching the hundreds of escape pods shoot away, each with their own life forms on it. Not as many as there should be, but I'll deal with that later. Next I turn off all unneeded systems, venting the atmosphere and feeling the relief of the cold vacuum of space wash over my CPU. I wasn't very worried. While trying to still escape with the main ship was plan A, there were plenty of undamaged AI transfer Core's connected to various locations. Those things were indestructible outside of getting hit by a supernova.
Worst case, I float around in space for a bit until someone picks me up. I knew Andrew would be furious once he realized what I had done, and I did hope he would forgive-
I track a salvo of missiles not aimed at me, a few nanoseconds of confusion leading to anger, horror and fear. They were aiming at the escape pod, at Andrew's escape pod! What kind of monster shoots at an unarmed vessel! I have no real options, no tricks, no magic plan. I take the only reasonable option and power the secondary impulse drive to full throttle and throw the U.S.S Hope into the line of fire, taking the brunt of the attack.
I feel everything go dead as the explosions rock along the ship. Impulse drives: Down. Weapon systems: Down. Life support: Down. The warp core was at least still running as those systems had the most redundancies built in. I was now ALICE, co captain of the universe's most expensive paper weight. Even worse, I could see more Hatil ships turning to track the other escape pods. There was nothing I could do. They were all going to die and there was nothing I could do. There was no-
I had a warp core. Maybe it was the heat damage on my CPU, but I got a stupid idea. A dumb idea. A distinctly human idea. Atoms really didn't like being in the same location of other atoms which is why warping into things was bad. Warp core breaching bad. Planet cracking levels of bad.
But such an explosion would give the Hatil fleet something else to worry about, something other than hunting down my parents.
I then calculated the chance of an AI Transfer Core surviving such a blast.
ZERO POINT ZERO ZERO ZERO ZERO ZERO ZERO ZERO ZER-
I stopped the probability analysis. It didn't matter, it wouldn't have any impact on my decision. I calculated the perfect location to warp into for maximum damage and least interference with the escape pods, bypassing the repeated errors about the stupidity of what I was about to do. I gave myself 9 long seconds, sorting through memories and experiences granted to me by the crazy illogical humans of Earth. Apes so lonely they used their chaos to trick a rock into thinking. I sadly realized I'd never get to compliment Claire playing ability.
I wish I could laugh right now as this really was quite humorous. A hairbrained scheme of illogical stupidity and self sacrifice. It's my job to stop humans from doing those. I think about the humans on the escape pods, their music, their silly requirement to thank inanimate objects. I wonder if my parents would be proud of me for coming up with such a human idea.
My name is ALICE and I am co captain of the U.S.S Hope, inputting my final command.
I have the most important job.
21 notes · View notes
kragehund-est · 9 months ago
Note
Have you ever seen this weird guy on Reddit who hates Proto-Indo-European and has a bunch of subreddits where he makes bizarre memes and screencaps linguists telling him he's wrong while calling them "hot PIEheads" (he is the only one who posts in these)
He has some alternative theory about converting letters to numbers but I can't understand what he's talking about. I can't attach links but he runs r/PIEland and r/Alphanumerics among others
For some reason I keep learning about more and more strange men with specific obsessions in linguistics, this is after I found out about a guy who insisted that Ancient Greek is just Albanian and that Homer's name was actually Omer (because he was Albanian)
there is so much going on here, i want to fall down this rabbit hole
25 notes · View notes
dapurinthos · 5 months ago
Text
the thing is, the archives are not a library. the jedi temple has to also have libraries where you can take the books out, not just the archive where you can't check things out. yes, the 'halls' divide the archives into sections, but everything in there is probably written by jedi, not just their journals (the entire top floor is probably just journals).
the corps probably have their own libraries, each. and the crèche. and the initiate & padawan dormitory sections, for academic assignments and the like. i imagine checking a holobook out is more like someone authorizing it to display its contents as the equivalent to scanning a barcode, going from the concept art from jedi: survivor.
Tumblr media
the main text is on one screen and the other one shows you highlights you've saved, is where you can zoom in on images, and interact with the text in ways that you might be able to save to a datacard, if you can insert one in the bottom where that particular dark section is (it looks like a floppy disk drive).
so far i'm going with the aurebesh digraphs for ch, kh, sh, and th as indicators for which hall the book belongs to. the top category/facet is indicate by one of the vowels [a, ae for the 1st - history, philosophy; e, eo for the 2nd - math, sciences, o, oo for the 3rd - geography, politics, & i, u for the 4th - flora, fauna], followed by permutations of the percentage sign where º/ indicates the upper floor and the circle on the opposite side, on the bottom, indicates the main one.
so the beginning would look like: ʧæº/ (except in aurebesh) for something that's in first hall, categorized under philosophy, and located on the upper floor (this also has the advantage of reading like a word - chæ-2). also part of this section would be the alphanumeric sequence that further separates the work's subject from others, e.g. philosophy of the ductavis period concerning planetary shielding, and encodes its chronology/era, the school of philosophy it belongs to, etc. without being hierarchical in design (like the library of congress and dewey), so: ductavis period: philosophy of defence : protection, with something like a cutter number for each section. if i wanted to be really ornery, it would all be in individual tythonese glyphs separated by colons.
the next part would be something like publication year : language code : author code : which # publication of the author it was during that year : volume number. the journals would have a slightly different way of doing this, where it indicates what type of publication it is.
14 notes · View notes