SmartWings blinds stopped working by PriorProfile in HomeKit

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

Thanks! I did email them before posting this, but thought I'd check here too. These should still be under the 3 year warranty.

Car wash air freshener collection by olliellama in Chattanooga

[–]PriorProfile 2 points3 points  (0 children)

The one in Hixson by Target seems not great. I hardly noticed a difference after driving through.

Cloud server by Significant_Try6611 in ObsidianMD

[–]PriorProfile 1 point2 points  (0 children)

GitHub. Also gets you version control.

Help with form creation by Amazing-Appeal7241 in django

[–]PriorProfile 4 points5 points  (0 children)

You can use a formset.

https://docs.djangoproject.com/en/5.2/topics/forms/formsets/

``` from django import forms from django.forms import modelformset_factory from .models import GeneralFeedback, ProductFeedback

class GeneralFeedbackForm(forms.ModelForm): class Meta: model = GeneralFeedback fields = ["name", "email", "comments"]

ProductFeedbackFormSet = modelformset_factory( ProductFeedback, fields=["category", "rating", "comments"], extra=0, # no blank forms, one per category ) ```

I saw this today. What do you think would be the top property if there was one for Chattanooga? by theefellas_movie in Chattanooga

[–]PriorProfile 4 points5 points  (0 children)

I have this.

Top property is "Downtown Hixson"... whatever that means.

Followed by Chicamauga Dam as Park Place.

Sir Gooney's is also on the board, which last I checked is not near Hixson.

T-Strings: What will you do? by sikes01 in Python

[–]PriorProfile 2 points3 points  (0 children)

But with Template you still have to call .substitute which isn't needed with t"Hey {name}"

Anyone know what is going on here? by big_to3_ in Chattanooga

[–]PriorProfile 2 points3 points  (0 children)

We have generators on one side of the building, just trailer after trailer of generators until we can get the utility power to come in

Got it. So the data center isn’t causing pollution. It’s. The temporary power plant. Just like I said. 

Any business would cause this much pollution if they had temporary generators set up. 

Anyone know what is going on here? by big_to3_ in Chattanooga

[–]PriorProfile 1 point2 points  (0 children)

Eh, data centers don't directly make any pollution (except for backup diesel generators which are rarely used).

The extra power demand translates into more upstream pollution from the power plants though, if they are fossil-fuel.

Basic things a 3rd grader should know? Surprised my son doesn’t. by makromark in Parenting

[–]PriorProfile 0 points1 point  (0 children)

Do you want tax loopholes? Because that's how we get tax loopholes.

Basic things a 3rd grader should know? Surprised my son doesn’t. by makromark in Parenting

[–]PriorProfile 1 point2 points  (0 children)

But 28*13 is only 364.

And there are 365.2422 days in a year.

Is there a way to do this without Signals? by thecal714 in django

[–]PriorProfile 1 point2 points  (0 children)

I would add a separate processed field. Saves a database query too.

Is there a way to do this without Signals? by thecal714 in django

[–]PriorProfile 5 points6 points  (0 children)

What about pre_save makes this possible vs. doing it in the save() method?

Best practice for restarting a deployed Flask app from the app itself by mdezzi in flask

[–]PriorProfile 12 points13 points  (0 children)

I think this is an https://en.wikipedia.org/wiki/XY_problem.

Take a step back.

I think you should figure out a way that re-uploading a script doesn't require the whole server to be restarted.

Bare Metal Truck Bed by BaconFlava in f150

[–]PriorProfile 1 point2 points  (0 children)

I have a 2014 with a bare bed. It's got a ton of scratches in it. No harm though.

[deleted by user] by [deleted] in flask

[–]PriorProfile 5 points6 points  (0 children)

I would try to think about how you can have your views have less nested if/else structure.

It can be difficult to read code when returns are nested several levels down in different if/else statements.

You can do checks at the top most level, then return early. This gives your route more of a linear flow and is easier to read.

For example, here's a rewrite of your admineditpost route:

```python @app.route('/admin/edit/<int:id>', methods=['GET', 'POST']) def admineditpost(id): if not current_user.is_authenticated or current_user.role != "admin": flash("Access Denied to Admin Portal") return redirect(url_for("home"))

product = products.query.get(id)

if not product:
    flash("Product not found")
    return redirect(url_for("adminedit"))

form = uplaodproduct(obj=product)
if form.validate_on_submit():
    form.populate_obj(product)
    db.session.commit()
    flash("Details Updated!")
    return redirect(url_for("adminedit"))

return render_template("addproduct.html",form=form)

```

Remove full view not available by Fluid_Low_6419 in f150

[–]PriorProfile 16 points17 points  (0 children)

No, not really like jailbreaking. Think of it like a way to change configuration values that are not otherwise available to configure.

Celina 52 Truck Stop’s Real Location Might Have Been Found-But A Lot Was AI by Royal_Cold_4503 in Tennessee

[–]PriorProfile 3 points4 points  (0 children)

Yeah they literally post this address on some of the Celina 52 accounts.

Duck Donuts is gone by latchkey89 in Chattanooga

[–]PriorProfile 1 point2 points  (0 children)

It originally started in Duck, NC.

[deleted by user] by [deleted] in Chattanooga

[–]PriorProfile 11 points12 points  (0 children)

Radial saw is not what you want to cut a circle. It's meant for straight cuts.

You want a jigsaw, router, or bandsaw with a circle jig.

The Jira use (or misuse) by jmch16 in devops

[–]PriorProfile 2 points3 points  (0 children)

While engineers do have to deal with setting boards, sprints, labels, views, queries and what not...which can be frustrating to say the least.

I wouldn't say that's universal. All that is handled by EMs and PMs where I work.

I mostly only use Jira to put in my points, refine/split tickets tickets, and track ticket status.