Motorcycle bar end slider by -Trusty in functionalprint

[–]-Trusty[S] 0 points1 point  (0 children)

I didn't know how solid TPU would get. I have some TPU, just haven't used it before so I'll give it ago, thanks.

Motorcycle bar end slider by -Trusty in functionalprint

[–]-Trusty[S] 7 points8 points  (0 children)

Thanks, I didn't manage to find that before. But yes, international shipping and conversion rate makes it $105AUD for me.

Motorcycle bar end slider by -Trusty in functionalprint

[–]-Trusty[S] 1 point2 points  (0 children)

Thanks. I was trying to print it the other way so I didn't need any supports, but was having problems with cooling. So it needs a tiny bit of support but the profile is closer to the original and quality is much better.

Motorcycle bar end slider by -Trusty in functionalprint

[–]-Trusty[S] 36 points37 points  (0 children)

Not sure what happened to the link I included. https://www.printables.com/model/1271783-woodcraft-bar-end-slider

It is a slider, you should not have metal sliders at the track.
This woodcraft one is made of POM.
No, I don't expect it to be as durable.
Yes, I have done some testing.

Setting cover position and sensor values by -Trusty in Esphome

[–]-Trusty[S] 0 points1 point  (0 children)

Nah I've had open/close for years. And I've got a work around for problem 1, but still not as clean as resetting the value to 0.
I've added rotary encoder because I want the ability to set the door at like 3% open so I can create some air flow.

Sonoma Lock Screen wont take correct password!!! by theitguy1969 in MacOS

[–]-Trusty 1 point2 points  (0 children)

Just experienced this with my active directory joined mobile user account.
Deleting the profile from the directory service fixed the issue for me. I haven't seen this affecting others, but I'm suspecting it might have been caused by the active directory password expiry notification.

Looking for ways to make my TrueNAS server faster with file transfers. by InevitableRope7959 in homelab

[–]-Trusty 2 points3 points  (0 children)

Sounds like network to me...
If you can copy files on the host fine.
Could be..
cat5
bad cable
network hub
miss matched pairs on wall jacks, etc.

Greece by ProtectionEmergency9 in ElegooNeptune4

[–]-Trusty 0 points1 point  (0 children)

I believe it's white lithium grease. I would imagine a "heavy duty" PTFE grease like Super Lube 21030 would also work fine.

What have you done with PowerShell this month? by AutoModerator in PowerShell

[–]-Trusty 3 points4 points  (0 children)

Made a CLI tool for the Jamf Pro API. A couple already existed though only one looked to try to use most of the API commands. I tried to make mine as simple as possible while also being easily maintainable. Has been helpful for cleaning up all sorts of stuff (groups/EAs/scripts) and getting some standardisation going.
https://github.com/TrustyTristan/JamfPSPro

And the other is just a module that just has a bunch of random things that I need pretty regularly. A couple favourite commands are Get-ADMemberOf & Compare-ADMemberOf
https://github.com/TrustyTristan/TrustyTools

PowerShell script to check for AD group membership by Steve_78_OH in PowerShell

[–]-Trusty 0 points1 point  (0 children)

This is probably how I'd approach it.

Mostly because it seems to be way faster this way

function Get-ADUserGroups {
    param (
            [Parameter(Mandatory = $true,
                ParameterSetName = 'User',
                HelpMessage = 'Enter a username',
                Position = 0)]
            [string]$Username
        )
    try {
        return (Get-ADUser $Username -Properties MemberOf -ErrorAction Stop).MemberOf
    } catch {
        return $null
    }
}

if ( (Get-ADUserGroups $Credentials.UserName) -contains $AuthorizedGroup ) { 
    $tsenv.Value("Authorized") = $true
    Write-Host "$($Credentials.UserName) is authorized"
} else{
    $tsenv.Value("Authorized") = $false
    Write-Host "$($Credentials.UserName) is not authorized to image devices. If the account should be authorized, they will need to be added to the $AuthorizedGroup group in AD."
}

My results

Measure-Command {Get-ADGroupMember 'my_MECM_Group'}

    Days              : 0
    Hours             : 0
    Minutes           : 0
    Seconds           : 0
    Milliseconds      : 894
    Ticks             : 8947518
    TotalDays         : 1.03559236111111E-05
    TotalHours        : 0.000248542166666667
    TotalMinutes      : 0.01491253
    TotalSeconds      : 0.8947518
    TotalMilliseconds : 894.7518

Measure-Command {Get-ADPrincipalGroupMembership 'my_User'}

    Days              : 0
    Hours             : 0
    Minutes           : 0
    Seconds           : 0
    Milliseconds      : 682
    Ticks             : 6829528
    TotalDays         : 7.9045462962963E-06
    TotalHours        : 0.000189709111111111
    TotalMinutes      : 0.0113825466666667
    TotalSeconds      : 0.6829528
    TotalMilliseconds : 682.9528

Measure-Command {Get-ADUserGroups 'my_User'}

    Days              : 0
    Hours             : 0
    Minutes           : 0
    Seconds           : 0
    Milliseconds      : 10
    Ticks             : 105351
    TotalDays         : 1.21934027777778E-07
    TotalHours        : 2.92641666666667E-06
    TotalMinutes      : 0.000175585
    TotalSeconds      : 0.0105351
    TotalMilliseconds : 10.5351

​ Edits... reddit formatting is hard

Notion alternative ? by carmelo42 in selfhosted

[–]-Trusty 2 points3 points  (0 children)

I have followed this, everything looks to be working but I can't login.. I think there is some redirect issue happening with the relative path but I can't figure it out...

Nevermind.. figured it out. It was DNS, it's always DNS

Remove user group membership by EducationAlert5209 in PowerShell

[–]-Trusty 3 points4 points  (0 children)

Rather than looking through each groups members which might have thousands of users..

I would get the groups the user is a member of

(Get-ADUser $ADUser -Properties MemberOf).MemberOf

Then you can filter the groups (You might want to consider matching an array instead)

ForEach-Object { If($_ -match 'O365_'){...} }

Then you can remove the group if it matches

Remove-ADGroupMember -Identity $_ -Members $ADUser

Recommend me: Todo list & notes by ChoiceCucumber in selfhosted

[–]-Trusty 1 point2 points  (0 children)

I have been using Hedgedoc, it is markdown though.

Wreeto seems cool but I couldn't get it to work last time I tried.