Too many conspiracy theories, and many more to come ?

Until we find the ultimate truth, I’m guessing there will be more conspiracy theories.

Everyone understand, how frustrated the affected families are. However the more you put effort on this, the more mysterious it will be. Let the time to solve, and be hopeful a random event might shed some light to the ultimate truth.

Good one watch and highly recommended.

Advertisement
Posted in Uncategorized | Tagged | Leave a comment

Solving the last layer of Rubik’s cube

Solving first 2 layers seems straight forward. There are lots of videos on this.

After looking at several algorithms, I found this one to solve the last layer.

T-Top, C-Clockwise, A-Anticlockwise, R-Right, L-left, B-Bottom

  1. To make the cross
    1. FC, RC, TC, RA, TA, FA
  1. Check all center pieces are matching
    1. If they are adjacent
      1. RC, TC, RA, TC, RC, TC-2, RA
    2. If they are opposite – move matching one to the back
      1. RC, TC, RA, TC, RC, TC-2, RA
  1. Solving the corners
    1. RA,BA,RC,BC,RA,BA,RC,BC
Posted in Uncategorized | Leave a comment

This is what ChatGPT says about skipping

Posted in Uncategorized | Tagged , | Leave a comment

Don’t get caught up to these crooks

Read this tip if you have plans to repair/replace the garage door.

First, it was my bad I forgot to service my garage door. There is no need to get the handyman for this . You can do it yourself, just buy WD-40 from bunnings and apply that to all mechanical parts of the door.

When the springs for the garage door is not serviced, it becomes a heavy load to the motor and will try to draw more current. As a result the 10A fuse inside the motor will burn out.

I had this issue and didnt bother checking the fuse, ( also it wasnt known to me as well and I was getting ready for the holidays) as the motor was used for a quite long time. I called the door repair guy and and he came and just said its busted and needs to replace the motor, which cost me $750 in total.

After the replacement, the guy was trying to take the motor and accessories with him. I asked him to keep, just for me to play around and I can bin in later.

After a bit of debugging I found where the issue was ( cost is < $1 ), and called to company and 1made the complaint. After a while the they called me and offered the options to reinstall the old one or charge only the cost.

Moral of the story, just check the fuse before calling the door repair guy.

Use this to service

Where the fuse is located, ( 1.11 )

Posted in Uncategorized | Leave a comment

Intel NUC or Raspberry PI ?

What ultimately matters is ROI, output/performance per 1w. ( if we ignore the cost factor ). In that perspective Intel NUC is way ahead than Raspberry PI. So why waiting if Raspberry Pi is out of stock.

Power is just a bit higher than Raspberry PI,

  • NUC with Ubuntu 22 ( i5 , 16GB, SSD ) – 7.2W
  • Raspberry Pi is with Raspbian ( Model 4, 8GB ) – 4.8W
  • Both running LAMP stack
Posted in Uncategorized | Tagged , | Leave a comment

Another point of view

A 2013 documentary, still its worth watching. TBH I enjoyed every second. Its free on YouTube with subtitles.

Posted in Uncategorized | Leave a comment

Gmail SMTP will no longer be supported. What’s next?

I was using gmail smtp with PHP application for a long time and now they stopped the smtp .

After looking for a solution for a some time, I found this easy way. ( not sure whether its the easiest way, ping me if not )

I used raspberry pi 4 with LAMP for testing.

  1. How to install LAMP on raspberry pi
  2. Install sSMTP
    • Remove any previous mail palcakge
      1. service sendmail stop
      2. service postfix stop
      3. sudo apt-get remove sendmail
      4. sudo apt-get remove postfix
  3. Install sSMTP
    • sudo apt-get install ssmtp
    • nano /etc/ssmtp/ssmtp.conf

For me the free quota from elasticemail is more than enough.

It’s now ready for testing

<?php
$message = "Hi, how are you doing?";
mail('youremail@domain.com', 'Email Subject', $message);
?>

Check the log for any errors

tail -f /var/log/mail.log

Following sites were updated with LAMP+sSMTP message sending functionality ( http://buminda.com & http://buminda.com.au )

Posted in Uncategorized | Tagged , , | Leave a comment

Smart On FHIR

Following application demonstrates the simplest implementation of Smart On Fhir framework.

Technology Stack:

  • ASP.NET Core
  • React
  • Bootstrap

Source : https://github.com/buminda/smartonfhir-react

Documentation :

Launch url : https://localhost:xxxxx/launch

Redirect url : https://localhost:xxxxx/index

Posted in Uncategorized | Tagged , , | Leave a comment

QC-1929 : Oscilloscope Testing

Why going for high end oscilloscope, when we have QC-1929 for a price less than $150. It has most of the features for general use.

  1. Maximum
  2. Minimum
  3. Peak to Peak
  4. Mean
  5. Frequency
  6. Period
  7. Amplitude
  8. Any many more which it not used frequently

Posted in Uncategorized | Leave a comment

React Software Architecture

Posted in Uncategorized | Leave a comment