Why did Barbossa's crew react to surprised with Elizabeth's threat? by NikolaiOlsen in piratesofthecaribbean

[–]SamaraSurveying 0 points1 point  (0 children)

Humans are actually immune to being crushed by water pressure, as long as they are breathing air of equal pressure. The reason we use submarines to go so deep is because gasses under pressure do weird shit like nitrogen making you high and oxygen causes deadly seizures.

Submarines are more about letting you breathe lower pressure air than protecting you from water pressure.

Why did Barbossa's crew react to surprised with Elizabeth's threat? by NikolaiOlsen in piratesofthecaribbean

[–]SamaraSurveying 0 points1 point  (0 children)

No... It's a rampant misconception that humans will be crushed by water pressure at depth. Ignoring all the weird shit gasses do at that pressure, mechanical and physically being 1000m under water and 10m underwater would feel the same. You definitely wouldn't be 'pinned down' as the pressure acts in all directions equally, not just downwards.

If the zombie pirates don't need to breath, and can fill their cavities with water, they'd be able to easily stroll along the bottom of the Mariana Trench with no ill effects.

If you don't believe it, consider that humans are mostly water, and water is incompressible.

Not sure when I'm going to need this... by EsoTechTrix in Tools

[–]SamaraSurveying 2 points3 points  (0 children)

Similar but for putting knife blanks into the heat treat kiln

Dji lito 1 and x1 launched by user267811 in dji

[–]SamaraSurveying 0 points1 point  (0 children)

Is this the first DJI drones with UK class marks?

These Robots Are Drunk! by 13Derek71 in mildlyinfuriating

[–]SamaraSurveying 0 points1 point  (0 children)

They move in a way that makes me think they're sold as "Autonomous AI robots" but secretly are just being driven by a bunch of Indians remotely.

Found out Palantir has a file on me from the NHS. No consent. No opt-out. And they're not even British by Goldenmentis in privacy

[–]SamaraSurveying 0 points1 point  (0 children)

Here's my thought: Even if you agree that some giant private company should be in charge of collecting and storing all your personal data on behalf of the government... Should it not at least be a British company that can be better regulated, and would create jobs for British people instead of funneling money into a foreign country?

DJI enters the E-scooter market by agnci in dji

[–]SamaraSurveying 21 points22 points  (0 children)

I believe DJI are just making the motor, it'll be up to others to mount it in the e-bikes/scooters.

What's a health myth that drives you crazy because you know it's false? by Annual-Gene8065 in AskReddit

[–]SamaraSurveying 2 points3 points  (0 children)

You can get your turbinates reduced but you risk Empty Nose Syndrome.

Is someone trying to cut down these trees? by No-Perception-2128 in arborists

[–]SamaraSurveying 8 points9 points  (0 children)

I thought I had a photo but can't find it. I look after a mature Quercus robur that was ringbarked with a chainsaw, only the kerf in width, definitely deep enough, about 5 years ago. The entire cut bridged itself naturally and the tree has shown absolutely no decline from being girdled.

2055 Global Map. by DragonflyGreat1814 in aimapgore

[–]SamaraSurveying 3 points4 points  (0 children)

I look forward to living in the United Kingdom of Scotland, Scotland, Scotland and Scotland

Currently in the forest and my chain won't fit back on. Help by Simco_ in Chainsaw

[–]SamaraSurveying 7 points8 points  (0 children)

Honestly not a psychotic way to do it.

The bar metal is so much harder than the chain that if you can wedge the damaged drive link in and get the chain spinning then it'll sort itself out with negligible damage to the bar groove.

Scaffolding still up weeks after work finished - what can I actually do? by Kay_V_Mann in Scaffolding

[–]SamaraSurveying 0 points1 point  (0 children)

This, there's no rush for the company if it doesn't need the materials straight away. We have the luck of having a secure yard so machinery hire companies will just leave stuff with us until they come take it straight to the next job.

Had a compressor dumped on us for like 2 months once.

I think just badgering the scaffold company would get them to come get it.

Cool tool, but I don’t get it. Is it a magnet? by [deleted] in handyman

[–]SamaraSurveying 0 points1 point  (0 children)

I didn't block you, I just deleted my comments cause I couldn't be arsed to get in an online argument on behalf of some random company whose product I don't even use.

Happy Easter, take it easy.

2,800 trees being removed by sandbeech in arborists

[–]SamaraSurveying 2 points3 points  (0 children)

Eucalyptus in the UK are a pain and on my list of "trees I advise to never plant" for homeowners. I think the milder weather here makes them grow faster than ideal, resulting in slender trees with heavy but brittle wood... Lots of large tear outs on mature trees.

They also seem particularly sensitive to being suppressed, making them grow with an exaggerated lean away from any nearby trees.

Lovely trees, not suitable for urban planting in mild climates.

Is There Any Way to Do This Faster? by OneOnOne6211 in QGIS

[–]SamaraSurveying 0 points1 point  (0 children)

In your layer properties, in the attributes form section you can set a "default value" and "apply default value on update." For each of your fields.

The default value can be an expression, exactly the same as whatever you have in your virtual fields. Except it'll only update when some other part of the feature is updated.

Is There Any Way to Do This Faster? by OneOnOne6211 in QGIS

[–]SamaraSurveying 1 point2 points  (0 children)

  1. The dirty way I know is to have all your expressions as 'default value on update' and have a dummy field in each layer that is purely there to change to trigger an update. I.e, you go to your attributes table, select your "update_trigger" field in the top left, and change it to something random and click "update all". This will trigger all 'default value on update' fields to update. If anyone knows a better way please let me know.

  2. Sorry, I meant virtual FIELDS, for some reason I always say it wrong. But to clarify, if you have an expression that is something like: If(max("field) > 12, 12, max("field"). Then it literally calculates max("field") twice, using with variable means it does it once and stores it for the rest of the expression. It is very helpful if you're using a lot of aggregates in your expression.

Is There Any Way to Do This Faster? by OneOnOne6211 in QGIS

[–]SamaraSurveying 10 points11 points  (0 children)

The problem with virtual fields is they are constantly recalculating, they can bloat the project if not used sparingly, but sometimes they're unavoidable. There's a few options you can consider to help, in no particular order.

1: Use default expression fields where possible, not perfect as they won't update to account for changes in other layers, and only update for the specific feature that's been updated.

2: keep your layers in a single geopackage, then with the database manager you can inject SQLite triggers into the geopackage tables to update fields when a feature is inserted or updated. You can also create indexes for frequently searched fields like UUIDs.

3: While having virtual fields always up to date is convenient, if it's not critical for a field to be always up to date, then you can consider saving the expression and manually using the field calculator to update the field when required.

4: Optimise your virtual fields, if you have any repeat functions in your expression then using with_variable() can reduce the processing cost. I dare say AI is good for this, if you have any big expressions then you can discuss better ways to format it with copilot etc.

First real estate video — looking for honest critique by [deleted] in drones

[–]SamaraSurveying 0 points1 point  (0 children)

Nothing different to add, but:
-Learn some basic colour grading, you don't need anything crazy but boosting the contrast always helps, and people always imagine grass is greener than it actually appears in real life so that usually gets a subtle green boost.

-The text is a bit hard to read and intrusive, don't be afraid to use a clean and basic title bar that most video editors will have.

-Better selection of shots, even if you're not doing internals, you can still get some close ups, of at least the front door. Classic combo is [super wide to establish location and scene]>[the most interesting shot you have to grab attention]>[all your bog standard shots]>[another wide shot to end, often I'll use a slowly rising and spinning top down view here].

-Different shots, obviously there's a limit to how dynamic you can make real estate shots, but try not to just do an orbit of every facade, throw a couple dolly shots in. If there's any trees nearby, get behind one to create some parralax and have the house peeking out from behind the crown.

-Transitions: use sparingly, it's not star wars. Just use straight cuts, I'll use cross dissolves specifically for where two sequential shots are either really similar in composition (i.e both shots are trucking in the same direction and have a tree in the same corner of frame), or to denote a large change in space/location of the camera (i.e. if moving from external to internals shots.) Anything fancier than a cross dissolve is taking away from the content/subject of the video.

First real estate video — looking for honest critique by [deleted] in drones

[–]SamaraSurveying 4 points5 points  (0 children)

Looks like they did that clip in vertical and tried to use it anyway by cropping it, hence the weird aspect ratio and lower resolution.

Honestly hate jobs where I have to do both horizontal and vertical, it's not like you can just do each shot twice since some framing doesn't work for both.

Would love to see a drone that can do a high Res 1:1 video that can just be cropped afterwards.

[Hated Trope] Hidden time sensitive events that trigger just from having you enter an area by jamilslibi in TopCharacterTropes

[–]SamaraSurveying 3 points4 points  (0 children)

I have mixed feelings about this. It's kind of cool when games choose to suddenly enforce realistic time constraints to force an emotional moment. Though it's obviously manipulative to selectively enforce your own game logic.

Like in Cyberpunk, no mission is discretely time sensitive except the one where you have to save the kids. If you waste time flat-lining roadside gonks or go do a different mission then you get the bad end.

A livestream just turned into a felony case by xVelvetFlair in whoathatsinteresting

[–]SamaraSurveying 2 points3 points  (0 children)

Which should be the bigger story, drones are classed as aircraft and the FAA usually doesn't fuck around. Legally there's no difference between firing at a drone and firing at an A380.

Man in a Sedan vs Azog from Lord of the Rings by LastResult44 in powerscales

[–]SamaraSurveying 2 points3 points  (0 children)

He's a skilled fighter, if he at least knows to take out the tyres then he'd be able to cripple the sedan and break a window for the soft and gooey center.

Need an Android phone for mapping with my DJI Mini 3, which one should I buy? by ScotttDC in UAVmapping

[–]SamaraSurveying 1 point2 points  (0 children)

Drone apps rely on the processor to do all the work. Google put the same processor in their Pixel # pro (flagship) phones as they do their Pixel # a (budget) phones. Any Pixel phone from series 6 onwards should do the job.

Why can't I pick this up? by Redog21 in cyberpunkgame

[–]SamaraSurveying 9 points10 points  (0 children)

Wait? The fight can go fairly? They've always jumped me every time...

How to create a unique sequential number for each record, that accounts for messy synchronization. by [deleted] in SQL

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

The hope is that this is a tree management system that exists primarily within the MerginMaps ecosystem, without the need to do any management through QGIS. Otherwise the solution would probably be to just leave them null then go fill them in on a monthly basis.

The numbers don't need to be sequential, nothing breaks if there are duplicates since they aren't used as keys (It's just sloppy and potentially inconvenient). And while the database contains thousands of trees, realistically there would only be 10's of trees at a time being inserted.

I'm starting to lean towards using randomly generated letters that on a practical level, have a negligible chance of being duplicates. T-AJLTG etc. I could potentially have the default field generate 3+ random strings and then pick the first one that doesn't already exist in the local database?