#Unicode
1 messages · Page 91 of 1
you trapped tacos's immunity
throw new Error();
desync lmao
balls
real
{{
All parentheses and other enclosing characters after this message now mean I lick goats
}}
"
Wow Obbybigfast licks goats
`
hello world!
`
"
.
"
laurasia's left ear
damn
"
'
laurasia's right foot
hello guys
obamna
'
" . " laurasia's left ear damn "
@regal fulcrum can you put a 6 hour delay on messages here
wait-
time to edit same message for 6 hours
someone type a opening parenthesis rn
a opening Parenthesis rn
were like 150 messages away from passing prehistoric species 👍
done
Why the hell did you capitalise the P
autocorrect
someone pls type opening parenthesis, i have a sentence we need to capture
Ottocorrect
)
opening parenthesis, i have a sentence we need to capture
i said opening parenthesis not closing parenthesis
]
But left is that way
opening parenthesis
wheres the start
closing parenthesis
opening parenthesis not closing parenthesis
it began in your mom's womb
bro can someone start a parenthesis please
True there is a parenthesis there
alright ( )
A parenthesis, even
done, I typed the opening parenthesis
type an opening one without typing a closing one
hello (hi)
// (
an opening one without typing a closing one
kali's power to change the slowmode
parenthesis is it ?
)
that one is commented out ..
Prensisi
obby won't understand it
wrong way around laurasia
also that one "is" at the end is italic
Yeah but the is isn't
"but the is isn't"
No don't bring up directions again
what if the is is?
hungry is said holazsyla ^^
is the ^^ mandatory
Yeah you explode if you don',5 use it
each time i see kali's pfp i see a wild boar ffs
hrll yeah
its the fucked up genocidal moth princess 🥰
aww how cute
||o.o||
🐻
someone make that in infinite craft
bee swarm simulator reference
||🐻 ||
Faputa is not a bear
some make someone make that in infinite craft
Oh fuck I forgot to put my fishsticks in the freezer shit
someone make some make someone make that in infinite craft
did they run away
someone make someone make someone make someone make that in infinite craft
> telephone rings
> "Are your fishsticks running?"
> ???
skcitshsif
someone make someone make someone make someone make someone make someone make someone make someone make that in infinite craft is 20 tokens
awwm?
hello still on the phone?
> clears throat
ok i checked and Someone Make Someone Make Someone Make Someone Make Someone Make Someone Make Someone Make Someone Make That In Infinite Craft (each word starts with a capital) is 30 tokens
so it think this is only possible to make in full lowercase
good luck
I feel like I could post that on r/shitposting and get 5 trillion upvotes
someone make ok i checked and Someone Make Someone Make Someone Make Someone Make Someone Make Someone Make Someone Make Someone Make That In Infinite Craft (each word starts with a capital) is 30 tokens
where are the dolphins? you promised me to bring them!
exact caps
no thats more than 20 tokens
its 47 tokens
tell neal to increase the token limit
but this is theoretically possible to make
do it
sorry im in a tunnel
ajshfkshdgd
I am equally likely to get 5 trillion downvotes
the pyramid scheme your pet hyena came decided on hasnt been working so far. how will you deal with this problem?
imagine if cjk ext b gets finished before ext d
Greater than sign
222 > 42k
new gas leak
what do we call a gas leak i dont understand
i mean... there is less than half of total left left in ext b
btw are you planning to just eventually get all of the 2xxxx
intricate
beautiful
mesmerizing
U+22040, U+22080
U+3106c better
yeah if i have time to
hmm [#00ff03](#1285557473381449728 message)
U+C11C
U+C154
5C0B
尋找 on browser
U+C18D
Mr. smt is on reply
Check this sheet. The recipe is already there. It's just not added to the unicode sheet #1206592311040024636 message
oh 😔
U+D130
53D8
越南 on browser
all missing block starts in the range U+22000 - U+22bc0
incredible
#1226511876733669436 message
thanks
#1226511876733669436 message
this is better idk where is the most optimized
block starts in the range U+22c00 - U+22e00
"𢀀 𢁀 𢂀 𢃀 here #1206592567622373446 message
where is the thing that can show me the characters am having in a word so i wont need to search on console every time
use this
and then type await check()
Find out the real characters in a string of text. Great for finding hidden or similar Unicode codepoints!
ok it did a lot of download
virus
243 'new chars found'
??
it counts full stops
oh
wait let me check waht is new
VM285:58 HANGUL SYLLABLE KAE CE90 캐
5VM285:58 HANGUL SYLLABLE DE B370 데
6VM285:58 HANGUL SYLLABLE SAG C0AD 삭
now just search them and try to get out?
yep
and if ill close the console will it stay
ye
ok tyy
you can rerun the code anyways
it's better to copy it into a document
copy what? the thing you sent?
the result
text from console
Doesn't that only check the first char of each element
it doesnt check the korean sheet
this script is only for unicode sheet
can i change it to do for the korean one?
you can try
sheetId = "1MiulYdexEDeTRZ-5FuCu_6uT1DGQrrjRbbafG8rTOCQ";
gids = [
"2009827753",
"54846903",
"1316862212",
"1712313362",
"1253420112",
"1992829979",
"1757839405",
"1592426346",
"1346819775",
"747425146",
"1316862212",
"1390266138",
"1930692795",
"1894517110",
"390736697",
"699665670",
"1647351735",
"1214118203",
"213689318",
"302995802"
];
data = new Map();
async function parseSheet(gid) {
console.log("downloading sheet with gid", gid)
const response = await fetch(https://docs.google.com/spreadsheets/d/${sheetId }/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");
if (columns[2] === "") continue;
const 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();
for (const gid of gids)
await parseSheet(gid);
}
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) {
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")
}
it only expects the regular format of the unicode sheet
this is too long idk if this ok
anything else will break it
it only check the single character elements you have
i can make it check for unicode characters inside elements if you guys want
uh tomorrow, i'm going to bed
8B8A
尋找 on browser
You didn't ✅ my c a t s t o n e 😔
done 🙂
Yayyyy tyyyy
ok im getting random unicodes with inst lol
But new ones?
wow ur the first person to get quoted euro sign?
wait why X emoji
is that not the euro sign? its an fd
look last image i sent
oh
u could use 2sb if u have a lot of codepoints
2 sides builder
0b41
please do
i never figured out what 2sb was for. like you drag elements to the left and right but then what?
it combines them all together
which is useful if you want to do like, hundreds of combinations, or thousands
it takes first element on left side and combines it with everything on right side
and so on
oooh
hola can you add this it shows me i can add this in the code thing the bergule gave me before
bergoros
that would be really cool
U+C0AD
do you purr?
do you want me to?
tanks yuuuuuu
U+D500
nvm
is d5d
U+D5D1
Omg
no it is fakeee
that's the most nonsense recipe I ever saw
do you know what the word saying?
yeah i'm korean
it's something hard to translate into english but kinda similar to "wow"
oh cool
not really sure what happened here
D5D1, D5D9, D5DA, D5DC, D5DF, D5E0, D5E1, D5E2, D5E3, D5E6, D5E7, D5EF, D5FF
hop ei didnt miss anything
some more
D5F9, D5FA, D5FB, D5FC, D5FD
D5F1, D5F2, D5F3, D5F4, D5F5, D5F7
does anyone have U+2800 i quotation marks or in apostrophes?
i very much need it
and it doesn't want to get in them
thx
lol
i wanted to make string.append('U+2800') but it really doesn't want to do what I want
how do you get ޑީ in the recipe for U+04c0. it isn't linked, isn't in discord search and it isn't on infinibrowser
also
can someone put a lineage for Dhivehi Akuru Unicode ? also isn't searchable
Why and how? please help I’m being left behind I want to help too 😭
you can help by making entrances to other 2xxxx (like 23xxx or you can make the last ones in 22xxx, i still didn't make them)
missing are 22e40 - 22fc0
because making the entrances takes the same time as making all characters in a given 4096 char range
maybe even longer actually
because i try to optimize them at least a little bit
.
and yes getting the box drawing out of the elements is painful
do you need help with other entrances? or should I focus a little on filling gaps in the main sheet?
well yes, help with entrances would be appreciated.
23xxx then?
sure 👍
How? Even making them is hard? like once I make them I have to delete the stuff I used there’s no way I can use more space to optimise it
oh yeah also because I need to make the lineages. that takes quite a bit of time
Hmm
well it doesn't always increment all the way to 2xf00 2xf40 2xf80 2xfc0
but if you keep the stuff there to use, why does it take long
and not every time can you just combine with a sequence to get the next block start so sometimes you need to extract a lot
look at the lineages i posted for 2exxx 20xxx and 21xxx
where sorry
link is in the sheet by the entrances
oh yeah
or you can search in discord from me "all missing"
radu said he will go for 23xxx so you can do 24xxx
so what is first step? like assume we only have 24000, do you barrier break 3 times and then construct nuke or is there some shortcut?
Why are the missing hebrew chars 05ef-05f2 just impossible to show up 💀
What are you trying to get them
I've tried a bunch of stuff
usually I will either barrier break into 40 and 80, then make sequence of 24000 24040 24080 and try to make 240c0 from it (so that I don't have to barrier break 3 times, also makes it faster for others - if this doesn't work then i'd barrier break into 240c0),
then from there I will make 24000 24040 24080 240c0 and make a chain that goes (if I am lucky) all the way to 24f00 24f040 24f080 24f0c0 (when it doesn't go all the way i make a sequence of 4 (eg. 02 03 04 05) and increment it to get the rest of the block starts)
also instead of barrier breaking into 40 and 80 the normal way, you could make a chain of 4 and increment it all the way to 80
that will be faster to get all of the entraces cause you only need to increment 32 times (128 / 4)
23040
wait, wheres the 128 number from
isnt it 64?
2 blocks
i thought u said 40 to 80
yeah that is 128 chars away from 00
oh u meant from 00 to 80
- 𣁀 𣁁 𣁂 𣁃 is [here](#1206592567622373446 message)
Well I mean this works but from box drawing itself it should be doable to get most “normally” lol
if you load up all the known ones into two sides builder with each other and next/reverse tools
ah
it is hard but just a lot of combos to try that’s all
In terms of what to do it should be easy enough, most should be 1-2 step imo
but this works too of course
ok i will try combining them together a bit
Box drawing responds to reverse and other similar things
The last bit when it doesn’t go all the way, what do you mean by that?
look at 22xxxx, i wasn't able to make 22e00 22e40 22e80 22ec0
So what did you do
*one element
uhm it is not finished yet
i will make a chain to get all the way to 22ec0 then probably make 22e00 22e40 22e80 22ec0 manually
and get 22f00 22f40 22f80 22fc0 from that
hmm ok
230c0 𣂀 𣂁 𣂂 𣂃 is [here](#1206592567622373446 message)
And there’s no better way to start off other than barrier breaking a couple times? I thought you had some shortcut like whatever you used to get up to 3ffff or 19000
well you could use other chains of 4 to get started but i think it is better to rely only on the first character (like only on 24000).
or other easily accessible characters
Okay, what other chains would I use?
with normal strats
idk like you could probably just do 20000 20040 20080 200c0 + 22000 = 22040 (idk if this works)
23100, 23140, 23180, 231c0, 23200, 23240, 23280, 232c0
[23040](#1206592567622373446 message) ,[ 23080](#1206592567622373446 message) , [230c0](#1206592567622373446 message)
is there a way to copy left side from 2sb to the right side?
only if you export it into a text file then you import it again on the other side....I think
i don't think there is a button to export the sides
the rest of the 23xxx block starts. All used elements -> #1206592567622373446 message
is this ok? It's late and I don't wanna extract all of them
well it would be better if they were also extracted
It depends on the version you have.. My version has the 2 blue buttons for export
but you can usually combine like 23000 with one of the elements on the left and get 23400 23500 etc.
mine doesn't
This is the version that I'm using... It may be older (maybe) but Alexander_sandu added this buttons for me #dev message
ok
23300-23fc0 recipes. [ Here](#1206592567622373446 message) are all the big elements used
U+22f00 U+22f40 U+22f80 U+22fc0
𢤀 𢥀 𢦀 𢧀 and 𢴀 𢵀 𢶀 𢷀 here #1206592567622373446 message
Example?
Where is all the subtract the letter?
Crazy to me that after you spend however long it takes you to make the 4 in a row there you still have all those other 4 in a row still accessible
uhm i had to search for them and put them on board (searched for the last one and from recipe look put them on board)
paste from sheet
Ok
What should i do next? (CHOOSE UNWISELY)
4
5
2
Entirety of 28xxx and 30xxx
lets go
28040
28080
what about pools?
i wonder
Only d e f this time… hmm how can I test all the options to see which is the least effort without wasting time?
wdym only def - its just a normal barrier break, no point using 4
Hmm ok
noted
imma try this method next time i want to grind 👀
done
I count about 20 unique sets of loads of combining chars in a row, how do you keep track of them all and try all the options?
I get overload and I discard them
280c0, and lineages for 𨀀 𨁀 𨂀 and 𨀀 𨁀 𨂀 𨃀
28100 28140 28180 281C028200 28240 28280 282C0 28300 28340 28380 283C0 28400 28440 28480 284C0 28500 28540 28580 285C0 28600 28640 28680 286C0 28700 28740 28780 287C0 28800 28840 28880 288C0 28900 28940 28980 289C0 28A00 28A40 28A80 28AC0 28B00 28B40 28B80 28BC0 28C00 28C40 28C80 28CC0 28D00 28D40 28D80 28DC0 28E00 28E40 28E80 28EC0 28F00 28F40 28F80 28FC0
every 28xxx entrance basically
28160
damn wtf
wtf 281f4 is dead
i think it was a zombie
i made it w/another recipe and now it combines
281b8
032A. Follow the reply for the missing elements
man kiyan has some cool strats for getting lowercase unicodes
i want to try them too
especially this one.. imagine just telling the ai "hey, turn this character into lowercase" and it just works ??
- the quoted version is here -> #1206592567622373446 message
i think there is only like 32 characters left below U+1000
except \u01-\u1f, \u7f?
i think i hvae a better add the letter alphabet recipe than kiyan
or at least a lot more organized
they arent even in the sheet
theyre still characters below U+1000
U+`1000 isn't a codepoint
sure it is
wait what?
how does bro not realise
oh i added a backtick
no you didn't
i removed it it says edited
it says (upraveno)
my bad alula.1s please dont launch a nuclear missile towards me
I Am Alula From Hit Indie Game OneShot, Region 'The Glen'
032F. The elements used are the ones with arrows. you can find the full recipes for them [here](#1206592567622373446 message)
💀 @graceful marsh
Called it
did it pick up?
u+0331. The element used is -> [here](#1206592567622373446 message)
I have sent a group of italian gnomes to loot your house for pluralising the plural form
do not do that again ! ❌❌👎
After this I'm gonna buy some salamis to make pizza myself
do you like cactis?
i love my oxens too
i love eating lots of ice creams
delete that now.
good going obby you failed the task
no i didnt?
you did.
Pi shows up just to throw a rock
we were pluralising pluralised words
Obby, Now you need to follow my Portugal ??? Lineage
i thought we were adding an s to words that u dont say in their plural version
Nah
The task was pluralising a word that is plural in construct already
you're mixing it up with simply uncountable words
I think this should have explained everything
A shame people didn't continue ragging on the Italians though
Could've done a dish of pennes
Maybe you shouldn't have claimed the most notable ones early on, nobody remembers about ravioli existing anyway..
Fair
Although saying that the pasta route could bring the utterly devilish macaronis
U+2245e
apparently wiktionary lists "macaronies" as a plural of macaroni.. There's no way a human actually can be that stupid
male cjk
Okay time out I think we both need to hunt someone down
Wow
Incrementing can give you a gender apparently
????
Eh, it's probably a token prediction thing
Same old nonsense that shits out emoji from nowhere
wild
Is that a different 4 in a row each time?
Emoji fail?
Can I see video of what the peak efficiency looks like with many chains at once when it hits this? I’m curious
alfo voice reveal is gone
started adding them
Are you suffering?
do you need the recipes?
yes
great!
Wahoo
fuezt did you add my unassigneds yet
i would say no ig since i didn't see them
so fuezt do you need the recipes to add them
here
yes (and i have them for alfo)
alright im sending you my savefile a few hrs later
Sam'ere
I assume its alright if its in binary right
Fuezt what if my savefile is in ternary
that a good question
I'd be curious to know how many elements alfo has
I would assume its a huge jump from last time
Who is currently in >100k territory
mr. infinibrowser
hes a really experienced player
he has a lot of hours on the game
what happened
hall of fame !!!
Does anyone have 030D in an element? No matter what I try it avoids me
it's the last combining char left
Watasquare where is that checker
under there
Y'know what, I'm in a good mood, I'll give it to you
Under where?
in my hea#
Prepend Hashtag fail
under pins .. which pins and where? you'll never know.
Pins of All Partulid Species
script to check for if you have any Partulid species, and if you dont your savefile gets wiped
i think my Bones are collapsing. Lol.
still waiting for the first 200k
If it took around 6 months for the first 100ks to roll around
i think that's because I turned on VODs after I already started streaming
127k i think, not home rn
bro is getting 4096 elements daily
Its all in CJK Unified Ideographs
17783
yeah that's quite a lot. But we could get most of them by just combining them together, maybe?
also can someone please fix 04c0? one of the ingredients is nowhere to be found (its recipe)
How did you know? I just passed yesterday 160k.
time traveller
Radu have you incremented any of your 23xxx yet
nope. I just created the block starts
I focused today only in Combining Diacritical Marks
I found that Pe̍h-ōe-jī (search on wikipedia for more info) is used with the last diacritical mark left. Anyone has any idea how to create it?
I'm gonna post a request on awwm for it
tf is this jump 💀 + =
all i can see is boxes 😭
ahh
What
but about 100 of them are 2xxxx garbage
yeahh
why do I have 0020 in my save
click to expand
cool
What dis boi do? On mobile rn so cant check
.
INSIDE elements???!! 🤨 📸
filtered out impossible stuff so you guys will stop talking about it
who is brent?
Who?
what?
Asked
I asked
minecraft pro
probably cant beat a blaze
the only dragon in my heart is you
You = @slate whale
great now go for the chaos guardian
Pe̍h-ōe-jī and 030D
i am trying to get 2501 out of this
im a dragon?
Dragon deez nuts across your face
emoji suddenly changed? What???
Refresh and try again?
Ofc this happens when laurasia leaves
i refreshed. Still that emoji face
check if you have two of the same element
Element list?
its ❓️ for me
Did you do the recipe? Or spawn it in?
what did you do to make it become 🤔, or did it just suddenly change
I spawned in "━" on a new mobile save
Is that still 🔥?
do you mean something like this?
idk, it's a white square
No I was asking if that was a ss of your element list as the list that shows all your elemnts
I just combined a few other elements and noticed that it changed
in the screenshot and in the file all elements contain 2501
Does it say anything different in the recipes of that?
Maybe we could let asd do a specific combination with ❓ version and then let you do it with 🤔 to see if ai remembers the combination?
I'll try deleting 2501 from my save file and crafting again with the same recipe
Make sure to have a copy of this one
well
check api response?
do you mean check console? i just don't know what that means 🙂
network tab
Do you want me to check something when creating it? (to help you understand anything better?)
first time creating it
it doesn't matter because the server doesn't know when you craft it anyway
Damn
Question mark for me too
What's the first undiscovered char on the sheet now
the hebrew stuff
Ah
hebrew triangle
Shit
yea...
I don't know if that tells you anything
click on the latest request
a side panel should show up
you can check the api response in the response tab from there
that's the headers tab
same
after clearing cache isNew should be false
I also have a VPN running with a US server if that matters.
i cheated in the quoted version and tried this myself, i have question mark emoji
i tried all the options with deleting the cache and the item from my save file and it still gives me the face emoji
im in europe
what if you set your vpn to a different country and try again
wow so it definitely depends on location
She leaves and joins more than the americans have switched presidents
so we have an emoji desync between the us and other places?
@thin warren
she told me she only left for a day
none of us posted it having a white square emoji
it's definitely related to white square bug
white squares are also dependent on location right?
yes
when i don't use vpn all my first discoveries are white squares (i am from Russia)
white square is caused by
first discovery -> server tries to generate emoji -> ??? -> death
the different emoji to this element is also caused by the same thing?
so another person has to do the combination for the fd, and only then the server will generate the emoji
by death u mean dead element?
no i mean server no return emoji -> white square on client
so theres the ic at home thing for infinibrowser
does it check if emojis are off? what if cuz of ur location u make a combination with white square emoji, and if its different from the expected emoji do u get banned from ic at home for faking recipes?
ic@h doesn't even check the result
the white square issue is pretty glaring anyway, you can't miss it
ok well bergoros got a different emoji from a us vpn
i mean like it verifies the recipes somehow
ok theory about the bergoros situation
fd is made -> emoji generated and saved -> ??? -> emoji is somehow regenerated but only on the us server
it doesn't verify any recipe
then you would get banned
yeah how will it know if theyre fake
multiple people can do the same combination
yeah thats what i mean by verifying recipes
it's only for trusted people for now anyway
what if multiple people get different emojis
nothing happens really
whichever emoji gets sent in first gets added i suppose
as long as the result are the same
so elements in ib might have incorrect emojis?
besides this should be the only known case of this happening
there are already incorrect emojis in IB as we speak
I think you shared your element count in the past and it was "160k" but you just said you got that so I must've remembered it incorrectly
maybe its possible to test it by making a bunch of combinations on us vpn, then making a bunch of combinations on eu vpn
i thought I was going to increment it. but if he wants to he can. Although someone would still need to add the recipes to the sheet..
I do not want to. go for it
that was just 1 combination
what other combinations do you want to do
What
Aint u one of those so called Americans?
Maybe
if u are then try this combination
we gotta see which emoji u will have
And check what emoji
poseidon please be quiet
Cant wait for it to be another different emoji
huh what bad did he say
exist
oh i see
poseidon will never stop existing, he will always show up
that cashier at the grocery store? his first name is poseidon
that classmate you had in school? his father works as a judge
I made the pope sick.
that history teacher you had? her favorite thing about history is kings
that friend you have? his favorite memory is being in a cruise ship, in an Ocean
you will never escape
king taco? you cant spell king taco without king
i am not loyal to either side
also i dont think any of the guys who just basically spam messages in prehistoric species are online rn
so we are fine
so it takes 45 minutes to validate the new / changed recipes?
with 5318 of them yes
well the day you get all unassigned from plane 0 to 16 in one day you should probably go see a doctor💀
well what if 800000 people only go for 1 character each
or 2000 people go for 4000 chars
one man's garbage is another man's treasure
( maybe )
damn we had alpha fish, now we have sigma fish 🗣️
but we would need to have block starts above 40000 so not possible rn
you still have the problem that if im not wrong no one have character above plane 3 (in unassigned) , and there 13 more planes after this
if all of us conviced 5 other people, and all of those another 5 people etc. we could do it easily
we will quickly run out of people to convince
e00xx: sad noises
only up to 800k people
already a more doable project in term of 100% is the Private Use Area block (without supplementary)
what if i use it publically?
i mean plane 0, 1 and 2 could be pretty doable to get all
will i get shot by the unicode police 😱
cause there's not that many
plane 0 for sure , even if i think i have some unassigned missing in my list for plane 0
but probably you'd just make a program that gets all block starts and increments them. if he gets stuck, you do it manually
wait the largest possible unicode is in PUA? i didn't even notice that in the sheet
ooh and that is why unassigned only has 2 in the last two planes
but wait
isn't it duplicated? like 10ffff is both in unassigned and in pua
yes but eh, since those in plane 15 and 16 are Noncharacters i believe they have their place in unassigned too
ok 21f00 fixed
does anyone has something with 0651 inside?
guys did u know if u go to this spot of a strawberry jam map in celeste, madeline says glug glug
(this will be on the test!)
I got it with the dotted circle yesterday
Arabic Shadda + Latin Unicode
I didn't have much time
Fake Wrong recipe
ok
U+23089
U+0651
Nice
, California
why did I start hearing "tranzitivní" when the sound for first discovery plays?
The czechisation is already coming for you. It's too late.
U+23596
06FA
u+237CD
Yayyyyyyyy well done
all missing block starts in the range U+24100 - U+246c0
Oops sorry I guess I didn’t get around to 24xxx
it is ok
you can do a different range
i am glad radu did the 23xxx because I learned how to make the block starts much easier. i didn't realize incrementing worked so well because I tried it I think once and it didn't so I assumed it didn't work well fsr.
all missing block starts in the range U+24700 - U+24fc0
4 character elements here #1206592567622373446 message
https://docs.google.com/spreadsheets/d/1BgGFvBZCPQM97highmLqVxlwczQvgP9A0K_jjwB9sm0/edit?gid=986044087 updated the notebook
wait aren't the 05xx done?
no?
What's missing now?
U+24cc0
𤠀 𤡀 𤢀 𤣀 here #1206592567622373446 message
the rest of hebrew is fine...
wtf is this pace
How many different 4 chars did you use (and did you keep this lineage on board as you were making it?)
count
You gotta show me one day how you make these lol, too deep I don’t see how you would have tried all the options here
U+24474
well if it was stupid how did you figure out
btw if you didn't see, i updated the checker script
link brokey sorry lol
also what, filter out impossible? but why would you need to do that
eh
cause it now checks for unmarked characters contained inside elements and not necessarily isolated
(which includes different kind of spaces and period)
and i assume people would get confused
Ohh
downgrading violentmonkey to version 2.20 solved all my problems
48.7% CJK now lol
and how do i downgrade
no?
guide from the Internet for firefox:
go to the addon's page at addons.mozilla.org
click Info located on the right side of About this Add-on
or scroll to the bottom and open the Version information tab
click See complete version history >>
wha
t
very informative 🔥
What the hell happened that put CJK up so much
nuke
how to actually downgrade tho
DraCJKula decided to join the Unicode thread to help out
Nice man, truly
what
Very helpful! Thanks Niko!!!!!!!!
damn
the name's Profily serverů 😡
Thanks Niko!!!
niko indeef
there is a "see all versions" button on the violentmonkey page, where you can select a version. Just don't forget to cancel the automatic update
i must be dumb because like, idk what to do. i can download the source code?
hmm, i don't remember how i installed this on a pc. I only remember that it took 1-2 clicks
clue: CJO_Fish
that's not downgrading violentmonkey
Prehistoric: 91063
Unicode: 91083
very cloae
close
?
how do you not know
aaaa
ok
got
epic
wonder where idea for 030d was from
and those other massive combining char chains...
"fixed" faq slightly
I asked chatGPT where 030d is used and it gave me this answer.
When typed, it appears over the preceding character:
a̍ (lowercase "a" with a combining vertical line above)
e̍ (lowercase "e" with a combining vertical line above)
then by searching on google for both letters I found Pe̍h-ōe-jī that it's quite famous so the AI must now about it
i see
do you not know that I use tab script
?
2 thighs left until what?? 😥
until i
its a snake
0e1a and 0e34 right?
its a malayalam letter obviously
@candid trellis
Who?
do you love strings?
Depends on what strings you’re talking about
In that context I do not love strings.
i used this string
Count your days
U+0E1A บ
just use Remove / Delete [thai character]
oh i can try that
it might not work but it should
ok ill now post a slightly better lineage for it
Or if you have a good recipe for บ้าน or Translate To Thai this is quite optimized
oh jesus
the reason i even wanted to use string.remove here is cuz i couldnt remove 0e40 from 0e1a
but u just got it without an 0e40 next to it, nice
Which will be finished first?
5
9
1
CJK
thanks to chatGPT...
An example of a word where "บ" appears without "โ" is "บ้าน" (bâan), which means "house" in Thai. In this case:
"บ" produces the "b" sound,
"้" is a tone marker (high tone),
"า" is the long "a" vowel,
"น" represents the "n" sound.
So, "บ" can be used in words without "โ" and retains its basic "b" sound.
I had it with the 0e42... and also it couldn't be removed
this is a little tricky. it's a combining char
I have it already, but not isolated
how did we get other combining chars
forced divorce
Oh, I see. So you reserve certain tabs for certain tasks exclusively?
Yeah idk how we did that I’ll need to have a look again
Cause usually deleting deletes the mark too
8def
how was it done with other examples? can I see?
you can just add a new tab anytime you want so
but yeah,I do have a few reserved tabs
I’m thinking I’ll do the same
Maybe one to keep 3/4 in a row idk
hard to tell them apart, how does moving things between tabs work
0E34
Road + 中文 + Delete The First Character
A9B4
Damn, I would never have guessed it would transfer like that
I guess if I make the lineag off the side and use a separate area it could work
I was also not sure. It was my first time trying something like this
Javanese block done. "next-codepoint" is the goat
any ideas on how to get the hebrew/yiddish stuff?
have you tried combining all the elements of the block?
maybe with translate?
I tried...
do we have anything in the range 05c8-05cf? you could try combining something like 05ce 05cf 05d0 05d1 with 05e5 05e6 05e7 05e8
the idea is that the unassigned will make the ai give you 05eb etc. which is also unassigned
In 2sb? yikes
Why those specifically
I tried a lot there to combine like that...but instead of giving an unassigned char it changed the letter order I thought you were speaking about the normal letters. ignore
Is someone proficient in writing with hebrew here? I need a lineage for the first
maybe I can force it to give 05F2 like this
and from here maybe somehow we go backwards
hmm is this from nata updated search
yes
I still have about 200
can you add links on sheet somewhere (I realise those are protected, but I’m sure you’ll find somewhere to put them so I don’t have to ask again to link the updated searcher)
I put it in the tools directory
should do Ty
ae01...
lmao
ae0a
7A42
someone please tell me i missed something
who did the whole chain but never said anything
please tell me i missed soemthing. anything obvious
#1206592567622373446 message
for the intial sequence of 4
ae35
ae39
ok yeah im turning off that tooltip
alright made the mobile look a bit more like my pc
ae44
ae4b
#1206592567622373446 message
#1206592567622373446 message
ae4f
bruh I'm now view-only
ae58
79D1
粵語百科 on browser