Deprecated: Automatic conversion of false to array is deprecated in /home/brian/public_html/wp-content/plugins/powerpress/powerpress.php on line 2656

Warning: Cannot modify header information - headers already sent by (output started at /home/brian/public_html/wp-content/plugins/powerpress/powerpress.php:2656) in /home/brian/public_html/wp-includes/feed-rss2.php on line 8
Brian Pauley https://www.brianpauley.com My place in this world Mon, 17 Nov 2014 17:22:59 +0000 en-US hourly 1 https://wordpress.org/?v=6.5.2 My place in this world Brian Pauley false Brian Pauley podcast My place in this world Brian Pauley https://www.brianpauley.com/wp-content/plugins/powerpress/rss_default.jpg https://www.brianpauley.com Flush DNS catch in OSX and Windows https://www.brianpauley.com/flush-dns-catch-in-osx-and-windows/ https://www.brianpauley.com/flush-dns-catch-in-osx-and-windows/#respond Mon, 17 Nov 2014 17:21:33 +0000 http://www.brianpauley.com/?p=460 Have you ever found yourself having a hard time loading a website and you know you that it should be loading? Chances are you will need to flush your DNS on your machine.

OSX 10.10

sudo discoveryutil udnsflushcaches

OSX 10.9

dscacheutil -flushcache; sudo killall -HUP mDNSResponder

OSX 10.7 – 10.8

sudo killall -HUP mDNSResponder

OSX 10.5 – 10.6

sudo dscacheutil -flushcache

Windows

ipconfig /flushdns
]]>
https://www.brianpauley.com/flush-dns-catch-in-osx-and-windows/feed/ 0
Pixel Mapping https://www.brianpauley.com/pixel-mapping/ https://www.brianpauley.com/pixel-mapping/#respond Thu, 09 Jan 2014 19:33:07 +0000 http://www.brianpauley.com/?p=272 So I was searching the internet aimlessly while on vacation and ran across a sweet little project that I want to attempt at some point this year.

FadeCandy Demo

I have already found a cheap supply for the LED

I will need to do some verification that those would be comparable to the ones we see in the video.  I’m hoping this will be a fun project

]]>
https://www.brianpauley.com/pixel-mapping/feed/ 0
Memory Test for Mac https://www.brianpauley.com/memory-test-for-mac/ https://www.brianpauley.com/memory-test-for-mac/#respond Thu, 09 Jan 2014 14:11:30 +0000 http://www.brianpauley.com/?p=270 I recently ran into a problem with a used mac mini I had purchased from a friend of mine.  He gave it to me fresh with Mountain Lion running on the machine, so the first thing I did was upgrade it to Mavericks.  Life was great until I started to put the system under a load and started using it.  Files I was downloading randomly began to get corrupted here and there.   At first I thought the computer was overheating causing the corruption since it seemed to take some time for it to happen.   Then I thought well maybe there was an issue with Mountain Lion and it just followed me into Mavericks, so I wiped it and started over.   Not too long after doing so I ran into the same issues.  Then it hit me it could be the ram.  I took one stick out and it ran great for a few minutes.  I thought well this stick is ok and there isn’t any problems here until my computer panic’d.  No major deal it does that every once in a blue moon.  I restarted the machine onto to find out it had some hard drive issues and needed a repair run on the disk.  I booted the machine into recovery mode only to find out even disk utility couldn’t repair the disk and I had to yet again re-install OSX another time.  I shut the machine down swapped ram with the one stick that I took out and got the job done this time everything went beautifully with no problems.  I was still curious as to if the ram was really bad or if it wasn’t just plugged in all the way.  Then after thinking about it I decided I wanted to know for sure so I set out to find myself a RAM tester for mac and found one.

MemTest for Mac is a free tool that does exactly what it says.

Download MemTest NOW [direct download link]

The file above is a zip file with an installer package.  The software installed memtest in /usr/bin.

Test Your Mac

So what do you need to do?  The process is simple.  Open a Terminal window and type the following:

memtest all

If you want to give it a very thorough test then you can specify the number of times you would like to run the test by typing the following:

memtest all 2

The test by itself will take anywhere from 15+ minutes to complete.  If the program crashes, or you see it erring out and failing tests it’s a good sign that you have a bad memory modules in there.

Good luck running your tests and verifying if you have a bad ram module and figuring out which one is the problem.

]]>
https://www.brianpauley.com/memory-test-for-mac/feed/ 0
Blogging 2.0 https://www.brianpauley.com/blogging-2-0/ https://www.brianpauley.com/blogging-2-0/#respond Wed, 08 Jan 2014 21:52:31 +0000 http://www.brianpauley.com/?p=268 Well it’s that time of year that we start over with New Years Resolutions and I realize that I don’t blog like I should.  It’s not that I don’t have enough to say, it’s more or less been finding time to say it.  SO, that being said I will make this year of re-prioritization of my life.  Some of my goals are to read 5 books this year, work on friendships and invest more into friends, make more time for all of my ideas and start making them reality.  It’s time to take the ideas and goals and put them into action and work hard at making them second nature and changing things.  I have several website ideas that I’m working on constantly in my mind and most of them will require regular web updates, so here’s to a first of many posts.  Not that many people read this blog but hey there’s always a start hahaha!

]]>
https://www.brianpauley.com/blogging-2-0/feed/ 0
Local Websites in OS X 10.8.2 Mountain Lion https://www.brianpauley.com/local-websites-in-os-x-10-8-2-mountain-lion/ https://www.brianpauley.com/local-websites-in-os-x-10-8-2-mountain-lion/#respond Sat, 22 Sep 2012 01:14:57 +0000 http://www.brianpauley.com/?p=190 So for whatever reason after updating to OS X Mountain Lion 10.8.2 I couldn’t access http://localhost/~username.  Every time I would try to load it I got the following error:

Forbidden

You don’t have permission to access /~bpauley/ on this server.

So in order to fix this you have to perform a few steps.

1.  You need to create a file on the desktop and call it username.conf where username is your short username.
2. Past the following contents into the file you just created and again change username to your short username.

<Directory “/Users/username/Sites/”>
Options Indexes MultiViews
AllowOverride None
Order allow,deny
Allow from all
</Directory>

3.  Copy the file you just created on your desktop into the /etc/apache2/users folder.  You can do this by opening up a terminal window and typing the following command switching out username for again your short username:

sudo cp /Users/username/Desktop/username.conf /etc/apache2/users/username.conf

When you are prompted enter your administrator password.
4.  Enter the following command in the terminal window again changing username to the short username:

sudo chown root:wheel /etc/apache2/users/username.conf

5.  The final steps requires you to stop and start apache so type the following two commands back to back in the terminal window:

sudo apachectl stop
sudo apachectl start

You are done do a refresh and it will work 🙂

]]>
https://www.brianpauley.com/local-websites-in-os-x-10-8-2-mountain-lion/feed/ 0
WordPress a go! https://www.brianpauley.com/wordpress-a-go/ https://www.brianpauley.com/wordpress-a-go/#respond Tue, 17 Apr 2012 17:42:38 +0000 http://www.brianpauley.com/?p=49 Well in case you haven’t noticed, I have abandoned Joomla for WordPress. Don’t get me wrong Joomla is a great platform, but for what I was wanting on my blog not so much. WordPress out of the box was a much better fit for what I wanted.

Now some of you might be asking why a person that does web development uses WordPress instead of something I have designed and that’s a great question. It all comes down to time and to be honest, one day I hope to have a nice blog platform and use my own backend software, but for now WordPress will work for me while I work on my other projects. What projects might that be? Hahah I guess you will have to keep checking back here often to see what I’m working on.

I can’t possibly get everything I want accomplished done by myself, so I have enlisted the support of a few friends to work with me on my future endeavors. I hope you will all begin to share in a few of the many up and coming projects as I split time between them all to see them all come about and begin to become reality. I have many ideas that I have kept quiet for years and shares with a select few people that could help inspire me to achieve something great and it’s about time that all begins to happen.

Stick around and hopefully you all will see something great soon.

]]>
https://www.brianpauley.com/wordpress-a-go/feed/ 0