Search found 2995 matches

by sliptonic
Mon Sep 25, 2023 5:34 pm
Forum: Developers corner
Topic: Github requiring personal device ID.
Replies: 47
Views: 7570

Re: Github requiring personal device ID.

As i asid, that is not the question. And as is said again, i can not work that way. (no fixed hardware, no fixed IP, no standard devices, and as a said, no real 2FA (with 2FA i mean real two individual password factors)). If you have no answer then please do not try to convince me. edit: typo The f...
by sliptonic
Mon Sep 25, 2023 3:20 pm
Forum: Developers corner
Topic: Github requiring personal device ID.
Replies: 47
Views: 7570

Re: Github requiring personal device ID.

user1234 wrote: Mon Sep 25, 2023 3:14 pm That was not the question.

I know there are some workaournds, but they are no real 2FA, this is why i can not use it. On my bank account i have a real 2FA, but that is a bad joke.
Not sure what you mean by 'real 2FA'. Yubikey is true hardware authentication. It's as real as it gets.
by sliptonic
Mon Sep 25, 2023 3:08 pm
Forum: Developers corner
Topic: Github requiring personal device ID.
Replies: 47
Views: 7570

Re: Github requiring personal device ID.

Github 2FA works extremely well with Yubikey.
https://www.yubico.com/
by sliptonic
Mon Sep 25, 2023 3:05 pm
Forum: Assembly
Topic: Integrated Assembly Workbench, not the official Thread (Unified Assembly Workbench)
Replies: 92
Views: 2470064

Re: Unified Assembly Workbench

Official project name now seems to be "Integrated" rather than "Unified". Yeah, 'unified' implies a consolidation. That's not the goal. Existing addon assembly wbs are still a thing. 'Integrated' is more accurate for this initiative. The first link doesn't seem to have any way t...
by sliptonic
Sat Sep 23, 2023 2:15 pm
Forum: Open discussion
Topic: Topological Naming Problem question
Replies: 23
Views: 3954

Re: Topological Naming Problem question

Pieces of the solution are being ported to the main branch and tests written as we go. The implemented code isn't being used so you won't see much change just yet. The current phase is when we start using the tn mitigation logic. We expect FreeCAD to slow down until the we get to the optimization ph...
by sliptonic
Sun Sep 17, 2023 12:34 am
Forum: Developers corner
Topic: Linking to external .STEP files
Replies: 17
Views: 2252

Re: Linking to external .STEP files

Yeah it's just a stupid example.
There's a filename property populated with name. If you change it to a different file, it should load that one. Likewise, triggering a recompute after changing the step file should cause the new one to be loaded
by sliptonic
Sat Sep 16, 2023 6:27 pm
Forum: Developers corner
Topic: Linking to external .STEP files
Replies: 17
Views: 2252

Re: Linking to external .STEP files

I just stuck it in a macro and ran it.

You'll need to change the path to point to a real step file on your drive.
by sliptonic
Sat Sep 16, 2023 4:19 pm
Forum: Developers corner
Topic: Linking to external .STEP files
Replies: 17
Views: 2252

Re: Linking to external .STEP files

What I had in mind was something simple. This is a naive implementation in python. If it makes sense, it should be implemented as a core feature, probably in c++ What's the downside of doing something like this? import FreeCAD as App class ReloadableObject: def __init__(self, obj): # additional prop...
by sliptonic
Sat Sep 16, 2023 1:32 pm
Forum: Open discussion
Topic: reasons - why uwestoehr was inactive
Replies: 40
Views: 12008

Re: reasons - why uwestoehr was inactive

FreeCAD master branch is protected and has been for some time. The change was made as a direct result of one of these instances. Everyone including wmayer is working through prs now.
by sliptonic
Fri Sep 15, 2023 5:16 pm
Forum: Developers corner
Topic: Linking to external .STEP files
Replies: 17
Views: 2252

Re: Linking to external .STEP files

ok, I understand. Technically this works but I don't think we could recommend it to users as a way to solve a problem. It is very brittle. Here's what I did: Step File ->imported to -> D1 -> is linked to -> D2. If D2 is closed and you open D1, delete the imported step, reimport, and save, then when ...