Sharpei Puppy Stickers has reached version 1.1.2 and now has 46 stickers!

My first iOS 10 Messenger Sticker app has reached version 1.1.2 and now has 46 stickers for ¢99. I hope that people enjoy it. I plan on adding more stickers to the pack in the near future!

This picture from the iPad version shows all the current stickers available in version 1.1.2.

I will update this site when I add more images! I hope people enjoy the stickers!

Released my first iOS 10 Messenger Sticker app, Sharpei Puppy Stickers

So I have released my first iOS 10 Messenger Sticker App, Sharpei Puppy Stickers for 99¢.

It is a set of stickers of images of my 2 Shar Pei’s Indiana Bones and J.K. Growling. It started with 10 images, but with the second update is already up to 28 images, and I already have 9 more ready to go for the next update (though will probably add at least another 9 to that). All the updates are free, as I figure it is just adding value to the app! I really hope you enjoy it!

I have also added a section of my web site devoted to the app, and future apps, as I already have plans to do a new app with my mother Linda Lee Carnegie who is the amazing artist behind Carnegie Designs.

Feel free to contact me if you have any questions, comments, suggestions or issues. Thanks and I hope you enjoy my new app!

Apple has removed Star Ratings in iOS 10, WTF!

And Apple continues it’s downward spiral of removing much used and important features in it’/ latest upgrade. I can’t beliwve it, but apple has removed it’s 5 Star Ratings from Music in iOS 10! Seriously What The Fuck Apple!  I have spent years rating my songs in itunes and a good year re-rating my songs after El Capitan fucked up my iTunes Library!

Now I get the newer and simpler like or don’t like,  but I don’t use it! I use the 5 stars I have used for years! And I like to rate music on my phone, but with iOS 10 I can’t! WTF! This is literally insane!

DO I NEED TO MOVE TO ANDROID? FUCK YOU APPLE!

If you agree please contact apple and tell them to add this feature back! I have!

UPDATE:

I stared a thread on the Apple Support Communities in the hopes of getting enough people to request the return of this feature, and so far the thread is already 6 pages long.

Installing Boot Camp on High Capacity Disks

Other World Computing has a great article on how to install a bootcamp partition on disk larger than 2.2TB.

I wish I had seen this earlier. As I recently replaced my 2TB that had bootcamp on a partition on it with a 3TB drive that I took out of my Synology, and I could not restore my old BootCamp partition using WinClone because I could not make the partition. I could do it again now, but would have to reback up the drive and then move it back afterwards, and am not sure I have enough hard drive space for this, unless I wipe out the old disc with BootCamp on it. And I have yet to do a WinClone Restore so I am not sure it will work and don’t want to lose the BootCamp partition just in case.

Batch Converting Pages Documents to Word Documents with Applescript

So if you read this blog you already know that I have pretty much come to the decision that my next computer will not be a Mac. I love my old MacPro 4,1 but it is getting long in the tooth, and I haven’t even been able to do the Firmware Upgrade to get it to 5,1, so the next OS Sierra will not work on my current MacPro as it will only work on a 5,1 (I haven’t tried putting in my old video card before the upgrade, which might help, but it looks like El Capitan makes it harder).

Unfortunately in 2007 I moved over to Pages to do my invoices, resumes and cover letter. Now you can individually export your documents to the modern word format docx, but I am talking hundreds and hundreds of files that I may want to access at some point, so I wanted a way to batch those files.

This requires applescript, and while I used to be OK at Applescript all those skills have since gone away.

A quick google search showed one page dedicated to scripting the iWorks suite, and it is iWorkAutomation. Specifically there is a script to Export to Word, but it is not a batch export, just a single use, and so not of use to me, except for stealing some of it’s commands.

So then I went back to the old faithful applescript forums MacSpripter, and did a search. And I found an awesome script from Yvan Keonig, which automates the process, allowing you to pick a folder with you pages documents and then chose a destination folder, and it batch converts to PDF files.

Luckily my limited Applescript skills and the fact that the script was so well written, let me use the Microsoft Word commands from iWork Automation and combine them to make a script to convert to Word documents.

Just copy this script and paste it into Script Editor and run the script. You can also save the script to your scripts folder.

set theSourceFolder to (choose folder with prompt “Select a folder whose files you wish to convert to word:”)
tell application “Finder”
set filesArray to every file of theSourceFolder whose name extension is “pages”
end tell
set theDestinationFolder to (choose folder with prompt “Select a folder where you want the converted files to be placed: “)
tell application “Pages” to activate
repeat with aFile in filesArray
tell application “Finder”
set fileAlias to aFile as alias
set fileName to name of fileAlias
set fileExtension to name extension of fileAlias
end tell
set theOriginalName to fileName
— remove extension
set prevTIDs to AppleScript’s text item delimiters
set AppleScript’s text item delimiters to “.” & fileExtension as string
set fileName to first text item of fileName
set AppleScript’s text item delimiters to prevTIDs
— prepare desktop folder path and name
set docPathAndName to (theDestinationFolder as text) & fileName & “.docx” # EDITED
tell application “Pages”
— open the file
set targetDocument to open fileAlias — EDITED : was aFile which is a Finder reference, not what Pages requires
repeat 10 times # I added a loop which may be useful if the original document is very long
try
export targetDocument to file docPathAndName as Microsoft Word
exit repeat
on error
tell me to delay 0.5
end try
end repeat
— close it
close targetDocument saving no
end tell
end repeat
tell application “Pages” to quit
display dialog “Done!”

Awesome, now I have batch updated all my pages documents to Word documents. Sure the formatting needs some updating, but at least they will all work on a PC!

Davinci Resolve 12.5.1 Supports Quicktime ProRes on Windows, death knell for Quicktime

BlackMagicDesign’s Davinci Resolve 12.5.1 has been released and it includes Quicktime ProRES decoding on Windows! You can check out all the new features here.

With Apple having ended Quicktime support for Windows, and now Adobe and DaVinci adding Quicktime Pro Res playback on Windows, that basically means that you can use all the old ProRes files you have, but it is time to move on. And it is unfortunate as ProRES HQ had really become a great intermediate format and ProRES 444 is an awesome alpha format.

And it looks like it is time to move to AVID’s DNxHD format, since like ProRES it is pretty much visually lossless at higher bitrates.

Simple Background Music Player App for the Xbox One

Well a company called TroubleAcres has an app that can play music off a USB stick on your XBOX one. It is free and it works, but it is very simple. It only plays MP3, WMA and FLAC files on a FAT32 or NTFS USb drive within a folder called “Xbox Music Library” and it has a limitation of only 200 files and plays them in alphabetical order. It does read files in folders, but only to add to the alphabetical list.

It works and I can finally play my own music. Just have to keep it to 200, and put music on I want at the time.

I am on a Mac and use ALAC files, which are not supported, but luckily the $5 M3Unify app from the awesome Doug’s Scripts will convert to MP3 and put files in folders by artist and album. Of course for now those folders are useless, but hopefully it will work at some point. And ALAC support would be great too, since the One does support AAC in it’s Media Player app (which also supports a DLNA, and folders, but for some inexplicable reason doesn’t support Background Music making it next to useless).

Moving from Rapidweaver to a PC Web Site Creation Tool, any help would be appreciated! MacPro 4,1 EOL, so time to move to PC.

So if you have been reading my posts you know that my MacPro is nearing the end of it’s life. The next version of OS X, macOS Sierra, officially does not support my MacPro 4,1. Now it does support the MacPro 5,1, and I can do a firmware flash and make my Mac think it is a 5,1, since the only different was a firmware upgrade and newer processors. So I will be able to Install Sierra, but the writing is on the wall and Sierra will likely be the last OS to support a 5,1 MacPro.

And it is not like I have a stock 4,1, it has an SSD, an NVIDIA GTX 670 with 4GB of RAM, and a ton of Hard drives, but the big issue is that Adobe Creative Cloud big updates tend to only work with the latest Mac Upgrade so my MacPro has maybe a year or at best 2 before it can no longer get OS upgrades, and will literally be a paperweight. Sure I can still run it for some things, but it won’t be getting security upgrades, and software will stop working on it.

Now for most software I can easily move it to a PC, or if not easily it can at least be done. I can resave all my Pages files to word docs, and things like that, but for Web Site Creation it is not so Easy.

I run Rapidweaver 6 for web site creation. I used to make my own web sites in HTM, and have run many many programs from Net Objects Fusion when it was Mac, to Dreamweaver, but I don’t want to code anymore, as basically when the web moved heavily to CSS I moved to WYSIWYG completely and gave up on coding for the most part.

So now I run RapidWeaver 6 (I know 7 is out, but do I really want to upgrade, when in the next few years I will be likely be moving to windows? Not really!) and do my 2 web sites, as well as my mom’s web site for her business.

Of course RapidWeaver is unfortunately Mac only. So the question becomes what to rebuild my web sites in that would work on a PC. The obvious choices are not so obvious.

I already run Adobe Creative Cloud, so Dreamweaver makes sense if I wanted to code HTML, but I don’t.

So I recently took a look at Adobe Muse, it’s WYSIWYG web creation tool, that was created not by the Dreamweaver team, but by the Indesign team. And MUSE looks fantastic and powerful, except for one major thing, BLOGS!

And it is blogs that hurt the whole equation! I have one local WordPress Blog, my Movie review blog, and 4 google blogger blogs. Now I know that not having a blog local means that it won’t show up in search for the site, though I get around this in RapidWeaver by user the Loghound SiteMap plug in, which scans all of your blog entries and gives them local entries in your siteindex.xml. And honestly if I had to I could move all those Blogger blogs to local WordPress blogs, to have all the entries show up as local pages, but even that doesn’t help with Adobe Muse.

With Adobe Muse, there are no blogs. Sure a few third party plug ins have been made to make local blogs, and you can show blog entries from RSS, but there is literally no way to show your whole blog. Not even a local WordPress blog! And it sounds like even if they do it will have to be blog posted on Adobe Business Catalyst and not on your own hosted web site.

If Adobe would let you use locally published WordPress Blogs I would be fine, and could move my Blogger blogs to their own WordPress blogs, and publish locally, but that doesn’t sound like it will happen.

And so the point of this point, to ask, does anyone have a solution for me. The best solution would be a cross platform WYSIWYG solution that lets me remake my sites on my mac before I move to PC, and lets me integrate my WordPress and Blogger blogs into the site easily. Now I could also go for a PC Only solution, and run it in either Bootcamp or Parallels ( I currently have both, so I can do that), but then I need a powerful WYSIWG web site editor that can incorporate outsite and local blogs, and is something like Rapidweaver.

Any input would be greatly appreciated! Thank you!

The New NVIDIA TITAN X is the King of the Hill!

Yes there is a new king of the hill in the consumer video card arena, and that is the new NVIDIA TITAN X. I had expected this to take a while to come out after them releasing the new 10 series, 1080, 1070 and 1060, but it was quickly announced and is coming out August 2nd! Wow! And the specs are amazing!

GPU Engine Specs                                               TITAN X                 GTX 1080

NVIDIA CUDA® Cores                                          3584                         2560

Base Clock (MHz)                                                   1417                         1607

Boost Clock (MHz)                                                  1531                        1733

Memory Specs:

GbpsMemory Speed                                                10                              10

GDDR5XStandard Memory Config                        12 GB                       8 GB

Memory Interface Width                                         384-bit                      256 bit

Memory Bandwidth (GB/sec)                                 480                           320

Thermal and Power

Maximum GPU Temperature (in C)                       94                             94

Graphics Card Power (W)                                       250 W                     180 W

Supplementary Power Connectors                          8 pin and 6 pin       8 pin

That is an extra 1024 CUDA Cores for Adobe Creative Suite to play with, and an extra 4GB of faster RAM for not that much more power draw!

If you have been reading my posts, I have come to the realization that my next computer won’t be a Mac, and have been looking at custom build PC’s like Origin PC or Puget Systems. For a bit I was thinking that maybe 2 SLI GTX 1080’s would be the answer for my CUDA needs, but that would basically eat all of my PCI slots. And I likely need some sort of Black Magic Design card to kick out video at least to an HD Monitor for editing, if not an Intensity Pro 4k. And while I can get a USB 3,1 external Raid for hard drives (as I likely won’t get a ThunderBolt 3 Motherboard, unless I decide to build for myself), so I could live without a raid controller I would like need a Firefire PCI board to deal with my all my old hard drives until I can afford new enclosures.

So it looks like the new NVIDIA TITAN X would be my $1200 card of choice.

Trying to figure out what programs I will use if I move from Mac to PC

I have been talking about it for ages, and have used Apple Computers since I was 7 and got an Apple IIC. I love my Mac, but it getting old, and the next macOS Sierra has end of lifed my 4,1 MacPro. Luckily I can hack it to become a 5,1 with a simple firmware hack, so I can install Sierra, but it is likely the last Mac OS my computer will run. And big Adobe updates usually require the latest Mac OS. And the new “MacPro”, the trashcan is a joke that has not been upgraded since it’s release in 2013. It isn’t upgradeable, nor can it have more than one harddrive internally, so it isn’t pro. And it’s use of a Xeon processor is not a boon. Xeon’s are usually a few generations behind on technology, the big difference is that Xeon’s don’t have an integrated graphics processor (which doesn’t affect you if you us a high end graphics card) and they 2 processors! But the trashcan can only use one! And yes it can have 12 cores (for an insane price), but i7’s have now reached 8 or 10 cores and are newer tech, so why not use those if you are only using one processor. I really don’t get it!

And yes I could build a Hackintosh, but I have been using a Quo at work,mand while it is great, upgrades are never too fun, and you must disable security features to even install El Capitan.
So it is looking like my next computer is a PC, cause I can put an NVIDIA Geforce 1080, but I need to figure out moving away from many of my current programs.
I know I can move iTunes to PC, though I hear it doesn’t work as well on the PC, but my library and ratings will make it over.
I can export and move my mailboxes, browsers and the like pretty easily. There is nothing to easily move my Photos library to Windows, but I can import my Library into Adobe Lightroom and it will take my Keywords, then move to PC so it will work there. Pages and the whole iWorks suite is a pain as I need to open each file and save it out to word (hopefully I can automate it).
Making my web sites is more of a pain. I have used many programs over time, starting with Net Objects Fusion before it went Windows only, and I have even used Dreamweaver, though my HTML skills have gone to hell, and I don’t want to code anymore. So currently I use Rapidweaver, which makes it easy and I have 2 different web sites for me and my mom’s web site, which can link to much web site content. Now I am starting to look at Adobe Muse as an alternative, but I am not sure it will easily plug into all the content I currently use, from YouTube, Vimeo, 500px, or Flickr, so sites you can easily upload things and have them automatically show up on your web site. And it looks like there is no way to embed my blogger blog into muse, as I have done with Rapidweaver. Might be able to do my self hosted wordpress, but not my blogger blogs. Damn!
Then I will of course have to figure out a bunch of other programs, and especially system tweaking, and a new backup system, as I can’t use time machine anymore.
It is surprising to me how little info there is online for moving from Mac to PC. Any info or even programs to help seem to be made to go the other way.
Oh well, when it happens I will likely be running both machines for a while, until I am sure everything is moved over.
And I am sure I will miss my Mac in many ways as I have Windows 10 in parallels and bootcamp on my mac, but it works, and honestly is a more pro system nowdays.