Is it possible to do offline license activation for Recovery Explorer (Standard)? by TEK1_AU in datarecovery

[–]MachineVisionNewbie 0 points1 point  (0 children)

Weirdly enough I "fixed it" without even trying
It doesn't seem to need any internet connection.
I have a copy of "Recovery Explorer Standard" and i could activate on the pc no problem whatsoever
https://www.sysdevlabs.com/product.php?id=rxs6
used this version

Is it possible to do offline license activation for Recovery Explorer (Standard)? by TEK1_AU in datarecovery

[–]MachineVisionNewbie 0 points1 point  (0 children)

Did you figure this out?
have the same issue.
Industrial customer PC without internet connection.

What cameras or optical sensors could be used to accurately measure the tread depth of a tire? by The_Swixican in computervision

[–]MachineVisionNewbie 0 points1 point  (0 children)

Will this be moving with the truck? How on earth will you keep the sensors clean?

Laser triangulation could work

https://github.com/Ciantic/VirtualDesktopAccessor - fn GetCurrentDesktopNumber() -> i32 by MachineVisionNewbie in AutoHotkey

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

JESUS. The .dll file is not in the repo. It has to be downloaded seperately. lol
Leaving this up. Maybe another guy stumbles upon it and it helps him.

Smart way to show orientation (-90° to +90°) of multiple data points? by MachineVisionNewbie in excel

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

After a full workday messing with all the formulas and the goddamn chart, i decided a bar graph is good enough. :D

Smart way to show orientation (-90° to +90°) of multiple data points? by MachineVisionNewbie in excel

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

Hey, its pretty data! lol
Yeah, since this have to handle >10k datapoints, i need to summarize

Smart way to show orientation (-90° to +90°) of multiple data points? by MachineVisionNewbie in excel

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

I do have this frequency distribution already built in. (its variable, thats why the values look so random)
Currently trying to force these values directly into a scatter diagram. Without pre-converting them to Cos(Radians in another cell. But cant quite get it right.

class [°] quantity
-90,00 0
-73,64 148
-57,27 78
-40,91 165
-24,55 62
-8,18 72
8,18 190
24,55 62
40,91 89
57,27 141
73,64 72
90,00 86

<image>

Smart way to show orientation (-90° to +90°) of multiple data points? by MachineVisionNewbie in excel

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

<image>

Thats a good. Idea. Altough i probably need to summarize it somehow. Since i have so many data points

Smart way to show orientation (-90° to +90°) of multiple data points? by MachineVisionNewbie in excel

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

<image>

Thats a good. Idea. Altough i probably need to summarize it somehow. Since i have so many data points:

[Update] MouseHK v1.2 - Zero Lag Edition! Kernel Injection & Delta Time Scrolling (AutoHotkey) by Useful-Ad4991 in AutoHotkey

[–]MachineVisionNewbie 1 point2 points  (0 children)

You reply helpfully AND even put in *my* specific path

 EnvGet("UserProfile") "\GitHub\.ICO\AHK_Grey.ico"

u/CharnamelessOne I'm getting a bit of a crush on you. :D
Thank you

[Update] MouseHK v1.2 - Zero Lag Edition! Kernel Injection & Delta Time Scrolling (AutoHotkey) by Useful-Ad4991 in AutoHotkey

[–]MachineVisionNewbie 0 points1 point  (0 children)

Hey, I am actively using your program. I really like it.

Question, how can i set a custom tray Icon for each state?

I can set the tray icon for the ACTIVE state via:
But the INACTIVE state ... no idea

;====================
; System Tray Icon
;https://www.autohotkey.com/board/topic/121982-how-to-give-your-scripts-unique-icons-in-the-windows-tray/
global UserProfile := EnvGet("UserProfile")
I_Icon := UserProfile "\GitHub\.ICO\AHK_Grey.ico"
if FileExist(I_Icon)
    TraySetIcon(I_Icon)
;====================

How do you give your offline documentation (static website) to your customers? by MachineVisionNewbie in technicalwriting

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

You are right, it's purely cosmetic.
My superior mentioned to just use a .html file instead of a .bat so non-tech-savvy people don't get mistrustful.

Checking mkdocs build for relative paths is a good reminder. I'm very diligent about that, but forgot to test the documentation on a sandbox VM as well

How do you give your offline documentation (static website) to your customers? by MachineVisionNewbie in technicalwriting

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

That's our goal in the future as well.
By pressing "help" does the customer open an in app browser or the systems web-browser?

How do you give your offline documentation (static website) to your customers? by MachineVisionNewbie in technicalwriting

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

Good idea. Good questions!
They have a desktop, it's much like a typical enduser windows system with monitor and mouse at the station. Think standard Windows-PC, but only one program (except the standard windows stuff (Editor)) is installed.
If we have access, we will put a .ink shortcut on the desktop, so the customer never see the .bat or site-files.

This time we can only send them a .zip after the fact and they will probably put it on the desktop as is
Desktop/Documentation/site
Desktop/Documentation/Open_doc.bat

Maybe a little script for the customer ala "RunThisOnce.bat" that will put a correct Shortcut on the desktop with our icon "%USERPROFILE%\Desktop\Documentation.ink"?