Often times bash scripts I run depend on other tools. Tools that are sometimes updated. So once in a while I add the following curl command to download the latest tool.
curl -O [filenameURL]
Thursday, April 27, 2017
Bash Scripts Auto Download Dependencies
Posted by
Chris Bensen
at
7:00 AM
0
comments
Tuesday, April 25, 2017
Building a Raspberry Pi Security Camer - Part 1
Next I'll post about some options for housings for the pi.
Posted by
Chris Bensen
at
7:00 AM
0
comments
Monday, April 24, 2017
macOS Window of Application has gone off screen
Once in a while a window of an application goes off screen and it can't be moved or resized. I've seen various approaches to get the window back but by far the easiest is to change the resolution. Once you change the resolution all windows are moved to be back within the screen and you'll get the window back.
Posted by
Chris Bensen
at
7:00 AM
0
comments
Tuesday, April 11, 2017
Super Awesome Debugging Technique with Comments
Here is a trick I learned many many years ago and it remains one of the best tools in my debugging toolbox for all programming languages. This example just happens to be in C++.
Posted by
Chris Bensen
at
7:00 AM
0
comments
Thursday, April 6, 2017
Programmatically Creating a Window on macOS
Programmatically creating windows without using a NIB file can be
tricky on the Mac. Especially if you're developing in C or C++ instead
of Objective-C. Here's one of the issue most common that may come up.
Assuming you got the window creation code right, you may be thinking everything is going to work, but you get this error:
Oct 30 17:34:39 myapp[48617]
Oct 30 17:34:39 myapp[48617]
This means your NSApplication is not being initialized. In other words,
the Objective-C side of your system needs to be properly initialized.
Adding the following line may help:
[NSApplication sharedApplication];
Most likely you aren't trying to do this so it is never an issue, but for those few souls out there this might just save you some serious time.
Posted by
Chris Bensen
at
7:00 AM
0
comments
Thursday, March 30, 2017
Nearing 500 Posts!
I'm closing in on 500 posts over the last 10 years, I know it isn't much but considering I don't actually post that much it's rather remarkable. I've also had well over 1 million views! So stay tuned because if you like to read my blog, I have some plans will bring even more of my ramblings to your screen.
Posted by
Chris Bensen
at
7:00 AM
0
comments
Wednesday, March 29, 2017
More Ergonomics
It turns out I write quite a bit about ergonomics, and those are some of my most popular posts which is surprising but not too surprising since that is one thing that affects everyone.
Desk Ergonomics - Every Diagram on the internet is wrong!
Make the Apple Magic Trackpad Ergonomic
Ergonomics of Using a Cell Phone
Ergonomics
All these issues are still valid, in fact maybe even more so. Sit-stand desks are more popular than ever, but they still aren't good enough. Companies like Fitbit and Apple have pushed wearable devices to help but relatively few people wear them and I'm not sure how much they really help. I personally don't wear a device like a Fitbit or Apple Watch. If this is an interesting subject to you as a reader of this blog, write a comment or like this post so I know to write more. I have a lot more information and access to people who know even more and I believe sharing information is good.
Posted by
Chris Bensen
at
7:00 AM
0
comments
Labels: ergonomics
Tuesday, March 21, 2017
C++: Convert Unicode String to ANSI String
I've seen so many examples and questions of how to convert between unicode string and ANSI string using C++. So here is by far the easiest way to do this conversion that I've implemented:
Posted by
Chris Bensen
at
7:00 AM
0
comments
Wednesday, March 1, 2017
Adding a Private Key to macOS Keychain
On macOS, the native SSH client can use the built-in keychain directly which is awesome because you don't have to type in the password every time. To add your private key to the keychain simply use the command:
ssh-add -K /path/of/private/key
For example if your private key's filename is ~/.ssh/id_rsa, you would use the command:
ssh-add -K ~/.ssh/id_rsa
You will then be prompted to enter your password. From now on it's all automatic. Viola!
Update: There appears to be an issue in macOS Sierra where the password is only stored for the currently session. You can follow a thread here. I'll add more information as I run across it.
Posted by
Chris Bensen
at
7:00 AM
0
comments
Monday, January 30, 2017
Make Bootable macOS Sierra USB Install Drive
1. Format drive with the defaults using Disk Utility and name it "Untitled".
2. Download macOS Installer App from Mac App Store (Note: If you use this installer it will not be usable again).
3. Open Terminal and run:
5. Plug in the USB drive.
6. Turn the machine on and hold down the Option (ALT) key until you get a list of drives.
7. Choose the installer, and follow the directions.
Posted by
Chris Bensen
at
7:00 AM
0
comments
Friday, January 13, 2017
Blurred Faces in Final Cut Pro X
This is by far the best tutorial on blurred faces or censoring I've come across for Final Cut Pro X. The only thing I'd add is I suggest starting from the beginning, add the keyframe for the position and scale, then use the left and right arrow keys to jog and move the shape to the new position for each frame.
Posted by
Chris Bensen
at
7:00 AM
0
comments
Monday, January 9, 2017
Spam Email Tips
Spammers like to validate that you read your email. They get a lot of satisfaction from this. Also they sell the data. Reading email isn't inherently bad like it was in the past, but there are still some pitfalls such as executing Javascript or loading remote images. Gmail strips Javascript so your'e good there. But they do load remote images by default. From Gmail help:
Choose to show or not show images
- Open Gmail.
- In the top right, click Settings
.
- Click Settings.
- Scroll down to the "Images" section.
- Select Always display external images or Ask before displaying external images. If you chose the "Ask before displaying external images" setting, messages that have images will have a "Display images below" option.
- At the bottom of the page, click Save Changes.
Posted by
Chris Bensen
at
7:00 AM
0
comments