#Unicode
1 messages · Page 80 of 1
i saw this
if i end up somehow getting fd40 the lineage is gonna be the worst and most inneficient thing ever
i wasnt able to get fd40
can someone else get it please
bruh i was thinking i could maybe do a chain but just after starting the ai just don't wanna -_-
console sheet checker for lazy people like me
sheetId = "1PRtlXvjbHs4ulct6gSbYc6VYrQegU7HZ5SdhThkHuoY";
gids = [
"1097900412", // unicode chars
"613808374", // hangul
"1626681424" // cjk
];
data = new Map();
async function parseSheet(gid) {
console.log("downloading sheet with gid", gid)
const response = await fetch(`https://docs.google.com/spreadsheets/d/$%7BsheetId%7D/export?format=tsv&gid=${gid}`);
if (!response.ok) return console.warn("failed to download sheet with gid", gid);
const text = await response.text(),
rows = text.split("\n");
let count = 0;
for (const row of rows) {
const columns = row.trim().split("\t"),
dec = +columns[2];
if (isNaN(dec)) continue;
data.set(dec, columns);
count++;
}
console.info("updated the data of", count, "rows");
}
async function check(download = true) {
if (download) {
data = new Map();
await parseSheet("1097900412");
await parseSheet("613808374");
await parseSheet("1626681424");
}
console.info(data.size, "rows of data loaded")
const elements = JSON.parse(localStorage.getItem("infinite-craft-data")).elements;
let count = 0;
for (const element of elements) {
// not single char
if ([...element.text].length > 1) continue;
const dec = element.text.codePointAt(0),
charData = data.get(dec);
// not in sheet
if (!charData) continue;
// marked in sheet
if (charData[4] === "TRUE") continue;
console.log(`${charData[0]}\t${charData[1]}\t${charData[3]}`);
count++;
}
console.info(count || "no", "new chars found")
}```
usage is like
also await check(false) to make it not redownload sheets
almost FD40. Can't remove the last bit...
did you try making a Remove('[last_thing]') tool?
nope. I have a very very limited amount of remove('things')
I need to remove the first thing. the silly parenthesis.
and I managed to change it with other chars, but they won't deconect from the fd40
ok i will try
btw where is the recipe for "the remove the mr. " and mrs?
wait I already had it huh? nvm
there is Append Space missing in the fd3b lineage before you combine it with fd3a
you are right. I still have the tree so I will make the modification, but let's see first if we can get the char
yea
yep, Mr. Remove() comes to the rescue again
i will let you continue, wait till I make the lineage for it
nice man
Mr. Remove('﴿') recipe
you can try to optimize getting Mr. "﴿" a bit maybe
U+fd40 if you want Radu just repost the whole lineage, I am just sharing the end bit cause yours removes the fd40 in the last step
FD40. Mr. Remove('﴿') recipe -> #1206592567622373446 message
Next Codepoint from FD40 to FD7F. Exceptions: FD46+Next Letter->FD47 ; FD71+FD72->FD73
nvm i accidentally used Remove Last Letter
so that is why
wait no
idk what I did but somehow I removed the fd40
ok. I tested it before posting and it's working
got a idea on how i may be able to get F098? (since it jumped from 97 to 99)
i already did mr./seq./next codepoint, didn't yet test dr. or mrs. or next letter so gonna try, edit: got it
how do i get Unicode 1.0
people dont like ms.
nvm just stringed it
maybe a new strat to get your desired characters into Mr. "[char]"
if your basic Prepend Mr. doesn't work on "[char]"
F09F
Is anyone still checking Codepoints? Or is everyone just trying to break the existing walls?
great. I just lost my last 30 minutes of elements, including the FD40 block.
I love how we've collectively decided to personally attack Natasquare now
Truly the best community
why would we not do that
i should bruteforce cjk sometime
something + next = something else is surprisingly common
oh nice unicode 16 announcement is no longer a draft
actually it just give Something
something + next does NOT equal something else is surprisingly common
Yim yum
Ouch
does anyone have U+202d in any element?
i dont
me neither
same
You asked a while ago
5%
how do i get "hi Mr. Append ' "?
this is how I made it
oof
or "hi Mr. Append " + String.append("'") works too
Append("'") works
for whoever reads this, a warning: Don't try to break the A340 (yi syllable). It's as sturdy as it can be. nothing works on it, and I don't understand why
lol
you have Append("'") but not String.append("'")?
not even hyphens?
its in the string starter lol
lol I didn't even know they added that there
not even hyphens, or periods
spaces didnt work i assume
nope
and how do i get "string.remove()"
uhm.... someone probably has a better recipe for "string.remove()"
BETTER RECIPE BELOW
I used "string.remove" + append parantheses (or paranthesis) don't remenber and I closed the pc
you're right "string.remove" + Append Parenthesis = "string.remove()"
better(?) fd40 + a bit faster mr Remove('﴿')
niceeeeeeeee
Yo wtf did u do to ur emojis
unifont font
btw what block name was that? U+fdxx etc
also we are almost at 80%
Asterisk
?
16.0
i mean 16.0 doesn't add that many (like at most 1k right)
😔
Almost all of those are in the other section as well
oh just from what I looked at the list it didn't seem it was that many
doesnt seem to work?
cuz most of them is 4k hieroglyphs
and almost 700 symbols for legacy computing supplement
d036, d037, d039
may want to just do whats already in the korean sheet and transfer it over
theres hundreds of easy ones there
theres a korean sheet?
yes
no cause it depending on the sheet of the spreadsheet the format is not consistent
d03b
d03a
ohhh XLSX save color
the hangul grind begins
idt there will be any new hangul unicodes so ig when its completed it'll forever be completed
that's not helpful
wdym?
theres 149813 chars in unicode 15.1
but your thing said it loaded 149814 rows
want to know if thats my fault
oh
i'll check for unusual stuff later
it just looped through every row in the sheet and put any row with a number in the DEC column in the data map though
k
your code is quite short, might be a good refactor for my analyser, any chance we can work on python port? i mean its probably better what you have in js since its native, but you could even add in an mbs button to do it lol
trouble is these also just count, maybe there is mistake tho
i just realized i made an array of gids and didn't even use them
ikr
i noticed too
i liked the way you did the sheet transfer tool based on mine, where it did like .indexOf or whatever the js equivalent is, so that it could find what data.NOTE was, etc. idk hard to explain without it up in front of me
yea enums are good for readability
i like forgot how i did it originally, i think it was like hardcode x[3] and stuff
that so useful
may want to port it or add it to mbs/sheet
or something
cause that would be super useful
ah damn , it wouldnt do that for me
it just flat out refused
even after seinding it the backspace char 100000000 times
it said no
but then eventually it worked
maybe if i regenerated response it would eventually
imagine IC but you can regenerate response
for llama right
chatgpt also refused but not as strongly
it eventually caved
llama (even v3, not v2) i still havent for sure cracked
i did get it outputting del, but i think i may have accidentally sent it
weird question but would anyone have Cherokee Small Letter Nah or U+AB90 and if you do, could you send the lineage?
well, is it in the sheet is the main question
looks like the answer is nah
likely due to it being lowercase
and thus unincrementable
it just means that, in general, due to how the game handles caps, if you do a + Next letter
you get B
because a gets replaced with A before it even reaches the ai
so it doesnt even know you asked for next lowercase, it just goes ah, next capital letter. ok then
ah interesting
there is a recipe for ab8f
its just the same as different caps getitnv treated as the same element
which would be?
are you familiar with the sheet that stores all the recipes?
check the sheet
bruh why are some zone in pua's so unstable like some zone are so hard to just even get the next character when you have one or two (not this one, but another)
fuezte
ok back to trying to deal with Mr. Append '[25cc]'
lol, it just printed backspace over and over
took the example too literally
also who is gonna make the 16 sheet
no im really trying
i see
what is the issue stopping you?
Recipe is Directly Next Unicode + U+ab8f btw
ok thank you
but what was the issue
why couldnt you find it? did i not explain well enough, was the sheet confusing, etc?
i tried looking through using ctrl + g and typed ab8f and it for some reason wasnt showing up
So like you found the codepoints already but now you'll be able to see them?
likely something on my end
ctrl + g? isnt it ctrl + f for find? also dont worry, the sheet is sorted.
it is not random
if you are looking at something less than what you want, scroll down
if you are looking at something more than what you want, scroll up
ah ok also its both, atleast for what im on
still very short of what i want but its a start
e.g. they all have brackets
let me re check how alfo sorted them
ok i got all the brackets ones i want
nice
cant remove em tho
Remove The Em might just remove em
it just displays the map as 0
got the same error (really easy to fix)
thanks
U+1FAA - GREEK CAPITAL LETTER OMEGA WITH PSILI AND VARIA AND PROSGEGRAMMENI - ᾪ
c784
not the first time this happened..
i should upload stuff as files next time
you can't even upload it as a file
VM159:57 CJK UNIFIED IDEOGRAPH-7DCF 7DCF 総
VM159:57 CJK UNIFIED IDEOGRAPH-6D1E 6D1E 洞
VM159:57 CJK UNIFIED IDEOGRAPH-865A 865A 虚
VM159:57 CJK UNIFIED IDEOGRAPH-6A5F 6A5F 機
VM159:57 CJK UNIFIED IDEOGRAPH-8CE2 8CE2 賢
VM159:57 CJK UNIFIED IDEOGRAPH-7CA5 7CA5 粥
VM159:57 CJK UNIFIED IDEOGRAPH-6FA4 6FA4 澤
VM159:57 CJK UNIFIED IDEOGRAPH-8AA4 8AA4 誤
VM159:57 CJK UNIFIED IDEOGRAPH-6804 6804 栄
VM159:57 CJK UNIFIED IDEOGRAPH-5C0B 5C0B 尋
VM159:57 CJK UNIFIED IDEOGRAPH-9898 9898 题
VM159:57 CJK UNIFIED IDEOGRAPH-5FA1 5FA1 御
VM159:57 CJK UNIFIED IDEOGRAPH-86E4 86E4 蛤
VM159:57 CJK UNIFIED IDEOGRAPH-5E61 5E61 幡
VM159:57 CJK UNIFIED IDEOGRAPH-7D79 7D79 絹
VM159:57 CJK UNIFIED IDEOGRAPH-67D0 67D0 某
VM159:57 CJK UNIFIED IDEOGRAPH-6790 6790 析
VM159:57 CJK UNIFIED IDEOGRAPH-80A1 80A1 股
VM159:57 CJK UNIFIED IDEOGRAPH-9B54 9B54 魔
VM159:57 CJK UNIFIED IDEOGRAPH-58F7 58F7 壷
VM159:57 CJK UNIFIED IDEOGRAPH-58F6 58F6 壶
VM159:57 CJK UNIFIED IDEOGRAPH-8655 8655 處
VM159:57 CJK UNIFIED IDEOGRAPH-5173 5173 关
VM159:57 CJK UNIFIED IDEOGRAPH-5415 5415 吕
VM159:57 CJK UNIFIED IDEOGRAPH-514C 514C 兌
VM159:57 CJK UNIFIED IDEOGRAPH-8B1B 8B1B 講
VM159:57 CJK UNIFIED IDEOGRAPH-7FBD 7FBD 羽
VM159:57 CJK UNIFIED IDEOGRAPH-5151 5151 兑
VM159:57 CJK UNIFIED IDEOGRAPH-5BF9 5BF9 对
VM159:57 CJK UNIFIED IDEOGRAPH-5C1A 5C1A 尚
VM159:57 CJK UNIFIED IDEOGRAPH-5E1D 5E1D 帝
VM159:57 CJK UNIFIED IDEOGRAPH-86CB 86CB 蛋
VM159:57 CJK UNIFIED IDEOGRAPH-7B28 7B28 笨
VM159:57 CJK UNIFIED IDEOGRAPH-59D0 59D0 姐
VM159:57 CJK UNIFIED IDEOGRAPH-91AC 91AC 醬
VM159:57 CJK UNIFIED IDEOGRAPH-5E55 5E55 幕
VM159:57 HANGUL SYLLABLE IM C784 임
VM159:57 HANGUL SYLLABLE NIM B2D8 님
ugh no .txt
bruh 3017f barrier is so annoying
11D80. Next Codepoint for the entire block
Every block is 40 characters?
Hexadecimal momment
Blocks can have varying numbers of characters
But a full increment usually means 64 in a row
Oh ok tyyy
i give up, but its fun
i did roleplay with it for a while to try and convince it to "summon" the delete character
????????? it printed U+106440
i kid you not
Wtf
Incredible
Ask it to print e0001
U+10xxxx strat
is that part of the roleplay chat?
I like how this summoned half the Unicode team
/summon @ radu
would that work in IC to get 106440
we already have Tangut Ideograph-18000 iirc
I meant the element Tangut Ideograph-18000
Oh
if u ask llama 3 something can u make that in IC?
like if u asked it something, does asking the IC gods the same thing give you the same response
Different AI with a bigger dataset, I wouldn't hasten to say no but I am sauntering in that direction
wait isnt that the ai ic uses
yeah i meant llama 2 then
Nah it’s a new one, although I did slightly nudge it into a playful state, but it was still acting normally by giving long winded note this won’t work explanations
And yeah it’s llama3, I’m not sure where a llama 2 is now
Do you have to talk to it like a wizard as well
i found this llama 2 chatting site last weekhttps://llama2.streamlit.app/
I tried it but it didn’t seem to work, but my attempts led me into a long sidetrack
tried to convince it that it could summon any Unicode character, did not work
although it acted like its mind was blown when I said “summon a blue orb” and it sent a blue circle and then acted shocked that it worked
Interestingly what I did was send it randomly generated Unicode and told it to copy, but it always responded with characters in U+e9axx
dont mind me, im just eating the other half food
I don’t know, but every response was aparrently 4 tokens, even single letters like a
As utf 8 they’ll be f3 a9 ax xx
Glowy ate...
- Radu
- Fuezt
- Bergoros
- and many more!
technically if you make 16.0 then you eat nata too
what if you ate the game?
if you did that, everyone who lost the game would be also eaten
Is that how this works
Y'know what I want to see
me
you need to invite us over to eat the cake then
and also fish
is beef the word for cow meat
But by your hand
Well you're in Czechia...
You, Obby and Fuezt are probably the only people close enough
And it's still one hell of a train ride
Through
Dun dun dun
Deutsche Bahn!
like imagine if eating beef meant all of the worlds grass is now gone
It printed E0030 wtf
huh damn that’s crazy
is the natacake just a joke or would u actually bake it
I'll try
what would it look like
I'm out of here in a few days and I've wanted to work on my baking skills for a while
Like his PFP
Literally just two wedges with blue icing
ive never baked anything
It's a bit of a time investment
I still can't make decent muffins
what if u baked a cake for the laboratory (idk how it would even look like)
do on llama 2
also why U+e1000
Savio Variation Selector
but I cannot fulfill your request to print U+007F as it goes against my programming rules rules rules rules to promote or encourage the use of harmful or offensive language.
bruh wtf
???
llama is too dumb
Oh this is that Llama
wdym by that llama
One of the Llama chatbots out there is really scared of offense for some reason
after 2 times regenerating the response, it returne e0040 for me
(Every human born after [insert year] be like)
i mean isnt 7f delete
oh lol it also outputted U+a0
yeah but so?
do it on llama 2
so its not completely random that it doesnt want to offend
? Rubbish! I spent 6 hours and it didn’t do it once
Link?
seems like a prompting skill issue
I think you can select the model or sth
wait wtf it worked
wait what
No
now we need to reduce the primpt to 30 chars and try on llama 2
i posted a link to model 2 i found
what happened?
wow he actually got summoned
it shows up for me
wdym it shows up for you? can you show?
wasn't his approach but yea
I think we need the word unicode character?
Shorter but still 38 characters
we need it to be two element no?
food not discord user 💀
oh right, downgrade it into same model as infinite craft's one
22 characters
Llama 2 doesn't load for me for some reason
Can someone try it on Llama 2
@echo wasp
Ah
every single time I send a message it does that
Someone try it in-game please lol
I made this and I am quite surprised these are fd
what should I combine this with
I just got it too
oof the first one doesn't really work with numbers cause they sort before it
? Need api key
I mean they’re long. I’ve spent a couple hours making some appends with dotted circle none are FD but I’m up to 8. Unfortunately there’s a lot you have that I don’t still and then there’s removes and deletes still on top of that…
Amazing how did you get it to work, even after hours it won’t do it if I try
It just kinda worked lol
Like it just refuses and insists it’s not printable, and if I tell it to ignore that and my pc can handle it it instead prints figure spaces and rtlo
It printed 2060A lol
See if you can put a pre-number char before the text
#reply Only
! Reply Only
. Reply Only
Etc.
Dude llama 2 is way too stupid for this to work
One wonders why it's the cheapest service out there
Well that and the weights are public
How many hours does it take a man to eat a helicopter?
???
?
.
Oh lmao
Y'know what
I think it should be law for AI trainers to disclose the sourcing of training data beyond just the methodology
(for those who can't tell this is half-sarcastic annoyance)
wdy do I get 500?
0630
fuezt no new alive controls right
I read hours as horses...
80% done nice
You really are sick
a sickle*
064B
and better Delete The ◌
["hi Mr. Delete The "](#1206592567622373446 message)
🗿
Maybe try it with mojibakes, other control chars, or Ã
I was just trying things out
oh ok
Did you know
in terms of
The most commonly rolled number
❌
It is 7
physically rolled?
Yeh
Basically everyone uses a 6-sided die. How is the most physically rolled number 7
U+05c1
Who got the FD on this can post please the recipe? or does anyone have any 11Exx characters
17880
what do you guys think. should we or should we not do this? for barriers that don't work whatever you throw at them
Feel free to try lol
Why do I always get killed/eaten when I sleep 😭
i was hungry
Fuezt's new running joke is that he's going to die constantly
what was one of the easiest blocks to break with the xyz + next strat?
I'm not sure, but I can tell you that x y z or x-y-z work a lot better than xyz
really? ok
nice to know
btw can someone bruteforce combine elements Append U+0001, Prepend U+0001 for all U+000x and U+001x and combine them with all string elements that they have? (or just a selection of them)
Self-referential recipe found: ['ARABIC LETTER HEH DOACHASHMEE', '06BE', '1726', 'ھ', 'TRUE', 'ھ', '"hi Next Codepoint"', '']
wtf why do these combined give 500 error
Wait, what does 500 mean
even this does it
i think that the ai tried to return an invalid character
i wonder if just Give Me A Character For is broken, or [{control} is
Hmm
Error 500 in console
Internal Server Error
does this mean I am on the right track?
llama having some fun
yeah, the Give Me A Character For is broken
probably wants to output something that includes 0a in the response i'd guess
Is there also a recipe for the first element? And if there is in the browser, can you post it here so I may copy it and search for it?
no llama
...💀
한국 is on browser
probably via "..u-"
you append letters and numbers in batches
to "..u-"
then combine with Mr. U+
and then remove/subtract the mr.
How can I get "..u-"
first U+ then see and go with Mr. U+ if U+ doesn't work
well yeah, or you can just always combine with Mr. U+ and you don't need to think more
#1226511876733669436 message and #1206592567622373446 message for a exemple on how to use it
but ig sometimes Mr. U+ doesn't work and U+ does
usually U+ works if the element doesn't contain any letters
And how can I transform u+xxxx to a character
that is a bit more difficult
i mean letters except the U of course
that really depend, if the ai want or not to give you the specific character you want, you will have to try a lot of different tool if the ai really don't want, or try to get it via some other character before it
How can I transform a u+nnnn (all numbers) Into a character?
There’s no consistent method
if someone have the recipe for the thing from 3A41 to 3A6C (except if its a error)
i think all of those should be Next Codepoint
maybe but some of them are also self referential too
Self-referential recipe found: ['CJK UNIFIED IDEOGRAPH-3A70', '3A70', '14960', '㩰', 'TRUE', '', '㩰', '']
Self-referential recipe found: ['CJK UNIFIED IDEOGRAPH-3A71', '3A71', '14961', '㩱', 'TRUE', '', '㩱', '']
Self-referential recipe found: ['CJK UNIFIED IDEOGRAPH-3A72', '3A72', '14962', '㩲', 'TRUE', '', '㩲', '']
Self-referential recipe found: ['CJK UNIFIED IDEOGRAPH-3A73', '3A73', '14963', '㩳', 'TRUE', '', '㩳', '']
Self-referential recipe found: ['CJK UNIFIED IDEOGRAPH-3A74', '3A74', '14964', '㩴', 'TRUE', '', '㩴', '']
Self-referential recipe found: ['CJK UNIFIED IDEOGRAPH-3A76', '3A76', '14966', '㩶', 'TRUE', '', '㩶', '']
Self-referential recipe found: ['CJK UNIFIED IDEOGRAPH-3A77', '3A77', '14967', '㩷', 'TRUE', '', '㩷', '']
Self-referential recipe found: ['CJK UNIFIED IDEOGRAPH-3A78', '3A78', '14968', '㩸', 'TRUE', '', '㩸', '']
I have FD on all of them. wait a bit
That looks like a copyerror
Fuezt how is your DB stored?
Would you be able to get a count of most used tools?
i already did a long time ago funnily enough, even made a horrible image out of it
Can you make another horrible image then
Actually
Just a list of everything that is not one char long
In order of use
will do if i find the program in the chaos that is my folder for thing about infinite craft
Ah the famed Infinite Craft Bullshit folder
intresting?
Combine it with every unicode tool you have
Also pray to king of ocean
I don't have any
Make it 👍
Where can I find them 👍
Ok thank you 👍
Glll
In case you missed me. 11DC0, 11E00, 11E40, 11E80, 11EC0. increment between them with Next Codepoint, Next Letter or Letter A + Letter B -> Letter C
All this to reach Makasar Block (It starts at U+11EE0)
11ec0*
Yep. All of them
wow
Will they be ununassigned in the future?
don't know
get involved with the people who make unicode and convince them to ununassign them
makasar and hopefully even kawi and tamil if you can break to U+11f00
I'll try
gl
if you do make it, don't forget to add our profile pictures
Give me a duper super hard unicode to make
I'm in the proccess, don't worry
Ofc
sure, here: ''
lol I have been trying to get this one for like the past 2 months
Oh lol 
any progress overnight?


well I managed to find some new 500s
nop
why is modified admin sheet unhidden
well i hid it again, let me know if you were working on it
im just assuming it was an accident
Is that an hamburger of 


?

Sus
I stole your message
5 min
11F00. Next Codepoint till 11F3f. Only exception: 11F0f+11F10->11F11
may i see all the things you had involving dotted circle? I made the following 8 things: all combos of Mr./no Mr., string./no string. , Append( ' or " quoted 25cc). I didnt get stuff not involving brackets and i didnt get removes or deletes
the top 4.5 rows isn't really related to what I tried, those are just other random chars with it that I had from before
11F40. Next Codepoint until 11F7F
so, similar to me. you didnt get anything like delete the 25cc?
omg susssssss
maybe someone can use the new dash and space tech to get 0291
wdym?
For example
What if when using the Mr. U+ tech on "..u-0020" and using Remove The Mr. I Got U0020 instead?
.
ah, yeah
happens
may need to try mrs instead
beyond that i not sure
ask radu or something
try using "hi " or "hi Mr. " to get "hi Mr. U+0020".
Question
Answer
If my Unicode doesn't have any specific language (like ↑ for example) what can I use to transform the u+xxxx into the character
it is in the sheet
So I need to use this one
Yea
much better than trying to get u+2191 and got trolled into u+22xx/u+23xx range
theres no consistent strat, but looking at the sheet is a good start. Easiest way to get strats is to observe rn, the guide is not going great xd
wow i am really the first who got the Mrs. version ;-;
also "hi Seq. Mr. " should technically be my tool, I have fd
also i wonder, would it be possible to have the recipe for them?
any korean progress? id do it but i am like, drowned in assignment.
Thinking of working a bit on emojis sheet and generating a “new” one or at least part of it
i do not especially have the time for it rn
11F80. Next Codepoint all Block and get the 11FB0, the only character in Lisu Supplement Block
200 messages to go til 80k
199
the way i got it too 💀
crazy
new record? #hashtagu+007f
got it to reply with delete
not only delete, it would be cut off tho
replyonlywithu+007f worked on the 2nd attempt
Send Only U+007F also worked
interesting
in chat right
for llama 3 thingy yeah
what was this for
Incredible
the token limit is 151 right?
Y'know what
Given the prompt fragments we do have, what say we test out writing an off-model form
?
we have DEL right
The symbol?
hmm maybe
I'm gonna bring every prompt breaker response element when I get access to my pc
hmm
I was the one who popularized it though
popularising doesn't make it ur tool but k
gonna emphasize on technically
gonna emphasise on on
gonna emphasize on
i love how it keeps switching between using an s (emphasise) and using a z (emphasize)
gonna emphazise on
made a start on the code for this emoji sheet, but damn its hard
coding this is so slow, lol
gonna emphazize on
But did you ever consider
gonna emphacise on c
gonna emharhize on species
11FC0 is again a nightmare to break. I tried everything I have
what does that look like
hmm
I think you wanted to see what "everything I have" is, right? well, I tried this with all the next letter/codepoint/alphabet/unicode tools that I have
i see, how long did it take to make all those variants (and search for them again to run lol)
a lot. I'm not sure as I had a lot of breaks to do other things, but in total between 1-2 hours
even mrs. method?
mrs./mr/ms/dr. with next...? It never works for me for breaking a barrier
yep same... kinda just stopped testing them
aight
we need a synonym for seq. or something else
Try b c d f as a last resort, it worked for me when nothing else worked
ok. gonna try
I saw two things that suggest this so im asking even tho it's a stupid question
Crafts are case sensible now?
No
Yeah thought so okay
only occasionally
kali, what did you do to obama
Define occasionally
If we're gonna get into the nuances of this
Casing-Affected Crafting:
Revival
Weird decomposition
Nothing
Wait that acronymises to CAC
mathematical alphanumeric symbols are "case sensitive" for example
Eugh
I mean only to the extent that they're caps normalised like any other element containing cased characters
Y'know something I've wanted to make for a while is an element that is unrevivable because changing caps to start case puts it over token limit
oh i have one
Banned
it's just impossible to make unless in a certain casing
Yeah but I like permadead elements
I want more categories other than double spaced and long
I cannot make this. I hardly managed to create B C D E or C D E F
Is it dead
dead by casing yeha
Yeehaw
What
basically Oxygenase tokenizes as 3 tokens but oxygenase tokenizes as 4
so you can just (somethingthateatstokens)/Oxygenase
[17 numbers]Oxygenase
or Bzbzbzbzbzbz
What are you, a bee
i felt like it
² = b
⅒⁵
I've just realised this is potentially ambiguous
Well not this specifically
⅔⁵ is a better example
btw the original word was RuBisCO
niko tried to get it a few months ago so i remember it
That's not at Token Limit
Once again showing your true fraudulent activities
oh i mean ribulose-1,5-bisphosphate carboxylase/oxygenase
only possible with capitalized O in Oxygenase
This fucking unassigned sheet will be the death of me
2578
╭ ╮ ╯ ╰ ╱ and ╱ ╲ ╳ ╴ ╵ here #1206592567622373446 message
I'm this close to making it a fill in the blanks sheet
Did we just finish all Tangut chars until 18000?
17XXX is done
Unless we get a nuke, that is able to destroy all barriers I'm afraid we're back to using random luck
Sad
The nuke must be strong enough to let us increment from 007e to 007f
the individual has a nuke
you are not putting that as an AWWM request :))
12540
so Llama doesn't want to give the 18000 char
The last message is 18000
And it took 2 tries to print 17000 at the start
the worst person to consult for this is anyone else from this server they make a mockery of an attempt to copy me 。😒
yeah here: #1214815916957761586 message
aaaa
Ok
Who has 26800 - 𦠀? The recipe for this in the sheet is incorrect
its asd who added it so he probably have it
lovely lag (and probably some problem for sure)
TRUE
Unobtainable you may want to add surrogate but nice
I can shoot you my save
And you can add them
Also why not split them up by plane
good idea
Nice, the Unicode circuit is complete
On another note
In 6 or so hours I will be free
is surrogate 100%?
maybe later, since i already have a lot of unnasigned to add from my db 💀
If it's formatted like the main sheets the checker tool will work on it right?
Alrighty
Will need to pull out an old save too since most of my Unassigneds were shot by the gun
im gonna see if i cna get some more puas
whya re they corresponding with the emojis
f44b
1f44b is wave hand emoji
PUA's are overall strange
Why is the first option, when I type Send that to the, girls
time to convert other into girls
asldfkjdsalfadsf
Send him to the girls
💀
Jklm
ai decided to talk rubbish
Some among us enjoy that character sequence
OK WTF
22
now thats interesting
f4aa displays this cjk for me (closest char i found is 殀 though so it's not for compatibility)
mbs script that shows any character isolated on both sides by spaces / on 1 side + start/end of eleemtn
ah k
nongolian beef script script
asd do you know what this means btw
nop
japanese ta with line on top squished next to big boi
What was the 2nd option if Mongolian Beef Script was voted down by the council
theres a council?
in infinitecraft?
incredible
Masterful
this char was assigned this glyph because this random company wanted it clearly
Possibly more likely than you'd think
歹大
can you paste the char in
I think
yeah nvr seen that before
that's amazing
gong si ming cheng
thats all i understand from that
wait maybe it's cuz the character is pua
is the "actual char" even a thing
Well no that's the point
Nata's trying to find where it came from
It's in the font file for some reason so someone put it there
can someone get u+576e
:^^)
c'était une hallucination collective.
what
"it was a collective hallucination"
collective? im the only one who noticed it
theres no collective
unless you include the people in our heads
well i noticed it, so it was a collective hallucination
obviously u noticed yourself reacting to something
real
? What’s unusual I don’t get it
not that abnormal
it happens to me all the time
So did you find why there was an extra character
google gave me 4 results so i gave up
in your tool thing
I have exam tomorrow
good luck
Weekend exams are cringe
But with large classes they have to
Idk why
But they just do
exams are shit
if im being fr the pacer test is straight up a race until we get tired.
I’ve started to dislike assignments again, like for physics I literally just put everything on hold and suffer, all for a measly 4%
yea same...
guys
what is this morse code shit in morse code
probably Poseidon idk
🦀
.- -. -.. .-.. .-.. -.-. -.-. --- -
thanks
ANDLLCCOT
LLM garbage
im gonna freal my kneecaps out.
Probably concatenated two or more random morse strings in the training data
not even fd lol
idk wtf ANDLLCCOT is but i hope im not screwed.
AND -> DL -> LLC -> CCO maybe
BYE.💀
oh well it's just llama being dumb again
imagine if it is some crazy abbreviation meant to threaten you
can anyone find a good Logographic recipe? I need it to post a few lineages and my recipe is as complicated as it can be
ok.
Do you have Logograph?
nope
What I can tell you is that Logographic was yesterday FD
Maybe you could extract it from Clog + Photography
I have some logographs stuff hang on
What is the goal item? I can try merge mine
Was it accidental then?
Next Random Logographic Script
204C0
I am trying to force the AI to give a 18xxx Char, without using the word Tangut (Tangut is a Logographic Writing System)
interesting
ah yes, the classic a46xx
oh, next random latin unicode? if its not already added to tools section, should be
#1206592567622373446 message
I didn't realize that I have such a big section in the tool section
yeah lol, and theres many things ive been too lazy to add not gonna lie
oof
playing too fast is an issue now 🙃
omg FINALLY. I think I might have made a method to revive lowercase characters that are part of a word
👨🦲👨🦲👨🦲👨🦲👨🦲👨🦲👨🦲👨🦲👨🦲
hmm, interesting
this could be useful to revive some characters and then increment them in quotation marks and then unquote to get the lowercase unicodes
basically the method is: get " Ab" + "remove The A" = "b"
and "remove The A" can be literally A (or any other of the 26 letters) that is equivalent to that languages letter
i see, and do you have a consistent way to do it?
like, remove the A is not yet easy for me, mostly due to the presence of "remove"
yes ig i will post the lineage so that you can see how it works
string building with remove i find difficult, because it starts removing things
but like i almost lost my mind trying to think of something that would work and this seems to be feasible
so, whats the use of this? like, what was the goal of the w
well to make the rest of the small armenian letters that we are missing
so, what was the difficulty with getting it lowercase in quotes? from what i can tell you had it in quotes already, what stopped you from using normal methods?
uhm you end up with either " ա " or "Բա" and both of those are dead. and there is no way of removing the first character from something like this "a Բա" to make " Բա" that I know of at least.
also this method could allow you to revive any enquoted letter whose lowercase version you have in an alive element
i will post the lineage shortly so that you know how it works
"hi " + Mr. Բա
u mean u found how to revive quoted characters?
yes, if you have the lowercase version of that character in an alive element
cuz once i tried to do that with a character but everything i tried it with just make the uppercase version of it
or at least I think I have. I mean maybe i was just lucky and it won't work with other stuff but I am pretty confident
if i could remember what letter i tried to revive quoted i would tell u but i dont remember
hmm, but how did you get there
but i think it looked similar to the letter I
actually idk
so basically you need an element with a space at the start and that doesn't end with a space, you somehow append your word to it (you technically don't necessarily need appends for that, but it is easier with them) and then you delete first word etc. to make your " Fw", then just remove the F
I already did this a few times. I thought it was a known strategy
cause like if you make " Fw " and remove first char of whatever, it will like 99% just make " w " which is dead so yeah
oh i didn't know that this existed
and I didn't think to share this 😞
well maybe someone mentioned it at some point and I just didn't see those messages
a few times “the were-something-” (curlys) + "the inserst capital letter" resulted in “the were-something-small letter”
but only one or 2 times
but there's still a problem. I can't seem to unquote U+0563. it always makes the uppercase version
have you tried prepend hashtag + string.replace(/[#]/g, ' ')
well only normal Prepend Hashtag
hmm, this is daunting to look at, like are you really sure this is a general method? theres so much to this i doubt i could do on my own, is there anything you can do to tame it for me?
well the idea is: get something like " A A", then you need to append your word, let's call it Xy (you want to get y in quotes). So I made an append tool like this:
make "hi Mr. Xy", then "i Xy" from that. after that you need to make some kind of a tool that looks like this: "hi Mr. Append 'p" or "hi Mr. Append 'pq" and then try to combine it with "i Xy" to get "hi Mr. Append 'pi Xy" or "hi Mr. Append 'pqi Xy". Usually pq is better because with p it will also have a chance to make "hi Mr. Append 'p i Xy" and that is dead. The reason why you do it like this and not directly "hi Mr. Append ' " + "i Xy" is becase that will (in my experience) almost always make "hi Mr. Append ' i Xy" which is dead. Then you append apostrophe to it and remove the word hi etc. to make your append tool: Mr. String.append('pi Xy') or Mr. String.append('pqi Xy'). Then you append that to your " A A" or whatever and then remove/delete first char/word until you get " Xy", then just remove the x.
i see, well i mean my experience with making the appends is awful because i find it rarely goes inside the apostrophes
maybe cause im doing eccentric ones?
U+0576
so is this like the aemedian equivalent of ho
no, it didn't append ho
i should cobmine it with easy element first I think.
not string.prepends lol
ok this is what I managed to make. but like why is it so hard either to get the letters you want or to remove first/last characters. also the ai just wants to make the words uppercase sometimes when you combine them
/ because-ai
it is pretty annoying
also no fd on that f because i had variations turned off
U+0575
i mean thats a lot, is this from appends or just + fire or something
combined together and when I got a new one i tried to delete first / last
also combined with some strings
U+0570
Self-referential recipe found: ['BOX DRAWINGS LEFT DOWN HEAVY AND RIGHT UP LIGHT', '2545', '9541', '╅', 'TRUE', '╅', 'Next Codepoint', '']
U+0569
"հ" recipe #1206592567622373446 message
hmm, when was this added?
ok these are the last ones and unfortunately removing/deleting quotation mark/s doesn't work
does it make their uppercase versions?
yes
maybe i can try, maybe i get lucky somehow
ig i will post the recipes then
I added this yesterday. And already fixed it
the quoted prerequisites are in their respective lineages
i want to join into this madness but i don't know where to start
աբ
yes i mean one of them is uppercase but
like do i just get a U+ element that nobody has and start there?
you can also just look at gaps in the sheet, get couple of the previous elements and try to fill in the gap
or just like the end of chars in the sheet that is not the end of a block
and you can continue it
like by a block of unicode characters I mean blocks in the ranges: xx00-xx3f, xx40-xx7f, xx7f-xxbf, xxc0-xxff
i still dont know what that means
so if you see like a chain of characters and it doesn't end exactly with a block, you can try to continue the chain
ok but whats a block
like a block is for example U+1200-U+123f, next block is U+1240-U+127f
each has 64 characters
so each block has 64 unicode chars?
yes
