No words….
Posted in Apple / Macintosh, Computers & Tech, General Rants, Web & Design, pictures | 1 Comment »
While testing some of my own JavaScript code in the new beta build of Chrome for Mac, i was presented with this error:

Chrome for Mac error
Posted in Apple / Macintosh, Software, Web & Design | No Comments »
This is an updated build of the 3GPP group AAC Plus (or HE-AAC) reference audio encoder for Mac OS X 10.5 “Leopard” or newer.
You can get the binary build (3 way universal binary with PowerPC, i386 and x86_64 architectures) here:
enhAacPlusEnc for Mac OS X Leopard, Binary build with 3 architectures.
Xcode project (3.2 or newer) can be downloaded here:
enhAacPlusEnc Xcode project (3.2 or newer)
For more info visit the original post here.
Posted in Apple / Macintosh, Audio Tech, Computers & Tech, Software, Software Development | No Comments »
Im just tired of having to recalibrate my LCD every time i re-install Mac OS X or just reset my user account, so im just saving here for my own use, a ColorSync profile for my Samsung 206NW displays.
If you happen to use a Samsung NW series LCD display with a Mac, feel free to give this profile a test. It is calibrated with Photo / Video editing in mind, that being said, the color temperature (white point) is “warmish”.
Cheers.
Instructions: Just unzip and move the .icc file inside /Library/ColorSync/Profiles/Displays/
Open display preferences and select the new color profile.
Download Below:
Posted in Apple / Macintosh, Computers & Tech, Web & Design, pictures | No Comments »
I took these HDR pictures some days ago with a friend’s camera… maybe its time to get a better camera for myself.
Posted in Web & Design, pictures | 1 Comment »
I have been working for the past days in the foundation for a new Download Manager that I’m writing for the Mac platform, and this is just an “status quo” about how things are evolving.
So far, this is looking pretty nice and i think it will become a pretty interesting utility for the Mac community.
Posted in Apple / Macintosh, Software Development | 4 Comments »
I had this problem some days ago where i wanted to automatically increase the build number of my Application in xCode, every time that i actually made a new build. xCode comes with a tool called agvtool which is supposed to fill this gap, but the main problem with this is that it needs the project to be actually closed, for some reason that i certainly ignore.
After some searches, i finished at this interesting post by Chris Hanson, but this was not exactly what i wanted to do, again, i wanted a simple approach to increase the build number with every build.
So this is what i did.
First I created a new configuration settings file in xCode, as shown below.
After this, i ended up with an empty configuration file, so i added the following inside it:
CURRENT_PROJECT_VERSION = 1
xCode uses this variable to store your application’s build number, so we are going to tell it to use this file in order to get the value for the CURRENT_PROJECT_VERSION variable.
Go to your target’s properties, be sure to select All configurations and All Settings, then base your target’s config in your newly created version.xcconfig file, and set the version variable to our new version variable as shown below:
After all this is done, all you have to do is create a new “Run Script” build phase, and place the following inside it:
NEW_VERSION=`cat "$SRCROOT/version.xcconfig" | awk '/CURRENT_PROJECT_VERSION/ { print $3 + 1 }'`
sed -i '' "s/CURRENT_PROJECT_VERSION = .*/CURRENT_PROJECT_VERSION = $NEW_VERSION/" "$SRCROOT/version.xcconfig"
CURRENT_PROJECT_VERSION=$NEW_VERSION
touch "$SRCROOT/version.xcconfig"
Obviously, if you changed the file or variable names, you will have to adapt the script as needed.
Now, every time you build the app, the build number is automatically increased by one, and included in your application’s plist file as shown below:
A whole thanks goes to the guys at #macdev on freenode Diabolik and KonaBlend who helped with the bash scripting!
Posted in Apple / Macintosh, Software Development | No Comments »
Im working in a new piece of software called “Download Thingy” (at least for now).
It is basically a Download Manager for Mac OS X. The main reasons why I am doing this are simple: There seems to be not a single Download Manager for the Mac that complies with the following:
For this project I’m using the amazing libCurl library as the download engine backend.
Anybody who is interested to participate in a private alpha testing of this (yet prototype) app feel free to comment on this post and i will get back to you when an alpha version is ready for testing.
Cheers, Diego.
Posted in Apple / Macintosh, Computers & Tech, Software | 2 Comments »
Posted in General Rants | No Comments »
So um… some weeks ago I released a new version of MediaInfo Mac with several fixes on my own code, with also a newer build of the MediaInfo Lib by Jerome Martinez, and, finally, a newer version of Sparkle (the amazing framework that i use for the automated software updates).
To make a really long story very short, Sparkle changed an important behavior: Now each and every update that I release has to be signed with a digital certificate, which is nothing but good, because it gives an extra layer of security for the final users.
Bad news are that I totally missed that part in Sparkle’s release docs, so I released an update without the certificate, and from there on, users were stuck on that version without the possibility to update.
I still had the ability to show to the users a nice dialog informing them about my error and kindly asking to update manually, but even that, i still can see that a LOT of people is still using the broken version (0.7.7.58), which leads me to the following conclusion:
Most people will NOT upgrade their software unless the process is totally automatic and painless, not even users of MediaInfo which are usually over the “Average Joe”.
This can be seen on the usage statistics that i keep (which I did reset some hours ago btw, due to some preparations for the upcoming MediaInspector beta) where you can see that there are still a LOT of users stuck on 0.7.7.58.
So to sum things up:
Cheers!.
Diego.
Posted in Apple / Macintosh, Computers & Tech, General Rants | No Comments »