Little Red update

Little Red now has a new home. Yeah for better protection from the weather and a way to work no matter the weather!

I was able to make some progress, although it does not look like much. The main goal was to get the radiator off so I could get better access to the belts.

Removing the front bolts was not bad, but it took some creative work to get some of the back ones off.

Turning a bolt an eighth of a turn at a time was really slow going.

After getting the radiator off, I drained out some additional coolant, leaving behind a nasty sludge.

I was hoping to be able to get better access to where the hand crank connects. I now have the access, but we still cannot find the old crank. I’ll have to order one. I just wish I could get the motor to turn over. I do still have the cylinders soaking. I’ll order a crank and then hopefully I’ll get it to turn over next time.

Find WiFi Password

More than a few times now I have had to look up how to find the password for a WiFi network saved on my laptop.  It always takes a while to find a website that accurately/correctly tells the steps.  So, here they are so I can find them again:

  1. Start
  2. Type CMD
  3. Right click on “Command Prompt” an select “Run as Administrator”
  4. To get the names of all saved networks: netsh wlan show profiles
  5. To get the password: netsh wlan show profile name=”name_of_network” key=clear

This will then show the contents of the saved keys, including the password.

Daylight Savings Time Check in Oracle

I needed a way to find if a given date is within a DST date range.  We observe DST here, so I needed to know if I needed to adjust the time or not.  The main purpose was so I could convert a date/time to GMT, which does not observe DST.

First column is current date/time
DST_START is the day DST starts
DST_END is the day DST ends
DST_CHECK will be “Y” if we are currently in DST, “N” if not.
CURRENT_TIME_GMT converts the current time to what it would be in GMT

SELECT SYSDATE,
NEXT_DAY (
TO_DATE (TO_CHAR (SYSDATE, 'YYYY') || '/03/01 02:00 AM',
'YYYY/MM/DD HH:MI AM')
- 1,
'SUN')
+ 7
dst_start,
NEXT_DAY (
TO_DATE (TO_CHAR (SYSDATE, 'YYYY') || '/11/01 02:00 AM',
'YYYY/MM/DD HH:MI AM')
- 1,
'SUN')
dst_end,
CASE
WHEN SYSDATE >=
NEXT_DAY (
TO_DATE (
TO_CHAR (SYSDATE, 'YYYY')
|| '/03/01 02:00 AM',
'YYYY/MM/DD HH:MI AM')
- 1,
'SUN')
+ 7
AND SYSDATE <
NEXT_DAY (
TO_DATE (
TO_CHAR (SYSDATE, 'YYYY') || '/11/01 02:00 AM',
'YYYY/MM/DD HH:MI AM')
- 1,
'SUN')
THEN
'Y'
ELSE
'N'
END
AS dst_check,
NEW_TIME (
SYSDATE,
CASE
WHEN SYSDATE >=
NEXT_DAY (
TO_DATE (
TO_CHAR (SYSDATE, 'YYYY')
|| '/03/01 02:00 AM',
'YYYY/MM/DD HH:MI AM')
- 1,
'SUN')
+ 7
AND SYSDATE <
NEXT_DAY (
TO_DATE (
TO_CHAR (SYSDATE, 'YYYY')
|| '/11/01 02:00 AM',
'YYYY/MM/DD HH:MI AM')
- 1,
'SUN')
THEN
'CDT'
ELSE
'CST'
END,
'GMT')
AS current_time_gmt
FROM DUAL;

To give credit, I used the info from:
https://www.techonthenet.com/oracle/functions/new_time.php
https://stackoverflow.com/questions/287563/in-oracle-how-can-i-detect-the-date-on-which-daylight-savings-time-begins-end

Drainage issue

I’m a little late posting this, but it’s still worthy of a post.

About a month ago we had a week plus long cold stretch. Towards the end of it, I noticed some pretty large puddles in the basement. I tracked it down to be from our softener and filter system purging themselves. Our basement floor drain was clogged.

I feed my 25′ snake into it. It did not clear the issue. So, I had to call a plumber. Their long snake cleared the drain and we found what it drains to. You see, this is the drain for our walk our basement. I figured that it did not drain to the sewer as I could see that main pipe in the basement ceiling. We discovered that this particular drain comes out along our backyard fence. That would explain why that area is always wet and muddy during the summer. My theory is that the builders put the drain in with the assumption that it would only be used during the summer, when the exit would not freeze. In this case, it was not only frozen, but the end was completely blocked as I had never even known it was there.

The plumbers got the water flowing, but the exact location of the exit was still unknown.

About a week later, puddles appeared again. This time, I bought a 50′ snake and a rubber bladder for the end of a garden hose. The snake still did not reach the clog, but hot water through the garden hose did the trick. I was then able to find and dig out the exit. To be extra safe, I also added a water sensor by the drain to alert us of any additional issues.

We were thankful for the water sensor as it alerted us to an issue soon after. I gave up and decided to do a more extreme fix. Here is the drain after this last issue, with the sensor moved up on top so I can clean. The pipe is what our utilities drain into.

This extreme fix will connect the basement drain exit to the rest of the yard drainage system that I added a couple of years ago. This will keep all the pipes underground, which should help both with freezing and with the wet fence line issue.

I left an access point if I do need to snake it as I am still a little worried about how shallow the pipes are. It did take some creativity to come up with the proper fittings to go from a 2″ PVC pipe to a 4″ corrugated drainage pipe. Our local Lowe’s crew did a good job at piecing together what I needed.

I plan on shortening the access pipe (by the fence) this summer after the ground settles and new grass seed is down.