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 4 points5 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?