メリーの水槽 歌ってみた 9Lana
seen from Argentina

seen from Peru
seen from Italy

seen from United States

seen from Canada
seen from China

seen from United States
seen from China
seen from United States

seen from United States
seen from France
seen from China

seen from Poland
seen from Germany
seen from China

seen from United States
seen from Japan

seen from United States
seen from China

seen from Australia
メリーの水槽 歌ってみた 9Lana

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
Nora and Filein !
I've should be post this much earlier but eh
HELLO!
This a guide post for everything i posted/will post
I think I need it bc i somehow decided to make my own au
So this will be updating with my post
Will be updated in process
About au
SkyShot au
This is Sky:COTL x OneShot crossover that right now is in a work
You can find it with #skyshotau #nora tags
Below this will be comics or something that i will made so yep!
Right now there is only one post about it but i will add more context about it bc its fun and my longest living project!
CollapsedShot Au
OneShot au where the world collapsed
Also can be find with #colappseshot au and #filein tags
About me!
Hello! Im Harisia, i ended art school so basically im an artist, right now im in college and should become costume artists in theory.
Im from Russia and if i will disappear from everywhere that means vpn stopped working completely :p
Rn trying to improve my digital skills to compare with my irl skills
Also im know English only because i wanted to play games without waiting for translation and watch more YouTube videos for my favourite fandoms, and now i think about to learn Spanish for more context and maybe Japanese/Chinese but im too lazy for it so who knows when i will learnt it :D
And my pfp picture is something that i found in 2022 so maybe i will update it too
▕▙▒▒ (夢) (Yume) // Dream // FILEIN ft. SEKAI
Memories of life. Vivid recollection of death. Aberration of hierarchy. It was an unpleasant dream. For how long must I imitate humanity? I received no answer. Nor an escape.
▕▙▒▒ - ▖▖░▟▗▕▔▜ by FILEIN 譯分歌文
uh, so yeah, it's done?
kinda gave up at the end, might write a post about all 3 videos later.
still haven't really figured out the story, im probably like 70% there and that's enough for me.
if anyone else finds this somehow, i encourage you to analyze it yourself, read into the story using my notes.
the story is very interesting, especially at this age of AI slop going all around the internet. though it is about AI that is as conscious as a human, so yeah.
no idea what to add now, might continue doing this for different songs later, or not, i'll see how i'm feeling.
https://rentry.co/FILEIN3Translation
https://rentry.co/FILEIN3Notes

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
終末期 - 星界 by FILEIN 譯分歌文
Ya know I should start giving these a name, realistically what I'm doing here is a bit more than just translations, it's like a detective notes, SCP articles if you will.
I don't care, I'm gonna start calling these 譯分歌文 from now on, simple and intuitive.
Anyways, here's the song:
and here's the rentry.co links:
https://rentry.co/FILEIN2Translation
https://rentry.co/FILEIN2Notes
メリーの水槽 - 星界 by FILEIN 譯分歌文
Done!
This is the first video (I'm not wrong this time), took me a while, rewrote everything. But this time I'm smarter!
I put it on rentry.co to not have to mess with tumblr formatting bullshit, anyways, here's the original video:
and here's the rentry.co links:
https://rentry.co/FILEIN1Translation
https://rentry.co/FILEIN1Notes
[3dsmax] Executing MAXScript file from Python
So the Python API in 3ds max has a method executeFile(), specifically for executing Python files from the MAXScript interpreter.
However, apart from the MaxPlus.Core.EvalMAXScript() proc in the Python API that basically executes MAXScript strings, there isn't really any equivalent function for executing MAXScript files from the Python interpreter.
I've previously dealt with this by just reading the .ms file with readlines() and then just passing it as a string to the EvalMAXScript() method, but this quickly becomes limiting when trying to deal with more extensive MAXScript methods (such as getThisScriptFilename) and needing local/global variable scopes to be defined appropriately.
I've therefore switched it to writing to a temporary file buffer, and then running the MAXScript using fileIn(), which so far has solved every use case I've needed it for thus far.