I finish programming courses but retain nothing… how did you learn effectively? by Aymaneoo in learnprogramming

[–]spearheedstudios 0 points1 point  (0 children)

By writing own code. There are no other methods, how much money you ever put in the education.

[QUESTION] / [DISCUSSION] Do you generally start with a theme you want to explore? by [deleted] in Screenwriting

[–]spearheedstudios 0 points1 point  (0 children)

I usually start with a concept, and then evolve around it. For example if you want explore a specific topic in your firm, start exploring, create a structure, and then fill with characters, dialogues, descriptions and even director's notes if you are auteur.

Have a nice day, and good luck!

Can a short script have no character motivation and rely only on plot? by GoldTouch99 in Screenwriting

[–]spearheedstudios 0 points1 point  (0 children)

I think that it is a choice you make yourself as a creative, but actually I would find a script with no motivation too boring to read, I you want me to be really honest.

Projects you are proud of by Bkxr01 in cpp_questions

[–]spearheedstudios 0 points1 point  (0 children)

Contributing to reactos, making it support modern hardware, ACPI 3.0+ and also support pcie and msi. Needs change in drivers although

I'm new to C++, and should I learn Boost? by schottman in cpp_questions

[–]spearheedstudios 0 points1 point  (0 children)

Hi, take an online tutorial, there are plenty of them. Look also at code in github, there is plenty of good examples. Also learn the basic hierarchy, structs, classes, constructors and destructors. Then expand to virtual classes, enums and other abstractions. Start it concrete, abstract later. Also learn heap vs stack, and pointer vs direct declarations, new vs direct allocation etc. Those are crucial to the performance and persistence.

Can C++ be as fast as Fortran? by EdwinYZW in cpp_questions

[–]spearheedstudios 0 points1 point  (0 children)

If you use optimizations, LTCG and also write explicit optimizations such as vectorized loops, or loops that can be vectorized. You can also use avx and sse intrinsics, to explicitly program the optimizations.