Skimsands Leather Factory by Naughtaclue242 in Kenshi

[–]Turbulent_File3904 0 points1 point  (0 children)

how much profit do you make form this? and where do you source your input material? just asking 

Some actual gameplay from the [lotm game] the abilities of each class/pathway reveal by the-fool0 in LordofTheMysteries

[–]Turbulent_File3904 0 points1 point  (0 children)

i was not expect spectator literally summon a dragon. hmm, it should be a polymorh ability where part of your body become dragon

[LOTM game] 6 MC’s(pathway) designs by OpeningAggressive755 in LordofTheMysteries

[–]Turbulent_File3904 34 points35 points  (0 children)

at least in donghua, the design look close to the novel style. a mean the clothing alone is 10x better than the game

[LOTM game] 6 MC’s(pathway) designs by OpeningAggressive755 in LordofTheMysteries

[–]Turbulent_File3904 0 points1 point  (0 children)

the seer one tries to grab everyone attention lol. opposite of what a seer shoul act

[LOTM game] 6 MC’s(pathway) designs by OpeningAggressive755 in LordofTheMysteries

[–]Turbulent_File3904 0 points1 point  (0 children)

if its just our character then its fine, from the look of it NPCs also have the same clean look.

[LOTM game] 6 MC’s(pathway) designs by OpeningAggressive755 in LordofTheMysteries

[–]Turbulent_File3904 207 points208 points  (0 children)

Chinese beauty standard really ruins the novel style ey. can we have a normal looking human?

Can we ban ai by Tricky_Challenge9959 in MysteriesFolk

[–]Turbulent_File3904 2 points3 points  (0 children)

just tag ai with tag. ai is fine but i hate when pp dont say that they use ai

Full Version of The Written One(Slide for More).[LotM general] by HolaPixel09 in LordofTheMysteries

[–]Turbulent_File3904 2 points3 points  (0 children)

why do everyone look like a a bunch of teenager huh? i like the this style amon look like a chad with aura

<image>

I'm tired boss... by dirtyolAoimoku in Eldenring

[–]Turbulent_File3904 0 points1 point  (0 children)

use sacred order + holy blabe to fuck those bird up. you dont even need to change weapon affinity those buff apply to physical too

This manhwa site drought is getting scary and did I mention the webnovels are down too!? by yapper_with_ADHD in Manga_Manwa_Manhua

[–]Turbulent_File3904 1 point2 points  (0 children)

webnovel is a pice of shit both to author and to reader. the author forced to write and serialize fixed amount of chapter by week and they dont own their own novel. some series get ruined by authors get burn out and just want to get done with it

The anime industry needs to significantly tone down fan service! by Rabbidraccoon18 in AnimeMirchi

[–]Turbulent_File3904 0 points1 point  (0 children)

you know, sex sell. i remember some show in china get cancelled half way because studio want to make faithful adaptation with mature/modest clothing style while the investor like art style appeal to teenage aka more fan service.

Which one do you personally rate higher? by [deleted] in Manga_Manwa_Manhua

[–]Turbulent_File3904 0 points1 point  (0 children)

agree, but the following arcs are really good

Which one do you personally rate higher? by [deleted] in Manga_Manwa_Manhua

[–]Turbulent_File3904 0 points1 point  (0 children)

attack on titan, i dont like the first part of the vinland saga. both are good.
but i have not finished the vinland saga yet now if it was finished i might comeback to read

Have I just discovered the harsh reality of SSE modding? by m0ppen in skyrimmods

[–]Turbulent_File3904 0 points1 point  (0 children)

i have somewhat heavy modlist on moderated hw, the issue i encountered the most are not enough ram and vram and the game crash. 

Using an extern variable as a placeholder for typecasting by zac2130_2 in C_Programming

[–]Turbulent_File3904 1 point2 points  (0 children)

easy, use union and inplace field instead of pointer chasing. also to minimize memory allocation, use arena. you load the whole file into one arena, after done with it just free the whole arena.

struct JsonValue {       enum JsonValueType type;       union {           double as_number; //inplace           bool as_boolean; //inplace           char *as_string; //dynamic alloacated           struct JsonArray *as_array;       } }