Borbin the 🐱

Custom Intake Pipe

11 July, 2018


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

28 May, 2018


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

20 April, 2018


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

24 February, 2018


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 : WebException

then 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)

Math Question #4

25 November, 2017


The final one:

Using trigonometric identities, the expressions are divided into sin(x)/x segments for which the lim exists. Rewriting the expression to remove the denominator is one way of doing it, but won't work in such cases. Using a known lim makes it all so easy!


Math Question #3

25 November, 2017


The third one:

It is c) that gets to the solution! The expression f(x) + f(y) + x^2y + xy^2 is part of the binominal (x+y)^3.
If f(x) is the first/last element of the binominal, the equation can be satisfied!


Neuere Beiträge →← Vorherige Beiträge