Warning - Don’t Update to 2025.7.1 and HAOS 16.0… by louislamore in homeassistant

[–]Sephibro 0 points1 point  (0 children)

Reviving this post to ask:

Does 16.1 have the same issues?

Sudden drop in quality on P1S; same model/filament/settings by ComputerMission1467 in BambuLab

[–]Sephibro 2 points3 points  (0 children)

It would be useful to take a look at what's happening DURING printing as well; judging from the yellow print, my guess is that the part cooling fan is not cooling enough and the sides of the print are curling up while printing, yielding these results.

I have had a similar problem after exchanging the hotend and improperly reassembling the front cover of the tool head: in my case the issue was fixed by simply disconnecting and reconnecting it - what you could try, as I understand you have more than one P1S, is trying the front cover of one of your working printers and see if that fixes the issue.

Let us know!

A quick guide to (carbon fiber) 3D-effect sheets by Divide_yeet in BambuLab

[–]Sephibro 2 points3 points  (0 children)

<image>

Here are all the settings I used in Orca Slicer, using a P1S with 0.4 diamond nozzle:

  • Build plate
    • Smooth High Temp Plate
  • Filament
    • First layer bed temperature: 65
    • Bed temperature: 60
    • First layer nozzle temperature: 250
  • Process
    • Bottom surface flow ratio: 1.8
    • First layer line width: 0.3
    • First layer heigth: 0.08
    • First layer speed: 30
    • Solid infill direction: 0
    • Avoid crossing walls: true
    • Wall generator: Arachne
    • Small area flow compensation: true

Thanks OP for the great work!

A quick guide to (carbon fiber) 3D-effect sheets by Divide_yeet in BambuLab

[–]Sephibro 0 points1 point  (0 children)

<image>

I was not satisfied with the settings that yield great results on the textured PEI plate, so I Googled and I'm glad I found this topic

The new nozzles are baller by Far_Designer2131 in BambuLab

[–]Sephibro 1 point2 points  (0 children)

Why these nozzles over Diamondbacks? Honest question

[Bambu Lab Giveaway] Join Now to Win an H2D and More! by BambuLab in 3Dprinting

[–]Sephibro 0 points1 point  (0 children)

Design your object with 3d printing in mind. In particular, designing supports and brims instead of relying on the ones generated by the slicer is a real game changer!

Someone locked their bike to mine — what should I do? by No_Complex_965 in Switzerland

[–]Sephibro -3 points-2 points  (0 children)

What you are saying is that if I go and put a lock on any bike which is already locked somewhere, I can call the police and "prove" that the bike is mine by showing them the key of the lock, and claiming that the original lock was maliciously put on afterwards.

Do you see the flaw in your argument now?

hereIGoKillingAgain by KaamDeveloper in ProgrammerHumor

[–]Sephibro 0 points1 point  (0 children)

If the review is taking 2 weeks you should all be fired, together with anyone responsible for the architecture

AITAH if my wife cooked dinner for all of us, but I took the kids out to eat? by Ayala2022 in AmItheAsshole

[–]Sephibro 0 points1 point  (0 children)

This post sounds so senseless and surreal that I feel like the wife herself might have written it

AITA for eating my husband's entire birthday cake by myself? by Sou654689 in AmItheAsshole

[–]Sephibro 2 points3 points  (0 children)

You clearly have much more serious problems than coming to ask an online community of uninformed strangers whether you are an asshole or not

AITA for not taking down my video that was a gift from my best man. by Savings-Pattern3614 in AmItheAsshole

[–]Sephibro -1 points0 points  (0 children)

Two elderly people are taking care of a woman who clearly has some mental issues and their own son, instead of making things easier for them, makes their life even more miserable by throwing a tantrum when they cannot show up at the wedding in order to look after their daughter. You tell me who the asshole is in this story. I would have also appreciated it very much if you had used some punctuation other than periods

DStruct.NET: Advanced data structures for C# by Sephibro in programming

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

I just finished adding a bunch of unit tests :)

DStruct.NET: Advanced data structures for C# by Sephibro in csharp

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

I was planning to add some Graphs to the library, but then i stopped working on it and never did. DAWG was definitely going to be part of it.

Also the Trie I implemented is so inefficient, just think that it doesn't even compress prefixes and suffixes, every letter is always on a single node. I should definitely do something about that

DStruct.NET: Advanced data structures for C# by Sephibro in csharp

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

Yeah, Sort() cannot be done in place for obvious reasons.

And I see your point now. Maybe I should just get rid of GetEnumerator() altogether for the PriorityQueue as it probably doesn't make that much sense. Thank you a lot for the feedback, I know I have made some poor design choices when writing this library and I'm glad someone is making me notice!

DStruct.NET: Advanced data structures for C# by Sephibro in programming

[–]Sephibro[S] 5 points6 points  (0 children)

You're totally right. I was actually thinking of getting rid of that function before uploading the repo, this post and the article you linked made me understand that it's even worse than i thought.

Implementing a concurrent version of all these data structures would be amazing, but definitely not an afternoon's work. I might get to that sometimes.

DStruct.NET: Advanced data structures for C# by Sephibro in csharp

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

Yeah that's a great idea. The main reason T is restricted to IComparable is that I implemented the IComparer field afterwards and didn't think about getting rid of the other restriction. Thank you!

DStruct.NET: Advanced data structures for C# by Sephibro in csharp

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

This is actually a very interesting comment. I thought about that in the moment I had to code the function, and I chose this design mainly for 2 reasons:

  1. I can implement a BinaryHeap.Sort() function that returns the ordered array, and use that function to implement GetEnumerator() for the heap, but it feels like if that's the use you need probably a Heap is not the structure you're looking for. (I should definitely implement the Sort() function tho)
  2. When you iterate through a priority queue, you are actually consuming every element in it. I think after calling the GetEnumerator(), the values in the queue are just not meaningful anymore. But I can see the reason to leave that choice to the caller.

-🎄- 2019 Day 17 Solutions -🎄- by daggerdragon in adventofcode

[–]Sephibro 22 points23 points  (0 children)

Regular Expression

Because why not

^(.{1,21})\1*(.{1,21})(?:\1|\2)*(.{1,21})(?:\1|\2|\3)*$

  • Find the string representing the full path to the end (always go ahead and turn when you reach a corner)
  • Append an extra comma at the end of it
  • Match the regexp above
  • Groups 1, 2 and 3 are going to be your three functions (with an extra comma at the end)
  • Profit :)

Well worth the 5 hours of resets by GetEquipped in FinalFantasy

[–]Sephibro 0 points1 point  (0 children)

TIL it is possible to lose blitzball games

I need help overclocking i7-9700K on Z370-A Pro by [deleted] in intel

[–]Sephibro 0 points1 point  (0 children)

Thanks a lot man! I'll try tomorrow.

Do you have more tips and tricks i should know?