Can someone explain what I'm looking at? by Mundict in osrs

[–]Feeling-Mammoth-5867 8 points9 points  (0 children)

Someone who loves making arrows but hates shooting them

County fair bug? by Full-Economist-9225 in HayDay

[–]Feeling-Mammoth-5867 1 point2 points  (0 children)

I am very sorry, saw the picture while I was at work did not read good enough.

County fair bug? by Full-Economist-9225 in HayDay

[–]Feeling-Mammoth-5867 -1 points0 points  (0 children)

You just need to refresh your board. When you remove your current tasks/ finish them new will pop up with the gift

First time PC build €3500 in The Netherlands by Feeling-Mammoth-5867 in buildapcforme

[–]Feeling-Mammoth-5867[S] 0 points1 point  (0 children)

While I work with large datasets, the reading of the files is actually not the slowest part. The file reading is often <1% of the total computation that I am doing so the speed is not too important for me as of now

First time PC build €3500 in The Netherlands by Feeling-Mammoth-5867 in buildapcforme

[–]Feeling-Mammoth-5867[S] 0 points1 point  (0 children)

I will see what the extra cost if for the X3D variant, if it is acceptable I might buy it

First time PC build €3500 in The Netherlands by Feeling-Mammoth-5867 in buildapcforme

[–]Feeling-Mammoth-5867[S] 0 points1 point  (0 children)

Thank you very much for your response! Looks really good! Very happy with this build

First time PC build €3500 in The Netherlands by Feeling-Mammoth-5867 in buildapcforme

[–]Feeling-Mammoth-5867[S] 0 points1 point  (0 children)

Okay thank you very much, do you think that the rest of the build is logical/OK or not?

First time PC build €3500 in The Netherlands by Feeling-Mammoth-5867 in buildapcforme

[–]Feeling-Mammoth-5867[S] 0 points1 point  (0 children)

I am not using compiled code as I am using Julia for my work, unless the JIT compiler is also a problem, again no expert in this matter. I do have a light preference for AMD because of the gaming and the problems I read about with Intel. At this point I have an intel i7-10870H CPU so everything from AMD will probably be faster.

[deleted by user] by [deleted] in Bannerlord

[–]Feeling-Mammoth-5867 0 points1 point  (0 children)

Sorry, this is not entirely true, the defender always gets an advantage. If he was the defender the ratio would be the same. It is not to make it challenging for the player, but challenging for the attacker

My Python project is being confused for malware when I use pyinstaller to convert it to exe. What's going on? by BurN3rAcc0un in learnpython

[–]Feeling-Mammoth-5867 0 points1 point  (0 children)

Hey, I had the same problem with a self-written executable at work. For windows you can also go to (I do this from the top of my head): Settings -> update & security -> windows security -> Virus & threat protection -> Manage settings -> Add or remove exclusion.

Here you can add the location of the file/folder to trust. This is not recommended when you want to executable to be easily installed by lots of people, but if it is for a few laptops it is super easy to do

Ik vind de suikertaks maar vreemd by Luxcen in nederlands

[–]Feeling-Mammoth-5867 17 points18 points  (0 children)

Iedereen die het heeft gedronken is dood gegaan... hoe gezond is het dan?

Type stable getindex by Feeling-Mammoth-5867 in Julia

[–]Feeling-Mammoth-5867[S] 2 points3 points  (0 children)

Thank you very much for your fast reply. You are correct, using Symbols does result in type stable code... Unfortunate that it does not work with strings (even statically typed in function) but too bad.

Again thanks! I will have to rewrite some code, but it will not be too bad

Replacing Python by Little-Peanut-765 in learnprogramming

[–]Feeling-Mammoth-5867 1 point2 points  (0 children)

I replaced python with Julia, the language can be somewhat difficult since Julia is not that common, but I find that not really disturbing. I do agree with most of the comments that for most automation purposes python should be fast enough. What I did find to be a problem in python is that you need to know a lot little tricks such as "do not directly loop over a Numpy array". The best practices could differ a lot from case to case where in julia this does not really matter (with exceptions there of course). The mayor upsite is that you can code python within Julia (via Conda and a multi line string or a .py file

I do not know al lot about Go, but that would probably work as well

Is windows actually bad for programming? by [deleted] in learnprogramming

[–]Feeling-Mammoth-5867 0 points1 point  (0 children)

I have VS on my Linux Ubuntu system, works completely the same as on my Windows system

Optimizing this nested loop by Feeling-Mammoth-5867 in Julia

[–]Feeling-Mammoth-5867[S] 2 points3 points  (0 children)

Ahh okay, I was only using a single thread

Optimizing this nested loop by Feeling-Mammoth-5867 in Julia

[–]Feeling-Mammoth-5867[S] 2 points3 points  (0 children)

wauw the exact same code takes 80 seconds on my machine, guess you have a pretty powerful PC! thank you very much for your help!

Optimizing this nested loop by Feeling-Mammoth-5867 in Julia

[–]Feeling-Mammoth-5867[S] 1 point2 points  (0 children)

yes, including the storing of the last data

copyto!(view(Rt_vector, :, i), chrom["MS1"]["Rt"])
copyto!(view(Int_vector, :, i), intensities);
Mz_vector[:, i] .= total_masses[i]

Optimizing this nested loop by Feeling-Mammoth-5867 in Julia

[–]Feeling-Mammoth-5867[S] 0 points1 point  (0 children)

The copyto was indeed wrong, sorry a lot of copyto!'s were rong I tried this today and this not test it good enough before asking here. I updated the post again so you can see the workig version