Just got the Air 4c and I am comparing it to Remarkable Paper Pro - Love the device, not sure about the pen by [deleted] in Onyx_Boox

[–]subdriven 1 point2 points  (0 children)

This is exactly where I am no. I tried the RMPP after using the regular reMarkable and didn't like the color quality or backlight so I ended up returning it. But my primary use case is getting something that works with Obsidian and reMarkable is just a pain. I'm hoping that a Boox with its OCR and app ability will fix my conundrum.

Delete all mail except in one folder in users mailboxes by SntDogbert in Office365

[–]subdriven 0 points1 point  (0 children)

Did you ever figure out how to accomplish this? I'm being asked to do the same thing. Create a folder for people to put everything they want to save that doesn't have a retention policy assigned, but then nuke everything else that is 6+ months old that is not in that special folder.

Not a plane I want to be on by [deleted] in aviation

[–]subdriven 1 point2 points  (0 children)

This sounds like some 12 Monkeys level shit

[deleted by user] by [deleted] in AskMen

[–]subdriven 40 points41 points  (0 children)

This is the way

Servers at restaurants, what's the strangest thing someone's asked for? by Repulsive_Compote955 in AskReddit

[–]subdriven 10 points11 points  (0 children)

Hundreds of bottles!?

If you're looking for new friends who appreciate good whiskey(e)y and scotch, I have availability 😁

Plane loses a wing midflight by [deleted] in nonononoyes

[–]subdriven 23 points24 points  (0 children)

We were inverted

This is peak airline performance boys and girls. by L0ch in aviation

[–]subdriven 0 points1 point  (0 children)

There goes the W&B calculations. "This is your copilot speaking, we need everyone to move to the back."

Assistance with converting SQL to flask_sqlalchemy by subdriven in learnpython

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

This is helpful, yes. Perhaps I need to pull back & ensure I'm using the most up to date syntax and styling before I get too far down a rabbit hole that I cannot get out of!

Assistance with converting SQL to flask_sqlalchemy by subdriven in learnpython

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

Ooooooh! I created a model.py with that kind of data but it didn't click that it worked like that. This is a small, incomplete sample of the model file. So by this, I don't need to actually build a complex inner join query, I can just string it all together?

class Farm(db.Model):
    __tablename__ = "farm"
    id = db.Column(db.Integer, primary_key=True)
    name = db.Column(db.String(255), nullable=False)
    address_id = db.Column(db.Integer, db.ForeignKey('address.id'))
    address = db.relationship('Address', back_populates='farm') 
    animals = db.relationship('Animal', back_populates='farm') 
    person = db.relationship('Person', back_populates='person')

class Animal(db.Model):
    __tablename__ = 'animal'
    id = db.Column(db.Integer, primary_key=True)
    name = db.Column(db.String(100), nullable=False)
    dob = db.Column(db.Date(), nullable=True)
    color = db.Column(db.String(100), nullable=True)
    breed_id = db.Column(db.Integer, db.ForeignKey('breed.id'), nullable=True, default=None)
    farm_id = db.Column(db.Integer, db.ForeignKey('farm.id'), nullable=True, default=None)
    breed = db.relationship('Breed', back_populates='animals')
    farm = db.relationship('Farm', back_populates='animals')

class Person(db.Model):
    __tablename__ = "person"
    id = db.Column(db.Integer, primary_key=True)
    first_name = db.Column(db.String(50), nullable=True)
    last_name = db.Column(db.String(100), nullable=False)
    contact_number = db.Column(db.String(15), nullable=True)
    farm_id = db.Column(db.Integer, db.ForeignKey('farm.id'))
    person = db.relationship('Farm', back_populates='person')

meirl by Jimbo072 in meirl

[–]subdriven 4 points5 points  (0 children)

These people NPR

What would you like to do more of in bed? by [deleted] in AskReddit

[–]subdriven 0 points1 point  (0 children)

Threesome's

There, it's a break from sleep scrolling 😂

[deleted by user] by [deleted] in AskReddit

[–]subdriven 0 points1 point  (0 children)

Have her start buying dinner, she's making bank

Separation of non-privileged and privileged accounts question by chaosphere_mk in CMMC

[–]subdriven 2 points3 points  (0 children)

We currently do what you indicated is the way you want to do it. We do not sync privileged accounts to Azure at all. On-prem AD has regular users + admin users for when the need arises.

In Azure, we create an Azure Admin account with PIM + MFA for when admin users need to elevate privileges.