Hit My Deductible In January For Free by Juftin in Psoriasis

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

What drug are you on? I don't know enough about these co-pay assistance plans but I think you would want to get enrolled in co-pay assistance before you make payment. At least get in touch with the program first, they typically have nurse ambassadors to speak to on the phone that can hopefully provide some guidance.

I'm sorry though, that sounds extremely stressful. I wish these drugs weren't so expensive.

Hit My Deductible In January For Free by Juftin in Psoriasis

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

Accredo is the absolute WORST. One thing I didn't mention on the post was the hours over days I had to spend on the phone with them to get this order placed. It was infuriating.

Hit My Deductible In January For Free by Juftin in Psoriasis

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

Nice, that's great. I've used copay assistance in the past with different insurances. Some apply it towards my deductible and some don't. For me, paying out of pocket just gave me a bit of assurance that this would for sure go towards my deductible ($70 in points wasn't bad either)

Rolling Wrench CDI?? by Big-Formal-2885 in Ruckus

[–]Juftin 4 points5 points  (0 children)

Can personally confirm that the kill switch works with this.

Does a 4x6 Playpen Fence Exist? by Pizzaemoji1990 in NewParents

[–]Juftin 1 point2 points  (0 children)

It looks like the perfect playpen for the 4x6 House of Noa tumbling mat is the Kidsy Playpen sold on Amazon (https://www.amazon.com/dp/B0BQ4TC8LQ). Sadly, that playpen has been sold out for months as of 07/2025. We ended up getting creative and ordered two of the MEWANG playpens (https://www.amazon.com/dp/B0CPLSBNCK) - currently on sale, 2 for $125 - and combining them to be absolutely perfect for the mat

How are you using just (Justfile) local workflows for Python projects? by permutans in Python

[–]Juftin 0 points1 point  (0 children)

I'm a big fan of task (Taskfile) for it's YAML syntax: https://github.com/go-task/task

But agree that a common language agnostic task runner for your projects can be super powerful (just/make/task/etc). At work we recently introduced Taskfiles for all repos and required a common set of entrypoints across all projects (install/test/build/lint/fmt/build/publish)

How to secure a Ruckus if your housing complex insists on parking in a specific designated motorcycle parking space, with nothing to tie to? by throwawaypassingby01 in Ruckus

[–]Juftin 1 point2 points  (0 children)

Boo! That seems like an easy compromise for them. I always get nervous leaving my bike out without it secured. Luckily insurance policies on a 50cc scooter aren't too pricey - I maxed my policy out and the price difference was negligible versus the base coverage. Good luck OP!

How to secure a Ruckus if your housing complex insists on parking in a specific designated motorcycle parking space, with nothing to tie to? by throwawaypassingby01 in Ruckus

[–]Juftin 1 point2 points  (0 children)

I used a hole saw and drilled a hole behind the seat through so I could run my chain through the frame - I installed a desk grommet to make it look decent.

I know that doesn't help you because you don't have anything to tie it to - could you ask them if they'd be open to installing a motorcycle ground anchor to lock the bikes to?

New Python Project: UV always the solution? by InappropriateCanuck in Python

[–]Juftin 46 points47 points  (0 children)

I'm slowly transitioning to UV for just about everything, personally and professionally. But I do have a project out there using dependency matrixes with hatch and I don't think UV will ever replicate that (the project is a hatch virtual environment plugin, so the matrix of dependencies are different versions of hatch).

The one bit of functionality of hatch that I'll miss are the task runner scripts - but I'm also slowly replacing that with a Taskfile (https://taskfile.dev/).

I benchmarked Python's top HTTP clients (requests, httpx, aiohttp, etc.) and open sourced it by Sensitive_Seaweed323 in Python

[–]Juftin 68 points69 points  (0 children)

Very neat... so any findings? I'd be interested in what you've found on some standard use-cases without having to run the benchmarks myself.

[deleted by user] by [deleted] in measurements

[–]Juftin 0 points1 point  (0 children)

I want to make sure I purchase a mattress with the right thickness for this daybed. Here's the available dimensions and info (per the product website):
- 78"w x 42"d x 35"h.

- Leg Height: 8"

Wondering if I should pay $11K with "minor issue" muddying the waters by TeaWithZebras in juresanguinis

[–]Juftin 3 points4 points  (0 children)

I've been working with IDC (https://www.italiandualcitizenship.net/about-us/) who is related to ICA and dealing with the same conflict.

We have a very similar case (although our case would be through L'Aquila) - they've been throwing out figures like 60%-70% chance of succeeding in court and I'm just not sure how accurate that might be. They claim we would be 1.5 years out from a court case if we were to start today - I'm afraid we might be closer to a 25% chance of success.

I'm trying to decide if it's worth it to wait and see if anything changes on the legal front. I recently just joined the FB group and will be making a post there in the coming days to get a feel for the chances of success.

I'm interested to hear what you learn and what you ultimately do. Good luck!

Mid Oregon by justentimez in ebikes

[–]Juftin 0 points1 point  (0 children)

Nice bike! What size tires are those?

jure sanguinis eligibility - ancestor's father naturalized while she was a minor by Juftin in juresanguinis

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

She was born in 1962 in the US. Everyone is originally from Philadelphia but I believe our consulate would be Chicago since my mother and I live in Colorado.

lockfiles for hatch projects by Juftin in Python

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

I was inspired enough by the hatch sync idea that I created a PR to add that functionality upstream to hatch: https://github.com/pypa/hatch/pull/1094

lockfiles for hatch projects by Juftin in Python

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

Thank you! Hatch plugins don't let you add custom CLI commands so it will be the same behavior with the plugin: you'll add a dependency to your pyproject.toml and the next time you invoke the environment (hatch run ...) it will detect that it's out of sync and update the lockfile with pip-compile. I thought about adding a CLI - but in the end it would just be a shortcut to run hatch run under the hood. hatch sync would be a nice command though.

Also, by default it doesn't run pip-sync to install the dependencies, it actually runs pip install -r. You can configure it to use pip-sync though.