• 110 Posts
  • 24 Comments
Joined 11 months ago
cake
Cake day: June 8th, 2024

help-circle


























  • kiri@ani.socialOPtoMorphMoe@ani.socialPostgreSQL Girl (by GTSWorld)
    link
    fedilink
    English
    arrow-up
    5
    ·
    edit-2
    1 month ago

    Artist tagged it with 擬人化 (gijinka), which means personification. Here is example of just text+girl, but it still has tag ‘personification’.

    Everyone has their own view, this particular author presented PostgreSQL as a girl with suspenders for very short shorts (like if they were elephant’s ears or smth), maybe it’s not as unusual as, for example this one, but I think it fits well enough to be here. Maybe it depends on the person, and so I shouldn’t post something like this too often (or mb at all). I don’t know much about art, so I just trusted the author’s tags, as I mentioned earlier. Thank you for your observation.








  • Yep, to be honest, at first is seemed somehow difficult for moe slice, I guess because of hard transitions between frames. It have quite unique not straightforward way of storytelling, and full of native japanese jokes (in 365 less).

    In spite of that I really like “Hidamari Sketch” - it’s beautiful! Perhaps if there weren’t specific community on lemmy, I would never have known (or notice) it, thank you very much! Today going to watch new season, I’m looking forward to new characters!

    By the way, I knew that “Madoka” was written by the same author so subconsciously start to draw parallels between the characters. After all, Madoka and Sayaka were like Yuno and Miyako, they deserved to be happy too (T_T)… It’s like I began to understand “Madoka Magica” way better, and now I feel even more sorry for Madoka-girls. I watched only TV-series, can’t wait the last movie to be out, to watch full tetralogy.






  • kiri@ani.socialOPtoProgrammer Animemes@lemmy.worldC chan
    link
    fedilink
    English
    arrow-up
    5
    ·
    edit-2
    2 months ago

    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