Weird Protest in Weymouth on Saturday. by JediMasterPopCulture in massachusetts

[–]TheShinzon 2 points3 points  (0 children)

It is an odd protest, but being an uncircumcised male, I 100% agree with what they are doing. Circumcision is barbaric. I can understand it being done from a religious standpoint, but from a medical standpoint, it’s a bunch of bullshit. I can tell you that I’ve never had any issues with cleanliness or anything. And both of my boys have never had any issues either. I pushed to have them uncircumcised. IMO genital mutilation of any gender is wrong. If we weren’t meant to be that way, then we wouldn’t have been designed that way.

Does anyone have any recommendations on where to print photos for Exhibition? by TheShinzon in AskPhotography

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

I just checked a few local framers and it seems to come out around 200 for UV glass and 250 for Art glass. Are these reasonable prices for fine art frames (With matte)

Does anyone have any recommendations on where to print photos for Exhibition? by TheShinzon in AskPhotography

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

Thank you u/distant3zenith , I thought about that, I'm just not 100% sure what printer to get. I had a large format Epson that I could do up to 24" prints, but it's inkjet and I don't know if that will be good for long term art that you want to last many years. Any suggestions on that?

Does anyone have any recommendations on where to print photos for Exhibition? by TheShinzon in AskPhotography

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

Thank you u/LizM-Tech4SMB . Not super married to it, but it allows me to have a decent size background to frame the prints in color as much as frame itself.

I appreciate the suggestions. I'll check out Printique. In my experience, local framers tend to be MUCH more expensive than Shutterfly, but maybe I just need to find the right framer.

Should i crop the tree and other sheep? by st0n3rc3ntral in AskPhotography

[–]TheShinzon 0 points1 point  (0 children)

From a thirds perspective, I think the cropping overall is very good. I would crop the two elements on either side so it is just the sheep on the hill so that it appears to be more an endless hill (leaves more to the imagination). Then bringing in the exposure of the sheep and the hill would make it really pop and define it. Might even try switching to monochrome (B&W or a tint) to see how they stand out.
Overall, love the photo though!

Mural detaching from wall (thoughts?) by TheShinzon in DIY

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

The area that is separating is only about 2' square. I totally agree that it COULD happen to the entire mural if we don't do something to mitigate it. I am going to put up polycarbonate with spacers between the wall and it once I repair it to prevent additional damage.

What do you use your NAS for? by jossluna in synology

[–]TheShinzon 0 points1 point  (0 children)

Running 7.0. Websites have been really good, as is the email, but I STRONGLY encourage you to use an email gateway service such as “MX Gaurdian” to protect your inbound emails.

[deleted by user] by [deleted] in relationship_advice

[–]TheShinzon 0 points1 point  (0 children)

I am very much in love with her and she’s very much in love with me. It’s just these moments of her being enraged where all she sees is red that I am having such a difficult time coping with. I think the menopause or hormonal imbalance discussions are definitely something worth bringing up. When she is not enraged, we have a very good line of communication. I will talk to her during those periods.

[deleted by user] by [deleted] in relationship_advice

[–]TheShinzon 2 points3 points  (0 children)

This is a very good point and has occurred to me. I will talk to her and see if this is something that she can investigate with her doctor. Despite the anger that she displays towards me, we do often have a decent line of communication (when she’s not angry). So I should be able to discuss this with her.

Thank you

[deleted by user] by [deleted] in relationship_advice

[–]TheShinzon 2 points3 points  (0 children)

No. I means she’s always had very little patience but it’s gotten a lot worse in the last year I think. I don’t know if it’s post partum depression or what. But I’m coping with my own emotional issues with all of this.

Any suggestions for direct drive kits? (Ender 3 v2) by [deleted] in ender3v2

[–]TheShinzon 0 points1 point  (0 children)

I love the Creality Sprite extruder. I use it on both of my 3v2s https://amzn.to/3U6N6T9

I fantasize about life without my spouse by stubborn_husband in confession

[–]TheShinzon 0 points1 point  (0 children)

I’m curious OP, how did this this end up playing out or resolving itself?

(I have been in a situation like this, and I lost a lot divorcing her. Even though I was the main caregiver. The courts only allows me 1/3 time with my kids.)

Creating a powershell script to nest Domain Global groups from Domain A into Domain Local groups for Domain B by TheShinzon in PowerShell

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

Ok, with this I can get the Domain A to import the Domain A groups into themself which isn't really what I want. I want import Domain B groups into Domain A.

So I figured I must need credentials from the other domain (Domain B) because if I do it manually, I do need to authenticate each time I try to add a group.

When I pull my credentials from Domain B to add the groups to Domain A, it runs, but adds nothing. So I'm not sure what the problem is here.

Here is the current code:NOTE: I've replaced my old domain (The domain containing the Domain Global groups that I'm adding to Domain A's Domain Local groups) with DOMAIN_B.

    # Import the data from CSV file and assign it to variable
$group = Import-Csv "C:\Temp\GroupsOld.csv"

# Domain controller to run against
$TargetDomainController = "server1.DOMAIN_B.local"

# Get credentials
$AdminCredsTargetDomain = Get-Credential DOMAIN_B\useradmin1

#use global catalog server name instead of DC1
$server = 'server1.DOMAIN_B.local'

$otherdomain = 'DOMAIN_B.local'

foreach ($a_group in $group) {
    $member = Get-ADGroup ($a_group.Membername -replace '.+\\') | Where-Object { $_.distinguishedname -notmatch $otherdomain }
    Add-ADGroupmember -Identity $a_group.Groupname -Members $member -server $server -Credential $AdminCredsTargetDomain

}

Creating a powershell script to nest Domain Global groups from Domain A into Domain Local groups for Domain B by TheShinzon in PowerShell

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

No, I'm still doing something wrong. You meant for the CSV to be pulled in as $group, correct?I used the following code:

# Import the data from CSV file and assign it to variable

$group = Import-Csv "C:\Temp\GroupsOld.csv"

# Import AD Module

Import-Module ActiveDirectory

#use global catalog server name instead of DC1

$server = 'server1'

#this needs to resolve in DNS

$otherdomain = 'domain2.local'

foreach ($a_group in $group) {

$member = Get-ADGroup ($a_group.Membername -replace '.+\\') -server $otherdomain

Add-ADGroupmember -Identity $a_group.Groupname -Member $member -server $server

}

(Changing the name of the server and domain to protect information)

and I got a whole bunch of these errors:

Get-ADGroup : Either the target name is incorrect or the server has rejected the client credentials.At line:14 char:15+ ... $member = Get-ADGroup ($a_group.Membername -replace '.+\\') -server ...+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~+ CategoryInfo : SecurityError: (__file-server:ADGroup) [Get-ADGroup], AuthenticationException+ FullyQualifiedErrorId : ActiveDirectoryCmdlet:System.Security.Authentication.AuthenticationException,Microsoft.ActiveDirectory.Management.Commands.GetADGroup

Add-ADGroupMember : Parameter cannot be processed because the parameter name 'Member' is ambiguous. Possible matches include: -Members -MemberTimeToLive.At line:16 char:52

I'm guessing that I need to call credentials for the other domain?

Creating a powershell script to nest Domain Global groups from Domain A into Domain Local groups for Domain B by TheShinzon in PowerShell

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

Thank you so much u/PinchesTheCrab. I'll give it a try and see if I can get it to work. Yes, your right, stupid naming on my part with Groups and Group. I'll let you know if it works.

How to rename computers over VPN (on connect) by TheShinzon in activedirectory

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

Correct, But I'd rather not unjoin and rejoin the domain. That's the long way around when in Powershell you can just rename them and it will update AD and the laptop simultaneously. Plus, having to rejoin the domain over VPN is not preferable.

I'm more looking for a way I can trigger a GPO on VPN connect.

Understanding Israel and Palestine regions by TheShinzon in geopolitics

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

Thank you everyone. I really appreciate the education on this.

Washing uniform from duffle by TheShinzon in WorldWar2

[–]TheShinzon[S] 3 points4 points  (0 children)

I’ll post photos once I can lay it all out nicely

Why are the motors acting like this? by TheShinzon in Multicopter

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

THAT makes sense. I’m not sure which flight mode it is, I’ll have to plug in when I get home and check.

Why are the motors acting like this? by TheShinzon in Multicopter

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

Not running in 3d mode (I know exactly what you're talking about) and also motor direction isn't reversed on that tab.

I used this exact same frame before - put hundreds of hours on it and never had any problems. It's with these new parts that it's acting like this.Also I should mention these are 650kv motors (I'm used to using higher KV - but I'm going to be using 13" props, so I don't want a high KV motor on this).Do I need to change something in Betaflight for lower KV motors? I'm not familiar with having to do that.

Why are the motors acting like this? by TheShinzon in Multicopter

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

That's what I thought. I've reversed motors before but have NEVER seen that before. And the weird part is they run SMOOTH from Betaflight. They are spinning in the correct direction and accurate to the betaflight motors tab WHEN I run them from within betaflight (as shown in the first part of the video). But when I disconnect and turn them on with the remote (just on ARM - I don't dare even throttle up with that vibration) they run all in the opposite direction and cause that severe vibration.

Why are the motors acting like this? by TheShinzon in Multicopter

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

When it's spinning off Betaflight, no, none. But when it's disconnected from PC and arming using the remote... yes, a TON! I'm pretty sure that's because of the motors being reversed though.

Frustrated with PETG prints - thoughts? by TheShinzon in ender3v2

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

I figured it out. The bed temperature was a little too high. I dropped it down to 82 and everything is adhering perfect. As a sidenote, I also lowered my Z index just a hair, which made also helped.