-
Seattle panorama
Cityscape is constantly changing and over the weekend I took a snapshot of the Seattle water front.
-
Custom Intake Pipe
With the custom air filter and new carbs, the standard intake pipes do not fit and the aluminum - rubber combination looked ugly.
Make one :)
Using a 90° and a 45° stainless steel elbow with 3mm thickness seemed to be a good start.Don't have back purging, so some sand would just do it.
Grinding and Sanding
Polishing
Done
Before:
After:
-
Carburetor vacuum ports
The Mikuni carbs do not have a vacuum port to sync carbs.
Carburetor synchronization is important for a smooth running engine, and if you follow the simple steps, you can easily add a sync port to the Mikuni carbs.
The flat spot is perfect for the connector port.
I made the connector out of bronze with M4 on the outside and M3 for the cap screw. Use a 3mm or 1/8" drill bit for M4 as this material is very soft.
Depth is about 5mm.
The outside diameter of the connector is 4.5mm.
Connecting a simple vacuum gauge shows the negative pressure for each side. Use the idle adjustment screw to set for an equal value.
-
Custom airfilter box version 3.0
This is the third version of my custom air filter box for my M72 using a paper air filter C1041.
The previous version with the K&N was OK, but using a paper filter seems to work better with the Mikuni's.
Parts are ready to assemble:
Previous version with latest version:
Assembled at the bike:
-
use TLS1.2
If you found that your code to download from a website started failing with an error like:
The request was aborted: Could not create SSL/TLS secure channel.or
Ausnahme beim Aufrufen von "DownloadFile" mit 2 Argument(en): "Die Anfrage wurde abgebrochen: Es konnte kein geschützter SSL/TLS-Kanal erstellt werden." + $webclient.DownloadFile($file, $toZipFile) + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + CategoryInfo : NotSpecified: (:) [], MethodInvocationException + FullyQualifiedErrorId : WebExceptionthen your webserver security is updated and now requires TLS1.2.
Tls is a security protocol to transfer data over the Internet. To solve this issue, simply set the security protocol to Tls1.2.For example in PowerShell:
$webclient = New-Object System.Net.WebClient [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 $webclient.DownloadFile($file, $toZipFile)