This morning I made an eclipse viewer. If you can't make one, just go out and look under a tree. Where there should be sun spots you will see eclipse spots, which are crescent shaped unless you happen to be where there's a total eclipse.
vlog 02
Monday, August 21, 2017
vlog02 - Pringles eclipse viewer
Posted by
Chris Bensen
at
7:00 AM
0
comments
Labels: vlog
Sunday, August 20, 2017
vlog01 - So I'm starting a vlog
This has been a long time coming, and it is no coincidence that this is my 500th blog post, but after multiple family emergencies and about 6 months, it's finally here. Introducing my vlog:
P.S. I might be copying existing vloggers styles that I like until I get a style of my own.
Posted by
Chris Bensen
at
7:00 AM
0
comments
Labels: vlog
Tuesday, June 13, 2017
How to Find The Entitlements a macOS App
Sandboxed apps have their entitlements embedded into the signing data. To see what any app's entitlements are, type the following in Terminal:
codesign -d --entitlements - /Applications/Some.app/
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>com.apple.security.app-sandbox</key>
<true/>
<key>com.apple.security.network.client</key>
<true/>
</dict>
</plist>
Posted by
Chris Bensen
at
7:00 AM
0
comments
Thursday, April 27, 2017
Bash Scripts Auto Download Dependencies
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]
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