Isn't it friday?
kiri
That's not anime, but did you read "Ashigei Shoujo Komura-san"? Looks like your type) Concerning anime, I think you might like "Sakamichi no Apollon".
There is one more intresting fact. If you use -O3
flag (for clang -O1
, -O2
, ...) compiler performs tail recursion optimization and transforms the recursion into an infinite loop, so there is no stack overflow.
Assembly
gcc -O0
.file "main.c"
.text
.globl main
.type main, @function
main:
.LFB0:
.cfi_startproc
pushq %rbp
.cfi_def_cfa_offset 16
.cfi_offset 6, -16
movq %rsp, %rbp
.cfi_def_cfa_register 6
movl $0, %eax
call main
nop
popq %rbp
.cfi_def_cfa 7, 8
ret
.cfi_endproc
.LFE0:
.size main, .-main
.ident "GCC: (GNU) 14.2.1 20250207"
.section .note.GNU-stack,"",@progbits
gcc -O3
.file "main.c"
.text
.section .text.startup,"ax",@progbits
.p2align 4
.globl main
.type main, @function
main:
.LFB0:
.cfi_startproc
.p2align 1
.p2align 4
.p2align 3
.L2:
jmp .L2
.cfi_endproc
.LFE0:
.size main, .-main
.ident "GCC: (GNU) 14.2.1 20250207"
.section .note.GNU-stack,"",@progbits
clang -O1
.text
.file "main.c"
.globl main # -- Begin function main
.p2align 4, 0x90
.type main,@function
main: # @main
.cfi_startproc
# %bb.0:
.p2align 4, 0x90
.LBB0_1: # =>This Inner Loop Header: Depth=1
jmp .LBB0_1
.Lfunc_end0:
.size main, .Lfunc_end0-main
.cfi_endproc
# -- End function
.ident "clang version 19.1.7"
.section ".note.GNU-stack","",@progbits
.addrsig
I couldn't help but notice that can-can from comic opera "Orpheus in Hell" by Jacques Offenbach in modern arrangement makes it even more weird and comical, especially for me who isolated from context.
I really appreciate your support これからよろしくおねがいします!
It is created — !avid@ani.social. I guess AMVs will be posted here more often than humorous videos (clips).
You will be the first person I tell about creating such community.
Thank you for answer. I have been planning to create a community on this topic for a long time. Maybe I will do it soon, when I figure out how it should look like... and find enough sources for it. Thanks again
I have a question. Are there any communities where i can watch anime webm/mp4 - short anime fanmade videos (for example) +AMV +otoMAD? What is marked as "clip" in r/anime is not exactly what i mean. I know there are 4chan thread where some people post that kind of videos, but too few of them
And why AMV and genral anime videos are not so widespread in Reddit and lemmy? r/amv is not really popular and the videos that i found, for example in r/bocchitherock, were have maybe 10-70 upvotes. Just because youtube and animemusicvideos.org or animenews exist?
XD