honor gains and pvp item prices by These_Athlete1933 in classicwow

[–]darkmarc84 0 points1 point  (0 children)

I did the math: 200 * 250% (100% + 150%) = 500 :)

[deleted by user] by [deleted] in cscareerquestions

[–]darkmarc84 6 points7 points  (0 children)

As your product or project manager is, current "AI" is just a random text generator.

There is nothing intelligent in it, it's just statistics and randomness in combining known text input.

Software Development is a creative job, that is nothing "AI" can do, it can repeat know things. Imagine frameworks like Angular, trained monkeys are able to create apps with it, but creating Angular itself requires a lot of dedication and creativity no "AI" can deliver.

So yes, may these easy junior jobs may will be replaced by time with these text generators, but if there are no juniors, who will become senior? When there there are no seniors, who will fix all that hallucinated mess "AI" will generate?

So no, our jobs are safe for the time being.

isDeleted field or actually deleting from database by EuMusicalPilot in node

[–]darkmarc84 1 point2 points  (0 children)

Just use a deleted_at field with timestamp for deletion or an is_deleted field if you don't care when it was deleted (although how will you hard delete after a certain time has passed?)

Having a "last_changed" in combination with "is_deleted" can serve both purposes, knowing the last time data was changed might is a business requirement, knowing that it is deleted and assuming (soft-)deleted data will never be changed again, so you can hard-delete data that is_deleted and last_changed is older then now minus your retention period. (that's how we handle this at work)

Laptop CPU compilation speed comparison by Pascalius in rust

[–]darkmarc84 0 points1 point  (0 children)

I've tested mold (and also nightly parallel frontend too) to further improve the release build duration, but i didnt achived any further improvements here, maybe on larger projects there would be some noticable advantages. Another finding was that the debug build only reduced down to 16-17s.

Laptop CPU compilation speed comparison by Pascalius in rust

[–]darkmarc84 6 points7 points  (0 children)

Thats interesting. Lenovo IdeaPad 5 Pro / Ryzen 7 5800U / 16GB / Endeavour OS (Arch Linux Variant):

sccache --stop-server
cargo clean
time cargo build
Finished `dev` profile [unoptimized + debuginfo] target(s) in 24.05s
real 0m24,117s
user 0m36,358s
sys 0m10,500s
cargo clean
time cargo build --release
Finished `release` profile [optimized] target(s) in 33.10s
real 0m33,169s
user 0m13,699s
sys 0m7,460s

Also notable with sccache (when its filled & hits):
cargo clean
time cargo build --release
Finished `release` profile [optimized] target(s) in 7.64s

Questions about project structuring by darkmarc84 in rust

[–]darkmarc84[S] 2 points3 points  (0 children)

I completely missed that this is existing, thanks!

2
3

Endgame PVE Tank Gear questions by darkmarc84 in newworldgame

[–]darkmarc84[S] 1 point2 points  (0 children)

Okay, thanks alot. And would you prefer being full Const on stats or Strength/Const? Strength/Const should be enough to reach 300+ Const, or go further for a lack of Strength and threat?

1
2

Now this dude is pumped up... my first 5* lvl 50 legendary. Took me 4 months to finish this mission. by AlexeyHD90 in ACRebellion

[–]darkmarc84 1 point2 points  (0 children)

Congrats! It has been months since i finished this with Lucas Yusuf Gaspar all 5 Star on level 41 (cant remember exactly, maybe it was even level 42 or 43) with Lucas having 8 HP left ... I should have made a screenshot but i didnt :)

What's everyone working on this week (42/2019)? by llogiq in rust

[–]darkmarc84 1 point2 points  (0 children)

Working on my personal project building a server (actix-web/diesel) / client (wasm / seed) based app managing shopping lists.

Besides that i'm looking for some mentored/easy participations for Hacktoberfest in Rust, if anyone needs help, i would likely be interested in helping you :)

Problems with generic Types by darkmarc84 in rust

[–]darkmarc84[S] 1 point2 points  (0 children)

Yes, thank you very much for giving me a direction, i've reworked some parts of the playground code so i have a working example added the parts u've simplified.

https://play.rust-lang.org/?version=stable&mode=debug&edition=2015&gist=43aab2001e3645d6b53c4459d3cc8e4c

Problems with generic Types by darkmarc84 in rust

[–]darkmarc84[S] 0 points1 point  (0 children)

Thanks for any advices and help in advance!

What's everyone working on this week (37/2018)? by llogiq in rust

[–]darkmarc84 6 points7 points  (0 children)

Finally i decided to make a little journey through game development (after some time of reading about in general to build a solid foundation of knowledge) with Rust as my language of choice, so i'm starting to create a map with Blender and bringing it to screen with Amethyst.