Here’s how to delete blank rows in Excel.
Misc
RFC 1918
Here’s the original document published back in February 1996 detailing the allocation for private internet addresses. The Internet Assigned Numbers Authority (IANA) has reserved the following three blocks of the IP address space for private internets. RFC 1918.
10.0.0.0 - 10.255.255.255 (10/8 prefix) 172.16.0.0 - 172.31.255.255 (172.16/12 prefix) 192.168.0.0 - 192.168.255.255 (192.168/16 prefix) |
GCP Compute Disks Move
Here’s how to move a GCP disk between zones.
- Make sure disk is detached from instance.
- Use the GCloud Disk Move command.
# Detach disk from instance gcloud compute instances detach-disk server --disk=server-boot # Move disk from us-central1-b to us-central1-f gcloud compute disks move example-disk-1 --zone us-central1-b --destination-zone us-central1-f |
Windows + Tab
Found another gem to display all Windows by using …
Windows + Tab |
Uptime in Windows
Here’s how to find uptime in Windows servers.
Go to “Start” -> “Run”. Write “CMD” and press “Enter” key.
net statistics server
# or
net stats srv |
Lessons from Boeing 737
On October 2018, Lion Air Flight 610 from Jakarta to Pangkal Pinang, crashed into the sea 13 minutes after takeoff, killing all 189 people aboard. Six months later, Ethiopian Airlines Flight 302, went down under similar circumstances, killing all 157 people aboard. All Boeing 737 Max planes were grounded world-wide. Over $6 billion dollars evaporated from the company’s market cap overnight. If the crisis is not fixed soon, it will impact the long term stability of the company. Boeing 737 sales are 33% of the projected sales in the next 5 years.
The flaw turned out to be the MCAS system which is a life-critical system in which software quality is of the utmost importance. Software budgets should be heavily invested, which can greatly reduce defects, and make a difference between life and death. To cut costs, executives often rush decisions, imposing unrealistic deadlines, and outsourcing to cheap contractors to save money. When products and services are rushed, morale suffers, quality suffers, productivity suffers, bugs pile up, tests are skipped, and there is team burnout.
The valuable lesson to all of this is, don’t repeat Boeing mistakes. Don’t be obsessed with cost cutting to save a few dollars, if it’s going to cost the company a lot more in the long run. Don’t sacrifice quality. It could have been a huge win for Boeing had it not been obsessed with cost cutting. It turned out to be a big disaster in the end. All that management did was take a hatchet into the Boeing brand. In the end, cheap is sometimes expensive.
Convert MP3 to OGG
Convert MP3 to Vorbis OGG format using ffmpeg.
ffmpeg -i input.mp3 -c:a libvorbis -q:a 4 output.ogg |
If you want multiple files, use a loop.
for f in ./*.mp3; do ffmpeg -i "$f" -c:a libvorbis -q:a 4 "${f/%mp3/ogg}"; done |
Matrox Monarch Configuration
You can import the Matrox Monarch HD configuration on boot up from a web page. Go to:
Command Center > Automatic Configuration. Type in URL Address starting with https. Check "Load settings on device reboot." You can either power off the device or hit reset. Holding reset for more than 5 seconds does a factory reset. On next bootup, device will have configuration contained from the remote file. |