Categories
Samuel Twenty Somethings

Playing Contact Sports

If I ever have a child, and its strange to think I’m technically at the age where having a child is a normal thing to do, but if I do end up having a kid I’m going to make sure they have the opportunity to play a team sport (preferably a contact sport…. and if I’m honest hopefully they choose hockey.)

Playing on a team is such an interesting and enriching experience.  You learn to count on other people, work together with other people.  You learn what if feels like to be part of something larger than yourself, and you also get a first had view of adversity.  Every one of these experiences will help them as an adult, and looking back on my 27 years of life I think a lot of the make up of my personality stems from playing hockey as a kid.  Its so fascinating how much of it is woven into the fabric of my being, take for example:

– I really look down on people who fake things (injuries, emotions, tell lies ect…).  In hockey this is called “taking a dive”, and its one of the worst things you can do.

– When I’m working in a team setting and we fail, my first gut reaction is always to look at myself and think about what I could do better. More so than any professional sport, hockey players don’t pass blame, its part of the culture.  Its a team game, but when something goes wrong look in the mirror, don’t look over your shoulder for someone to blame.  I’m not sure how cultures develop around a sport. Take for example soccer, its part of the game to take dives and roll around pretending you are hurt (probably the main reason soccer has not caught on more in the US).  I’m not sure when or how that started, and I’m also not sure how the culture of toughness started around hockey but both cultures are are large part of both sports.

– I value “assists” more than my own personal goals.  More than any other sport hockey recognizes “assists”.  Some would argue too much so, but in hockey the 2 previous people to touch the puck get credit with an assist when a goal is scored.  In basketball unless you make a pass that leads directly to a point you do not get an assist.  In baseball you can get a throwing assist, but you can’t get 2 on the same play on a long relay.  In football only the QB and Receiver get on the stat sheet for a touchdown…. the list goes on. In hockey the assist is valued more so than other sports

– I have a temper and I will not back down from anyone.  I can credit this one almost directly to playing hockey.  In general I’m a pretty passive or at least non aggressive fun loving person.  But I’m not afraid to get into a situation and mix things up (some credit for this must also go to the years I’ve spent studying kempo karate) but my first memories of mixing things up come from middle school playing hockey and learning to not let someone take advantage of me.  If your too passive in life, people will take advantage of you. If your too much of a dick in life somewhere down the line there will be an enforcer around to tune you up (https://www.youtube.com/watch?v=2xTtkozOvdg)… I never get tired of watching that fight!

 

I’m sure I could sit and write about 2 pages worth of these snippets on how hockey has effected my personality, but the moral of the story is if I have a kid someday (Girl or Boy) I’m going to encourage them to follow their heart and do whatever it is they love… but you can bet I will be encouraging them to play hockey!

 

 

 

 

 

 

Categories
Fixing Stuff Samuel

Troubleshooting laravel white screen of death

This is just a note for myself, so please excuse the lack of polish:

 

If laravel is giving a “no data provided” screen, and turning on debug on does not produce any helpful results. To fix the issue replace whatever is in the .htaccess file with:

 

Options+FollowSymLinksRewriteEngineOnRewriteCond%{REQUEST_FILENAME}!-d
RewriteCond%{REQUEST_FILENAME}!-f
RewriteRule^ index.php [L]

 

Categories
Fixing Stuff Samuel Technology

Fixing Windows 8 VPN Remote Resource Discovery

I ran into an issue today where a new laptop could not connect to remote resources even after connecting through a VPN.  This laptop has windows 8, and by default windows 8 and as it turns out by default windows 8 does not look for or load resources from the VPN connected network.  There is an easy fix for this however:

 

1.) Click on the internet connection bars in the lower right hand corner of your screen (the 4 bars in the bottom task bar)

2.) Click view connection settings

3.) Click on the VPN connection you want to edit, then hit “edit”

4.) Turn on the top option “find devices and content”.

 

After you toggle “find devices and content” on then you will be able to discover any shared resources on your remote network 🙂

Categories
Fixing Stuff Samuel

Fixing Image Not Supported Message On Shomi Digitial Picture Frame

We recently purchased a Shomi digital picture frame and were struggling with a bunch of the images showing as “image not support”.  And yes I found it funny they didn’t spell “supported” correctly.   Anyway to fix this problem you need to “re-save” every image that has location data on it. For example if you downloaded the image from facebook, or sent it from your cell phone its likely that the image has location data on it.

 

Luckily The fix for this is really easy, you just need to open the image and save a new copy. You don’t need to crop it or anything, you just need to save a new copy that does not have location data on it.  Once you have that, load this new image onto the digital picture frame and bask in the glory of your great picture (and that you solved the problem).

 

**If you have a lot of images that you need to “re-save” consult my previous post on how to automate batch saving images in photoshop (just don’t do the cropping portion of this post):

 

 

Categories
Inspirational Samuel

a collection of songs that can change your mood

One of my favorite things to do is consult my folder of songs when I’m in a bad mood or frustrated and just slip off into the melody/lyrics of a truly great song.  Its amazing what a great song can do for you current mood, and in turn your day as a whole.  My list in no particular order is:

 

 

https://www.youtube.com/watch?v=F2K_7-MHt3k

https://www.youtube.com/watch?v=f6WKfhj1lE0

https://www.youtube.com/watch?v=yVA-xTBeHyM

https://www.youtube.com/watch?v=qu5q_awytxU

https://www.youtube.com/watch?v=bmXumtgwtak

 

Categories
Fixing Stuff Samuel

Getting WordPress To Submit Emails From SES

Ok so by default wordpress seems to have a lot of issues sending contact forms, and all notifications when its installed on an EC2 instance.  The guide below is a quick reference on how to setup wordpress to use Amazon’s SES (simple email solution).

 

1.) download the SES plugin: https://wordpress.org/plugins/wp-ses/

2.) upload the files to your EC2 instance (or instances)

3.) login to wp admin and activate plugin config settings are “settings > wp ses”

4.) sender email must be validates in amazon SES prior to activating plugin
EC2 console > SES email sending service > verified senders > email addresses > verify a new email address

5.) create new IAM user and download access_key & secret key
EC2 console > IAM > users > create new > downlaod acces/secret keys > attach user policy > “amazon SES FUll Access”
*new “amazon ses full access” in order for plugin to work

open wp-config.php file and define any of the following that you want too:

// From mail (optionnal) must be an amazon SES validated email // hard coded email, leave empty or comment out to allow custom setting via panel define(‘WP_SES_FROM’,’me@….’);

// Return path for bounced emails (optionnal) // hard coded email, leave empty or comment out to allow custom setting via panel define(‘WP_SES_RETURNPATH’,’return@….’);

// ReplyTo (optionnal) – This will get the replies from the recipients. // hard coded email, or ‘headers’ for using the ‘replyto’ from the headers. // Leave empty or comment out to allow custom setting via panel define(‘WP_SES_REPLYTO’,’headers’);

// Hide list of verified emails (optionnal) define(‘WP_SES_HIDE_VERIFIED’,true);

// Hide SES Stats panel (optionnal) define(‘WP_SES_HIDE_STATS’,true);