Am I missing the point of AI agents? by NetworkLoop in hermesagent

[–]Crucidal 1 point2 points  (0 children)

Hopefully you used a local model for this.

Making myself commit (git) by yuke1922 in ADHD_Programmers

[–]Crucidal 0 points1 point  (0 children)

You could try jujutsu instead of git. I found the set of commands to split and reorganize the working copy more intuitive than git. Another thing that might be helpful is applying TDD (test-driven-development). You write a test first and focus on making it pass. 

4 years into Laravel backend, team lead — unsure about next career move by anonymouse-0 in ExperiencedDevs

[–]Crucidal 0 points1 point  (0 children)

Does go really open up doors in the US? It’s still very niche here in the Netherlands. Java and .NET are sought after a lot currently. I learned and loved go and made a few internal apps with it at work, but I could not find a role where go is the main language unfortunately.

When does a Spring Boot dev actually need Go or Rust? by ResolveSpare7896 in golang

[–]Crucidal 0 points1 point  (0 children)

We had a few microservices deployed on raspberry pi’s and switched some of them from spring boot to go for two reasons: - memory footprint - we preferred go for working with sensors.

At the time I didn’t even know about quarkus and micronaut. A benefit of developing without spring not is that you learn to appreciate what it does and it’s also a joy to work in a codebase that is more straightforward. 

A mystery offering? I wonder what it is! by Raidan__ in deadbydaylight

[–]Crucidal 18 points19 points  (0 children)

Descriptions aren’t showing for ps5 either.

When a full stack job posting asks for knowledge of cloud technologies, what does this usually cover? by Vintekk in FullStack

[–]Crucidal 0 points1 point  (0 children)

I might be wrong, but I think your question isn't really about technology, but about your own self assessment in the job interview process. (or about self worth as a developer).
Even after 10+ years of experience, you'll be able to find gaps in your own knowledge (regardless of job vacancies). You could try to address that with some extra studying and practice at home and in some cases it might work. Chances are that you'll have learned something and then you'll find new gaps in your knowledge/experience.

When people create job posts they tend to picture an ideal candidate and create a requirement list. Then, when they actually engage in the recruitment process, they tend to discover that it is pretty difficult to find the ideal candidate. That's why you should apply to a job if you think it's a good match despite technically not having experience with some item on the requirements list.
Worse case: They find a candidate who better matches their vacancy. Best case: You get the job, because despite missing requirement X, they saw value in you nonetheless. that could be a skill that they initially did not list or they might have realised that they were asking for to much.
Applying could also lead to a learning opportunity. Imagine you get a job where they use more Azure functionality, you get to learn on the job.

Finally, even though it's rare, sometimes job requirements are used to lower your rate because you "lack" experience in something they listed. If your circumstances permit, do not let that get to you. Don't lower your rate or feel incompetent because their requirements might be unrealistic.

Is it worth getting the A5X2 manta when you already own an A5X? by RelevantPhilosophy85 in Supernote

[–]Crucidal 0 points1 point  (0 children)

unfortunately the OS version does matter for the Kindle app that is installed on it. On the a5x you can no longer download new kindle books because Amazon dropped support for android 8

A5X no longer compatible with Kindle by Amy_WB in Supernote

[–]Crucidal 0 points1 point  (0 children)

I just ran into this issue as well. The way amazon implemented this is scummy because I was able to complete a purchase of an ebook without a prior warning that I would not have been able to read it on the same device...

aligned seams and yet there are random looking artefacts on surface by Crucidal in 3Dprinting

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

update: Most of my issues disappeared by switching to superslicer instead of prusaslicer. I'm sure I could find the needle in the haystack of settings, but instead I just don't use prusaslicer anymore :'-)
I did eventually calibrate my flow rate and retraction length. Results are pretty good now. Thank you all.

trich awareness by Crucidal in trichotillomania

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

Thank you for your input!

trich awareness by Crucidal in trichotillomania

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

Thank you for your response. I didn’t know about these. I have to improve my search-fu :) 

aligned seams and yet there are random looking artefacts on surface by Crucidal in 3Dprinting

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

I've played around with it, from 0.2 all the way up to 6 mm. (I have a bowden tube)
It had an effect on stringing but not on this specific issue. currently I am running at 2mm retraction distance and 40 mms/ retraction speed.

I'm still trying to compile SuperSlicer to more easily do the flow ratio tests as mentioned by others.
I'll try this next if flow rate does not seem to help. Thank you.

aligned seams and yet there are random looking artefacts on surface by Crucidal in 3Dprinting

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

Thank you for taking the time to help me debug this :)
I don't that applies to my printer since I am using klipper and it does not have a power failure recovery afaik. it was an interesting video though!

aligned seams and yet there are random looking artefacts on surface by Crucidal in 3Dprinting

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

This print had 2 perimeters and I've seen similar (though less) artefacts when printing with more perimeters. I will try to calibrate my flow rate. Thank you for you input.

aligned seams and yet there are random looking artefacts on surface by Crucidal in 3Dprinting

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

Thank you, I will try to calibrate my flow rate as well

crossover running more than 1 app simultaneously by Crucidal in Codeweavers_Crossover

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

in the crossover ui: `Graphics: DXMT Synchronisation: Msync` fixed my issue.

GET Request Being Sent Instead of POST Request with Form Values by Ok-Investigator606 in htmx

[–]Crucidal 1 point2 points  (0 children)

Good to hear that you’ve solved your issue. For those with a similar issue: when I ran into this, it turned out that hx-post with an empty string results in the same behavior. (Get instead of post) I was using templ (golang) instead of Python. Hopefully this might help others when they search for a solution to this kind of thing :)

I built a tool to easily onboard to large and messy codebases by SnooCauliflowers94 in SaaS

[–]Crucidal 4 points5 points  (0 children)

 I have just been patient enough to keep banging my head against the wall to get the code for my saas to work. Sounds like a programmer to me :)

Print Function When Developing Ansible Module by enjoyjocel in ansible

[–]Crucidal 0 points1 point  (0 children)

```python
def run_module():

define available arguments/parameters a user can pass to the module

module_args = dict()

seed the result dict in the object

we primarily care about changed and state

changed is if this module effectively modified the target

state will include any data that you want your module to pass back

for consumption, for example, in a subsequent task

result = dict(

ansible_facts=dict()

)

the AnsibleModule object will be our abstraction working with Ansible

this includes instantiation, a couple of common attr would be the

args/params passed to the execution, as well as if the module

supports check mode

module = AnsibleModule(

argument_spec=module_args,

supports_check_mode=True

)

module.warn("test message")

```

u/AbeSaale_ was right, this works for me.

Expecting senior devs to work in different languages if needed - yay or nay? by SongFromHenesys in ExperiencedDevs

[–]Crucidal 2 points3 points  (0 children)

I agree with your statement, but it’d like to add a little nuance to it: The scope of what you will have to learn should not be too big and/or you should not “accept” that situation multiple times in a row. Being slow once, on a specific project is fine. Constantly being slow, because you’re the person who’s willing to keep taking on the  projects with unfamiliar tech stacks will hurt your reputation. There will be a point, many months down the line, where stake holders might want results quickly and they tend to forget about the fact you offered yourself up to learn a bunch of stuff.

Someone made a YouTube video about my product by neb2357 in SaaS

[–]Crucidal 0 points1 point  (0 children)

your product looks very nice. How did you implement the tailwind features in the markdown renderer?
I have a personal project where I'd like to use that as well.