By the end of this video, you’ll know how to use all 3 Polygon commands that are available in Fusion 360 – Circumscribed, Inscribed, and Edge Polygons.
Source: How to Use the Polygon Commands in Fusion 360 (all 3 explained)
By the end of this video, you’ll know how to use all 3 Polygon commands that are available in Fusion 360 – Circumscribed, Inscribed, and Edge Polygons.
Source: How to Use the Polygon Commands in Fusion 360 (all 3 explained)
Source: Slic3r Manual – Overview
We all know and love OpenSCAD for its sweet sweet parametrical goodness. However, it’s possible to get some of that same goodness out of Fusion 360. To do this we will be making a mathematical mode…
With the default options you will only have read permissions when mounting a UNIX share using the anonymous user. We can give the anonymous user write permissions by changing the UID and GID that it uses to mount the share.
The image below shows the a share mounted using the default settings.

To change the UID and GID we need to make a simple change to the Windows registry by performing the following steps:

Assuming your NAS device is on the same network as your Windows machine and the IP address of the device is 10.1.1.211, the following command will mount a share on the NFS system at /mnt/vms.
C:\Users\windows> mount -o anon \\10.1.1.211\mnt\vms Z:
Z: is now successfully connected to \\10.1.1.211\mnt\vms
The command completed successfully.
The share is now mounted and we can access the data by navigating to the Z: drive.
Source: Print Quality Guide
Netherlands – http://www.hikvisioneurope.com/portal/?dir=portal
UK – http://www.hikvisioneurope.com/uk/portal/
Hikvision RTSP URL address format
If you own a Hikvision device such as an IP camera or a NVR/DVR, you can use the RTSP protocol to live stream. RTSP stands for Real Time Streaming Protocol, a network protocol for streaming the videos in real-time. Basically, it’s designed to send audio or video live from one device to another. The same RTSP url format works for Hilook devices as well.
Hikvision RTSP URL format (with Authentication)
Hikvision RTSP: rtsp:// [USER] : [PASS] @ [ADDRESS] : [RTSP PORT] /Streaming/Channels/ [CH] 0 [STREAM TYPE]
Fill in your information as follows:
- [USER] – This is the username to access your device (IP camera, NVR, DVR)
- [PASS] – This is the password to the user
- [ADDRESS] – This can be the IP address or the domain / DDNS name of your device
- [RTSP PORT] – This is the RTSP port of your device, the default is normally 554
- [CH] – This refers to the channel number that you want to pull
- [STREAM TYPE] – 0 for main stream (highest resolution), 1 for substream (low resolution, but faster)
Example 1. Local IP address
The local IP address of the device is: 192.168.1.100 and the RTSP port is 554. These are the RTSP streaming addresses:
Hikvision Main Stream: rtsp://admin:password@192.168.1.100:554/Streaming/Channels/101
Hikvision Sub Stream: rtsp://admin:password@192.168.1.100:554/Streaming/Channels/102Example 2. External IP address
The local IP address of the device is: 105.152.15.99 and the RTSP port is 554. These are the RTSP streaming addresses:
Hikvision Main Stream: rtsp://admin:password@105.152.15.99:554/Streaming/Channels/101
Hikvision Sub Stream: rtsp://admin:password@105.152.15.99:554/Streaming/Channels/102RTSP without Authentication
rtsp://<IP addressof device>:<RTSP port>/Streaming/channels/<channel number><stream number>
Note: <stream number> represents main stream(01), or the sub stream(02)Example:
rtsp://173.200.91.70:10554/Streaming/channels/101 –get the main stream of the first channel
rtsp://173.200.91.70:10554/Streaming/channels/102 –get the sub stream of the first channel
Source: Hikvision RTSP URL address format — SecurityCamCenter.com
Shade Alternate Rows
This example shows you how to use conditional formatting to shade alternate rows. Shading every other row in a range makes it easier to read your data.
1. Select a range.
2. On the Home tab, in the Styles group, click Conditional Formatting.
3. Click New Rule.
4. Select ‘Use a formula to determine which cells to format’.
5. Enter the formula =MOD(ROW(),2)
6. Select a formatting style and click OK.
Result.
Explanation: the MOD function gives the remainder of a division. The ROW() function returns the row number. For example, for the seventh row, MOD(7,2) = 1 because 7 divided by 2 equals 3 with a remainder of 1. For the eight row, MOD(8,2) = 0 because 8 divided by 2 equals 4 with a remainder of 0. As a result, all odd rows return 1 (TRUE) and will be shaded.