Quick and important points from the Apple Special Event – September 2018:
iOS 12 will be released on September 17th.
macOS Mojave will be released on September 24th.
Continue reading “A quick look at Apple’s Special Event – September 2018”
Life is a Lab! To Learn, read. To understand, think. To know, write. To master, teach.
Quick and important points from the Apple Special Event – September 2018:
iOS 12 will be released on September 17th.
macOS Mojave will be released on September 24th.
Continue reading “A quick look at Apple’s Special Event – September 2018”
In 2004, I learned how to play Frisbee. It was love at first sight. I used to go with my friend to the beach and throw the frisbee for hours on end…then my friend left the country to continue his studies. As a natural progression, in 2013, I learned how to throw boomerangs.
At first it was hard, I would throw it and it would not return. It took a lot of practice but then I finally made it! Persistence is key!
I now have a collection of various boomerangs that I use: some for long distance, some are wind resistant, some are easy to throw and they return more frequently with less skill, etc.
That’s a short video someone took of me while throwing the boomerang in the Bellevue Downtown Park:
You like boomerangs?
You might also like:
You might also like:
Of Mountains & Printing Presses
The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content—somewhat similar to LEGO bricks—that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.
What you are reading now is a text block, the most basic block of all. The text block has its own controls to be moved freely around the post…
… like this one, which is right aligned.
Headings are separate blocks as well, which helps with the outline and organization of your content.
Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.
Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation. Continue reading “WordPress’ Gutenberg Editor”
Often times you might want to write Batch file scripts to automate system administration tasks, and in addition to that you might want to pass configuration files to your Batch scripts.
This article, inspired by the Batchography book, shows you how to parse INI files and retrieve values from a given section and key.
An INI file (or initialization file) is a text file that has the following format:
; comment [section_name1] Key1Name=Value1 . . . [section_name2] Key1Name=Value1 Key2Name=Value2 . . .
In the MS Windows operating system, a C/C++ programmer can read/write values from the INI files using the following APIs:
But can we do the same using Batch files?
Yes and in the next section, we show you how to read values from the INI file. Continue reading “Batchography: Parsing INI files from a Batch file”