Posts

Showing posts from September, 2015

Swatch ng for strong joins for a bed.

https://woodgears.ca/mortise/strong.html

Project soane

http://projectsoane.com/
Work Breakout table formatter Option Explicit Sub Table_Format_bottom_right()     Dim objTable As Table     Dim I As Integer          Set objTable = Selection.Tables(1)          With objTable         ''Padding to 0         .TopPadding = InchesToPoints(0)         .BottomPadding = InchesToPoints(0)         .LeftPadding = InchesToPoints(0.001)         .RightPadding = InchesToPoints(0)                  ''Format colors         For I = objTable.Columns.Count To 1 Step -1             ''Shading             ShadeMod .Columns(I), I             ShadeMod .Rows(I), I                          ''borders             BDR_NONE objTable.Columns(I).Borders(wdBorderHorizontal)             BDR_NONE objTable.Rows(I).Borders(wdBorderVertical)             BDR_Single objTable.Columns(I).Borders(wdBorderLeft)             BDR_Single objTable.Rows(I).Borders(wdBorderTop)         Next I                  For I = 1 To

Parametric walls VIA profiles in sketchup

http://blog.sketchup.com/sketchupdate/profile-builder-2-create-parametric-wall-assemblies-sketchup?mkt_tok=3RkMMJWWfF9wsRons6jIZKXonjHpfsX%2F6usoUaC2lMI%2F0ER3fOvrPUfGjI4ATcRhI%2BSLDwEYGJlv6SgFTLTAMaNv0LgOXxA%3D

20mp camera module.

http://www.epixinc.com/?gclid=CjwKEAjwpaqvBRCxzIGoxs6v2TkSJADel-MITwibb8jG37yeWpoS1ob0NobP2JvJtR4OObw65wnmsxoC-bTw_wcB

Getting close to Star Trek Tri-corders

GETTING CLOSE TO STAR TREK TRI-CORDERS.... Cool tech, great for spotting thermal leaks, or seeing in the dark. Interested to know the Range and Would love to have a multi spectral into radio, em, UV and other ranges... http://www.flir.com/flirone/display/?id=69324&gclid=CjwKEAjwpaqvBRCxzIGoxs6v2TkSJADel-MIMfZhy6b6BJBRben7ONrLtVHfP7o5SmV8pmvr5XPaBBoCrkfw_ wcB

Self-cert for macros

*See 2020/11/new-selfsignedcertificate-pkiclient   for update Powershell version http://www.source-code.biz/snippets/vbasic/3.htm How to create a self-signed certificate that can be used to sign MS-Office VBA projects (Excel/Word macros) on multiple computers Problem:  When a certificate is created by using selfcert.exe, it's private key cannot be exported. The export wizard of the Windows certificate console says "the associated private key is marked as not exportable". Solution version 1:  Use makecert.exe with the "-pe" option to create and store the certificate with an exportable private key: makecert -r -pe -n "CN=Your Name" -b 01/01/2000 -e 01/01/2099 -eku 1.3.6.1.5.5.7.3.3 -ss My Then you can export the certificate from the Windows certificate store, including the private key. Note :  Old versions of makecert.exe do not support the "-pe" option. The  .NET Framework SDK  2.0 and the October 2002 version of the  Platform S