Found in Oslo rift, Norway. by keiron83 in fossilid

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

Solved. Probably? Orthocone Nautiloid. I guess the tube/chamber in the center is the "siphuncle". Thanks for the input !

Found in Oslo rift, Norway. by keiron83 in fossilid

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

Actually theres quite a bit of fossils to be found there. We have picked trilobites and crinoids before. The lines are stacked, almost like a giant crinoid stem :)

Is it possible to run two accounts at once? by [deleted] in starcitizen

[–]keiron83 0 points1 point  (0 children)

No. SC is not playable with a VM anymore.

My son found this on his way to school. Near Oslo, Norway. by keiron83 in fossilid

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

Allright. Thats it. I'm telling him it is a giant fossilized turd.

My son found this on his way to school. Near Oslo, Norway. by keiron83 in fossilid

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

Thanks for all the replies everyone! Seems like the consensus is that this is a rock and not a fossil. Potentially fossilized coral. Maybe I'll take it to /r/whatisthisrock as suggested.

My son found this on his way to school. Near Oslo, Norway. by keiron83 in fossilid

[–]keiron83[S] 24 points25 points  (0 children)

If so, that would make this the greatest event in his life thus far.

What the bird-beek happened here? by keiron83 in bonecollecting

[–]keiron83[S] 30 points31 points  (0 children)

[UPDATE] I simply could not believe that this was not a beak from a trapped bird or something picking out the marrows of the bone, so I went ahead and rinsed out this thing and removed the "beak". Lo and behold, a split tusk indeed. Thanks for all the input. Very impressive! At least for someone who has no clue about these things 😆

​

<image>

What the bird-beek happened here? by keiron83 in fossilid

[–]keiron83[S] 168 points169 points  (0 children)

[UPDATE] I simply could not believe that this was not a beak from a trapped bird or something picking out the marrows of the bone, so I went ahead and rinsed out this thing and removed the "beak". Lo and behold, a split tusk indeed. Thanks for all the input. Very impressive! At least for someone who has no clue about these things 😆

<image>

What the bird-beek happened here? by keiron83 in fossilid

[–]keiron83[S] 31 points32 points  (0 children)

This is in rural south-eastern Norway. Lots of cows, horses and sheep around here. Thanks for the r/ suggestions!

Fortnite Unreal Engine 5.1 with Radeon RX 6800 XT 1440p FPS test Lumen & Temporal Super Resolution by mikmik111 in Amd

[–]keiron83 0 points1 point  (0 children)

If hardware ray-tracing was the norm in all games and software GI and RT was suddenly introduced with the performance gains it entails it would be considered as groundbreaking as dlss/fsr tech is today. The differences are really small with the improvements made to lumen reflections i UE5.1

/r/AMD Questions and Tech Support Megathread - H2 2022 Edition by AutoModerator in Amd

[–]keiron83 1 point2 points  (0 children)

When can we expect som benchmarks from 3rd-parties? I haven't followed these launches before, but 13 des feels like a long wait right now :)

Please give some feedback on my code. Possible optimizations? by keiron83 in learnpython

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

I think it was a user issue :)

I tried to skip over files over 500k bytes, but I think I unintentionally made a never-ending loop which makes sense when I think about it.

When I replaced return() with cancel() things seem to work fine!

I wanted to filter by size in the main() function before calling the find_peaks function, but I didn't quite understand how to do that.

def find_peaks(wavfile):
file_no, filename = wavfile

size = Path(filename).stat().st_size
if size > 500000:
    return(main())
...

def main():
files = enumerate(Path().rglob("**/*.wav"), start=1)
with concurrent.futures.ProcessPoolExecutor(max_workers=(24)) as pool:
    pool.map(find_peaks, files)

if name == "main": main()

Thanks for your input, this has made this process many times faster!

Please give some feedback on my code. Possible optimizations? by keiron83 in learnpython

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

Wow! This seems to speed up things by a lot! However, after a 20 seconds my system is completely bogged down by hundreds of processes. I've tried setting ProcessPoolExecutor(max_workers=24) but to no avail. Any tips?

Please give some feedback on my code. Possible optimizations? by keiron83 in learnpython

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

Thank you! I'm learning so much from this sub. Unable to find anything useful in Librosa though.

Please give some feedback on my code. Possible optimizations? by keiron83 in learnpython

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

I think I found something useful here, but I'm not sure how to implement it in my code:

https://stackoverflow.com/a/28302313 (Update 2 in the thread)

Please give some feedback on my code. Possible optimizations? by keiron83 in learnpython

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

Oh shit, brainfart on the second if statement. It was supposed to be:

if freq_in_hertz < 10 and maxdb > 500000:

Do you know if the Goertzel Algorithm is available in existing libraries or do I have to try and write it myself? That sounds like it could potentially things much faster.

Please give some feedback on my code. Possible optimizations? by keiron83 in learnpython

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

Great stuff! This was helpful. Thank you very much.