https://www.google.com/calendar/syncselect
You must go directly to this link as there doesn't appear to be any way of getting there otherwise, and you must check or uncheck the calendars to share and then save the settings. Good luck!
This is my blog about software development, mountain unicycling, Photography, and stuff I find interesting.
Posted by
Chris Bensen
at
7:00 AM
2
comments
Here is a Death Star Christmas ornament build with STl files provided on thingiverse here. A little bit of 3D printing, remixing an existing item on thingiverse and some electronics. Enjoy!
vlog 02
Posted by
Chris Bensen
at
7:00 AM
1 comments
Put in your CD or DVD, Open Terminal, type:
>ls /Volumes
Find the volume in the list, then type where /path/to/volume is the CD or DVD you want:
>hdiutil makehybrid -iso -joliet -o Image.iso /path/to/volume
Posted by
Chris Bensen
at
7:00 AM
1 comments
The Java Packager allows for resources within the app bundle to be replaced by your own custom resources. For example, on macOS the default Info.plist may not work for you. Here is a JDK 9 example that demonstrates replacing the default Info.plist. It's worth noting there is difference between JDK 8 and JDK 9. JDK 8 uses the classpath to search for the resources and JDK 9 requires a new argument. The argument documented here. The documentation about this feature is here:
https://docs.oracle.com/javase/9/deploy/self-contained-application-packaging.htm#JSDPG593
However, note that resource handling is different in the modular world (as I mentioned above about the differences between JDK 8 and JDK 9), and the docs weren't updated (at the time of writing this post, and we didn't catch the bug until recently, sorry). It is no longer possible to load resources via the classpath with the Java Packager. The correct way to do this is with the following ant task so specify the custom resource directory:
<fx:bundleArgument arg="dropinResourcesRoot" value=directory/>
Or if you are using the CLI use the following argument:
-BdropinResourcesRoot=directory
If you add this bundler argument the example in the docs will function the same; The current directory will be where custom resources such as the Info.plist searched for.
Here is the example:
Posted by
Chris Bensen
at
7:00 AM
0
comments
Labels: Java, javapackager, packager
If you want to go to JavaOne you can go for a grand ($999 to be exact). Use the code DJFS2017 at registration. But wait there's more. It expires August 28th.
Posted by
Chris Bensen
at
2:00 PM
0
comments
I've run into this issue a few times so I figured others have too.
Once in a while Cura's main window doesn't show up. Here's what I think fixes the problem. I say I think because I don't entirely know because I've tried so many things.
1. Reboot the computer
2. Rename the file:
/Users/cbensen/Library/Application Support/Cura
Posted by
Chris Bensen
at
7:00 AM
0
comments
Labels: 3D Printing
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
Posted by
Chris Bensen
at
7:00 AM
0
comments
Labels: 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:
Posted by
Chris Bensen
at
7:00 AM
0
comments
Labels: vlog
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
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
Posted by
Chris Bensen
at
7:00 AM
0
comments
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