• Skip to main content

Uly.me

cloud engineer

  • Home
  • About
  • Archives

Misc

Excel Delete Blank Rows

October 31, 2019

Here’s how to delete blank rows in Excel.

Filed Under: Misc Tagged With: blank, delete, excel, rows

RFC 1918

October 24, 2019

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)

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)

Filed Under: Misc Tagged With: addresses, internet, private, rfc 1918

GCP Compute Disks Move

September 21, 2019

Here’s how to move a GCP disk between zones.

  1. Make sure disk is detached from instance.
  2. 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

# 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

Filed Under: Misc

Windows + Tab

September 18, 2019

Found another gem to display all Windows by using …

Windows + Tab

Windows + Tab

Filed Under: Misc Tagged With: all, display, tab, windows

Uptime in Windows

July 16, 2019

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

net statistics server # or net stats srv

Filed Under: Misc Tagged With: cmd, uptime, windows

Lessons from Boeing 737

July 11, 2019

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.

Filed Under: Misc Tagged With: 737, boeing, cheap, cost cutting, disaster, max, mistakes, quality

Convert MP3 to OGG

July 4, 2019

Convert MP3 to Vorbis OGG format using ffmpeg.

ffmpeg -i input.mp3 -c:a libvorbis -q:a 4 output.ogg

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

for f in ./*.mp3; do ffmpeg -i "$f" -c:a libvorbis -q:a 4 "${f/%mp3/ogg}"; done

Filed Under: Misc Tagged With: conversion, ffmpeg, mp3, ogg, vorbis

Matrox Monarch Configuration

July 4, 2019

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.

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.

Filed Under: Misc Tagged With: configuration, file, live streaming, matrox, monarch, remote, web

  • « Go to Previous Page
  • Go to page 1
  • Go to page 2
  • Go to page 3
  • Go to page 4
  • Go to page 5
  • Go to page 6
  • Go to Next Page »
  • Home
  • About
  • Archives

Copyright © 2023