Archive for the ‘Uncategorized’ Category.

Update

In the recent weeks two individuals decided to add false posts on social media. I have reported this information posted is libel and I am working with the support team to remediate this incident.

Home Karaoke Setup with a MacBook and Apple TV


This is an easy setup I use for house parties.

What you will need
– Apple TV
– Mac Book Pro

Setup Video
– Open display settings. Find your apple tv in the airplay display drop down and select it.
– I arranged my TV above my computer

Setup Audio

– In audio settings select your apple tv as the output device.

Content:
If using apple music, you can put the mini player on your TV display and expand it. You can set it up to show lyrics.

If you want to use karaoke from youtube, I open it in chrome, put the window on the TV and then go full screen.

This is great for learning lyrics and practicing for live performances.


Using a mixer and PA system
If you want to setup mics, get a mixer and connect a USB player between your Mac Book and mixer. You can mix the audio from the MacBook with your mics and play through a PA system.

In order to do this you will keep the display going to the TV, but select the audio output to go to the mixer instead of the Apple TV

Track your tracking.

There is a lot of talk about personal data being worth so much to advertisers these days. I recently found links that show what is being tracked for your account.

This one has activity for searches on the internet, maps, and assistant devices.

MyActivity

I also found that your mail data can be searched and any receipt emails are tracked here.

Purchases

 

 

JetBrains blogs

Minimalist Software Engineering

Do you approach software engineering as a minimalist?

The fastest code is the code that doesn’t run at all.

Running fewer SQL queries is better than running more queries.

Fewer features means less complexity.

Fewer libraries means less complexity.

Fewer tools means less complexity.

Complexity costs time.

Complexity costs money.

Doing nothing is better than doing something useless.

How To Create A New Composer PHP Package

  1. git init demo-composer-package
  2. cd demo-composer-package
  3. composer init
  4. composer install
  5. composer validate
  6. Follow the guide for your php version https://phpunit.de/getting-started-with-phpunit.htm
Use this autoload functionality in your composer.json
"autoload": {
    "classmap": [
        "src/"
    ]
},

It makes your /src classes available in your tests directory so you don’t have to require them.

Instructional Video Table of Contents (YouTube)

Today I found this link to the  YouTube Iframe API Reference.  I find this interesting because I think that adding something like a table of contents to a video could be super helpful when if you want to reference the video. For example with instructional videos, a table of contents could provide an overview of video segments you might be interested in. It would let you quickly jump around instead of manually searching the video to find the point that you are interested in.
I used to go to user group meetings to find out the latest and greatest in programming and software development.  I could see this API being used after the video is filmed and adding click points.  I always want to tell friends about something that I learned at a presentation, and with the content links I could share the exact point where I liked the content.
I can imagine if video place markers were sharable then we might have metrics where we can see what points of a video are getting the most interest and shares.

Creative Inspiring Motivator

Recently my team at HomeAway got personal profiles done from http://www.insights.com. It was quite a fun process. Under their categorization, I am a Creative Inspiring Motivator.  This is what came back as my key strengths:

  • Outwardly directed energy ensures a fast friendly pace.
  • Creative thinker and dynamic innovator.
  • A natural entrepreneur, inquisitive and adaptable.
  • Builds relationships quickly and effectively.
  • Able to see the larger picture.
  • Takes advantage of opportunities.
  • Ability to see options and alternatives.
  • A visionary generating infectious enthusiasm.
  • Able to turn vision into a reality.
  • Enjoys having lots of harmonious relationships.

Today I met Matz. The creator of Ruby.

This is might not be a big deal for others who have been going to the lone star ruby conference for a while, but I got to finally hear Matz today.

I snapped a quick picture along with two of my team members from HomeAway. I am the guy on the right.

Matz used his keynote to talk about features to come in the next version of ruby such as  scoped monkey patching, module prepending, lazy mapping, and ruby keyword arguments.

He also mentioned mruby, that is coming soon.  I checked out the source and ran the tests. Here is the source link https://github.com/mruby/mruby/

download the source and run ‘make’ and ‘make test’.  You will then find mruby, mirb in the bin directory.

James,Alan, and myself with Matz.

 

Lightning Talk From Selenium Conference

Checkout my lightning talk on SeleniumFury the page object factory for Ruby.
Lightning Talk From Selenium Conference