BizTalk SQL to XRef Send/Receive Ports to Orchestrations

Suppose you are at a new clients, and you want to see quickly all the orchestrations are bound to send and receive ports. Here’s some code to help you get started with that. <pre> select op.nvcName as 'OrchInternalPortName',        o.nvcName as 'OrchName',      'SendPort' as 'SendOrReceive',      sp.nvcName as 'PortName' from bts_orchestration_port op inner join […]

Error: ‘Newtonsoft.Json’ already has a dependency defined for ‘Microsoft.CSharp’

When running NUGET “install-package NEST” (or possibly any other that uses newtonsoft-json), get error: “‘Newtonsoft.Json’ already has a dependency defined for ‘Microsoft.CSharp’” In my case, I was at a client running Visual Studio 2013 and needed to upgrade the version of Nuget. Reference: https://stackoverflow.com/questions/42045536/how-to-upgrade-nuget-in-visual-studio-2013 In Visual Studio: Tools -> Extensions and Updates -> Updates tab -> Visual Studio […]

Windows Powershell Wrapper Script for ImageMagick

In my previous blog, I talked about how to use ImageMagick to square a file. Now, in this blog I’m taking it one step further. I have a directory of photos from all over the internet, and I want to post them to a social media site. If the pictures are taller than 510 pixels, […]

Squaring Images with ImageMagick

It took me a while to find a good utility to square images and make them a certain size. The results come from this confusing documentation page for Image Magic. convert -define jpeg:size=510×510 Test1.jpg -thumbnail "510×510&gt;" -background white -gravity center -extent "510×510" testResult.jpg Of course you change the sizes and the background color. The page […]

Amazon Alexa Skill – Various Size/Limitations

  I made this quick summary of some of the size and limitations and specs for developing Amazon Alexa Skill. Please contact me at Amazon Skill Developer (Dallas, Texas) if you need one developed. Max 8000 characters of speech when Alexa is speaking based on text. MP3 – must be bit rate 48kbps, sample rate […]

Notes from AWS re:Invent Live Stream -Werner Vogels – Nov 30, 2017

AWS re:invent Live Stream – Werner Keynote 11/30/2017 Werner Vogels is VP and CTO of Amazon (AWS). Egalitarian Platform – everyone has access to the same storage, analytics, algorithms, etc… What sets a company aside is the quality of the data they have. G.E. – You go to bed as a manufacturing company, and you […]

AWS re:invent 2017 – Notes from LiveStream – Key Note by Andy Jassy

re:invent 2017 – AWS Conference – Live Stream Notes – 11/29/2017 “The Cloud is the New Normal” – Andy Jassy – CEO Amazon Web Services 10:17 Expedia CEO – Expedia – 22,000 employees and and ?? billion in sales Most global diversified travel platform in the world. 55 million phone calls/year Started as a small […]

Testing SSML on Alexa vs Google Home/DialogFlow

Both Alexa and the Google Home device support Speech Synthesis Markup Language (SSML). For Alexa – see this SSML documentation, and for Google Home/DialogFlow, see this SSML documentation. SSML was created by the W3C’s Voice Browser working group. Even though the Alexa doc says you need to wrap the SSML in the <speech> tag, I […]

On Cpanel/WordPress/PHP Site – Keep Directory Listing from occuring

Suppose someone knows a folder name, and tries to list a folder on your site to find out what’s inside of it. Without any protection, it might display like this in the browser: Now, let’s assume that you don’t want people snooping around in this folder, and trying to run the various PHP programs or […]

Online web-based viewer (and editor) for MD (markdown files)

Today, with the popularity of GitHub, many people are using MarkDown files to create their documentation. While there are plug-ins for Chrome I have yet to try, I found this cool site today: https://stackedit.io/editor. Left side is where you paste the .md contents, right side is the formatted results:   Doesn’t that look a lot […]