-
Where You Can Find Your Plex App Downloads
I’ve recently added the Plex App to my Mac. One of the great new feature is that I can download files and it will save them locally. Generally, not a problem but on a phone or something it is great for spotty network connections. Download your music and go to the gym… don’t work about bad networks. One of the first questions i asked is where are these files saved? We’ll here’s the location for a mac: To view this i used the tool “Commander One” utility. You can keep this directory clean by just using the Plex App. You delete listened too or unused files.
-
Why We Shoot Deer in the Wild
Why we shoot deer in the wild. (A letter from someone who wants to remain anonymous, who farms, writes well and actually tried this) I had this idea that I could rope a deer, put it in a stall, feed it up on corn for a couple of weeks, then kill it and eat it. The first step in this adventure was getting a deer. I figured that, since they congregate at my cattle feeder and do not seem to have much fear of me when we are there (a bold one will sometimes come right up and sniff at the bags of feed while I am in the back…
-
8B AF Shipley 2020
I was privileged to coach one of the 8th grade football teams for American Fork this year. It was a lot of fun and we did some good things. A lot of new boys. Many of them played for their first time. Of course it was fun to have 2 of my sons on the team. Brigg (#9) and Spencer (#13) did a great job.
-
Pass Canyon Abandoned Mines
Pass Canyon, Utah – Near Fool Creek Flats. This past weekend me and my boys went on little adventure. When I was 17 my best friend, cousin and cousins friend went adventuring. We discovered some old mines in Pass Canyon. 35 years later I ventured out with my 17, 13, and 12 year old boys and we visited the same mines.
-
MU WordPress Lost Roles on One of the Sites
I run a MU WordPress with several websites. One day I noticed that I was unable to add roles to the people on one of my sites. No matter what I did couldn’t get any roles to appear in the selector. Some how in one of my updates the prefix for this particular site wasn’t updated. I found a post telling me this: Following this line of thinking led me to change that particular database table name. Sure enough renaming the table worked! Previously it was named wp_89_user_roles. It needed to be named 64d_89_user_roles. Problems solved!
-
BYU Men’s Rugby 2018
Opponent ——— Date ———— Location ——– City —————- @ Wyoming ——- Oct 6, 12pm — Wyoming ——- Laramie, Wyoming @ Utah State —— Oct 13, 1pm —- Utah State —– Logan, Utah Utah State ——— Oct 25, 7pm — Helaman Field – Provo, Utah Wyoming ———- Nov 3, 1 pm —- Helaman Field – Provo, Utah
-
Elephants in America?
https://www.sciencedaily.com/releases/1999/06/990607154315.htm
-
How Product Attribute are Stored in Database
How Product Attribute are Stored in Database
-
Mass Update Moodle Users to Use LDAP
On your export file export your data with the following format: “username”,”auth”,”firstname”,”lastname”,”email” “lshipley”,”ldap”,”Layne”,”Shipley”,”lshipley@email.com” Select “Users” in the Moodle admin panel Select “Upload Users” under the “Users” panel Upload the file Change “Upload type” to “Update existing users only” Change “Existing user details” to “Override with File” That should do it!
-
Connecting MySQL ODBC to Use SSL Certificates
Using SSL Driver={MySQL ODBC 5.1 Driver};Server=myServerAddress;Database=myDataBase; User=myUsername;Password=myPassword;sslca=c:\cacert.pem; sslcert=c:\client-cert.pem;sslkey=c:\client-key.pem;sslverify=1;Option=3; SSLCA specifies the path to a file with a list of trust SSL CAs SSLCERT specifies the name of the SSL certificate file to use for establishing a secure connection. SSLKEY specifies the name of the SSL key file to use for establishing a secure connection.