<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Bradley&#039;s Blog &#187; Website Design</title>
	<atom:link href="http://blog.graywolf336.com/category/website-design/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.graywolf336.com</link>
	<description>The blog side of my life {with real life events posted}</description>
	<lastBuildDate>Tue, 10 Jan 2012 22:04:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Couple Joomla Tips</title>
		<link>http://blog.graywolf336.com/2012/01/couple-joomla-tips/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=couple-joomla-tips</link>
		<comments>http://blog.graywolf336.com/2012/01/couple-joomla-tips/#comments</comments>
		<pubDate>Tue, 10 Jan 2012 22:00:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Joomla!]]></category>
		<category><![CDATA[Website Design]]></category>
		<category><![CDATA[jevents]]></category>
		<category><![CDATA[template]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://blog.graywolf336.com/?p=414</guid>
		<description><![CDATA[As of late I&#8217;ve been doing a lot of working on Joomla and creating a Joomla template for a school district that will be used district wide. It will not only be used on the districts website but it will also be used on the High School&#8217;s website, the Middle School&#8217;s website, and the Elementary [...]]]></description>
			<content:encoded><![CDATA[<p>As of late I&#8217;ve been doing a lot of working on Joomla and creating a Joomla template for a school district that will be used district wide. It will not only be used on the districts website but it will also be used on the High School&#8217;s website, the Middle School&#8217;s website, and the Elementary School&#8217;s website. That&#8217;s a big thing for me because it means that the <strong>template</strong> has to actually be a template and not just a template that is that site specific, which I used to do a lot when creating Joomla templates. This has been a tremendous learning curve for me and has and will defiantly help me out when I do other website. Here are a couple coding tips for anyone who has use of them, but mainly they&#8217;ll be here for me to easily reference to and know where they are at.</p>
<p>This first one is to tell if the current page is from a certain Joomla component. The one in this example is <a title="JEvents - Joomla Calendar" href="http://www.jevents.net" target="_blank">JEvents</a>, which is a really good calendar component for Joomla.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #666666; font-style: italic;">/*store true or false in a variable for ease of use*/</span><span style="color: #000088;">$is_calendar</span> <span style="color: #339933;">=</span> <span style="color: #009900;">&#40;</span>JRequest<span style="color: #339933;">::</span><span style="color: #004000;">getCmd</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'option'</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">==</span> <span style="color: #0000ff;">'com_jevents'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #666666; font-style: italic;">/*see if this page is the events page*/</span> <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$is_calendar</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">:</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
&lt;p&gt;Do something in here if the page being displayed is of the com_jevents&lt;/p&gt;
<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #666666; font-style: italic;">/*end the if statement */</span> <span style="color: #b1b100;">endif</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

<p>The second one is to see if the current page is the front page, or the default that people go to when they come to your website.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #666666; font-style: italic;">/*store the menu in a variable for ease of use*/</span> <span style="color: #000088;">$menu</span> <span style="color: #339933;">=</span> JSite<span style="color: #339933;">::</span><span style="color: #004000;">getMenu</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #666666; font-style: italic;">/*see if the current page is the front page, if so then do something*/</span> <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$menu</span><span style="color: #339933;">-&amp;</span>gt<span style="color: #339933;">;</span>getActive<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">==</span> <span style="color: #000088;">$menu</span><span style="color: #339933;">-&amp;</span>gt<span style="color: #339933;">;</span>getDefault<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">:</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #666666; font-style: italic;">/*if it's not, then do this instead*/</span> <span style="color: #b1b100;">else</span> <span style="color: #339933;">:</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #666666; font-style: italic;">/*end our if statement saying if the page is the front page or not*/</span> <span style="color: #b1b100;">endif</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

<p>Pretty nice and easy to do once you figure out how to do them, there&#8217;s so many different options out there that you can do. For example, the first one you can replace &#8220;com_jevents&#8221; with any other component and use it that way.</p>
<p>If you have any questions, feel free to ask!<br />
Bradley Hilton</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.graywolf336.com/2012/01/couple-joomla-tips/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Email from Google?</title>
		<link>http://blog.graywolf336.com/2011/03/email-google/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=email-google</link>
		<comments>http://blog.graywolf336.com/2011/03/email-google/#comments</comments>
		<pubDate>Tue, 01 Mar 2011 21:05:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Website Design]]></category>
		<category><![CDATA[email from google]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[hacked]]></category>
		<category><![CDATA[phishing]]></category>

		<guid isPermaLink="false">http://blog.graywolf336.com/?p=393</guid>
		<description><![CDATA[I got an interesting email today from Google. This it what it said: Dear site owner or webmaster of graywolf336.com, We recently discovered that some pages on your site look like a possible phishing attack, in which users are encouraged to give up sensitive information such as login credentials or banking information. We have removed [...]]]></description>
			<content:encoded><![CDATA[<p>I got an interesting email today from Google. This it what it said:</p>
<blockquote>
<div>
<p>Dear site owner or webmaster of graywolf336.com,</p>
<p>We  recently discovered that some pages on your site look like a possible  phishing attack, in which users are encouraged to give up sensitive  information such as login credentials or banking information. We have  removed the suspicious URLs from Google.com search results and have  begun showing a warning page to users who visit these URLs in certain  browsers that receive anti-phishing data from Google.</p>
<p>Below are one or more example URLs on your site which may be part of a  phishing attack:</p>
<p>http://www.graywolf336 .com/thereismore/js/alliance/next/index.html</p>
<p>Here is a link to a sample warning page:</p>
<p>http://www.google.com/interstitial?url=http%3A//www.graywolf336.com/thereismore/js/alliance/next/index.html</p>
<p>We strongly encourage you to investigate this immediately to protect  users who are being directed to a suspected phishing attack being hosted  on your web site. Although some sites intentionally host such attacks,  in many cases the webmaster is unaware because:</p>
<p>1) the site was compromised<br />
2) the site doesn&#8217;t monitor for malicious user-contributed content</p>
<p>If  your site was compromised, it&#8217;s important to not only remove the  content involved in the phishing attack, but to also identify and fix  the vulnerability that enabled such content to be placed on your site.  We suggest contacting your hosting provider if you are unsure of how to  proceed.</p>
<p>Once you&#8217;ve secured your site, and removed the content involved in  the suspected phishing attack, or if you believe we have made an error  and this is not actually a phishing attack, you can request that the  warning be removed by visiting</p>
<p>http://www.google.com/safebrowsing/report_error/?tpl=emailer</p>
<p>and reporting an &#8220;incorrect forgery alert.&#8221; We will review this request  and take the appropriate actions.</p>
<p>Sincerely,<br />
Google Search Quality Team</p>
<p>Note: if you have an account in Google&#8217;s Webmaster Tools, you can  verify the authenticity of this message by logging into  https://www.google.com/webmasters/tools/siteoverview and going to the  Message Center, where a warning will appear shortly.</p>
</div>
</blockquote>
<p>My first thought was &#8220;This can&#8217;t be any where near true!&#8221; but then after I looked into it, I sadly found out that it was true. So at first I believed it was a malicious script, but after further investigation found out my web hosting account or something had been compromised some how.</p>
<p>The site fakes being a real site (thus being a phishing site) and requires users to enter valuable information. It then sends it to this email: <em>gbetube.inc@gmail.com</em> &#8211; I looked more at the rest of the file system on my web host, and man it was all over!!! I still have to go over all the folders and find out if there are any others. But just thought I&#8217;d post this and hope it makes you go look at your site, cause who knows you could get blocked from Google. Which trust me you don&#8217;t want that to happen!</p>
<p>God Bless,<br />
Bradley Hilton</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.graywolf336.com/2011/03/email-google/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apostolicbook Entry 3</title>
		<link>http://blog.graywolf336.com/2010/07/apostolicbook-entry-3/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=apostolicbook-entry-3</link>
		<comments>http://blog.graywolf336.com/2010/07/apostolicbook-entry-3/#comments</comments>
		<pubDate>Fri, 09 Jul 2010 18:00:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ApostolicBook]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Personal Life Stuff]]></category>
		<category><![CDATA[Website Design]]></category>
		<category><![CDATA[Apostolic]]></category>
		<category><![CDATA[article]]></category>
		<category><![CDATA[one god]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[social networking]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://blog.graywolf336.com/?p=279</guid>
		<description><![CDATA[About four months ago I posted Apostolicbook Entry 2 and was hoping that by now we would have our first Alpha testing going. Has that happened? No. Why hasn&#8217;t it happened? Because we could never decide on a layout we wanted and none of us could design a logo worth keeping. Also, during this time [...]]]></description>
			<content:encoded><![CDATA[<p>About four months ago I posted Apostolicbook Entry 2 and was hoping that by now we would have our first Alpha testing going. Has that happened? No. Why hasn&#8217;t it happened? Because we could never decide on a layout we wanted and none of us could design a logo worth keeping. Also, during this time we lost one of our team members, Jared Hilton. Has that affected us any? Yes and no. No by the fact that we all really weren&#8217;t motivated and yes because he did have a good idea or two.</p>
<p>A week or two ago I talked some with Aaron Ogle and we decided to try our hand at things again. After a couple tries of trying to create a logo, I gave up and told him that we needed to find an Apostolic graphic artist. He agreed and I started looking, and it was God that I found one (and a very good one at that). Apostolicbook now has it&#8217;s very own graphic designer. What does this mean for us and for everyone else? The world!! Or at least it seems like that.</p>
<p>Last night we had a so called &#8220;business meeting&#8221; that lasted from around 8 till 11 (my time). You&#8217;re thinking &#8220;Wow that&#8217;s a long time!&#8221; and you are correct, but we needed that. I think we all went away from it feeling very accomplished. We got several things much needed out of the way. Of those things, the main one I&#8217;m happy about is our logo! It&#8217;s very sweet looking and most defintally will be recoginzable any where. I won&#8217;t give any details of what it looks like (and won&#8217;t post pictures of it), as it&#8217;s not time for that. <img src='http://blog.graywolf336.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley colorbox-279' />  Cause like the Bible says, there&#8217;s a time and place for everything!</p>
<p>We did a lot of other things about Apostolicbook last night, and they are all very important too. The last thing I&#8217;m going to say is this&#8230; <em>Be sure to start checking our&nbsp;<a href="http://twitter.com/Apostolicbook" title="" target="_blank">Twitter</a>, <a href="http://status.apostolicbook.com/" title="" target="_blank">Status blog</a>, and our <a href="http://www.apostolicbook.com/" title="" target="_blank">homepage</a> for updates!</em> Cause who knows, sometime soon we might reveal a little here and there!</p>
<p>This is all for now! Hopefully you can tell I&#8217;m ready to start doing stuff on Apostolicbook!!! <img src='http://blog.graywolf336.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley colorbox-279' />  God Bless,<br />Bradley Hilton</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.graywolf336.com/2010/07/apostolicbook-entry-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>1st Real Project</title>
		<link>http://blog.graywolf336.com/2010/06/1st-real-project/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=1st-real-project</link>
		<comments>http://blog.graywolf336.com/2010/06/1st-real-project/#comments</comments>
		<pubDate>Tue, 08 Jun 2010 06:15:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Joomla!]]></category>
		<category><![CDATA[Website Design]]></category>
		<category><![CDATA[screen shot]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[template]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://blog.graywolf336.com/?p=271</guid>
		<description><![CDATA[Here&#8217;s just a quick update about something I recently did. As many of you know I love coding, especially website coding. Many people have asked me why I like it so much, and the only truthful answer I can give is the fact that it&#8217;s sometimes a challenge. I love challenges even if I get [...]]]></description>
			<content:encoded><![CDATA[<p><span style="float: left;"><a href="http://blog.graywolf336.com/wp-content/uploads/2010/06/browser_2010-04-06_183554.png"><img class="colorbox-271"  title="Svcliving.com" src="http://blog.graywolf336.com/wp-content/uploads/2010/06/browser_2010-04-06_183554.png" alt="Svcliving.com"></a></span></p>
<p>Here&#8217;s just a quick update about something I recently did. As many of you know I love coding, especially website coding. Many people have asked me why I like it so much, and the only truthful answer I can give is the fact that it&#8217;s sometimes a challenge. I love challenges even if I get mad or angry while doing it. Why? Because after I&#8217;m done and get it working 100% correctly, I&#8217;m happy and excited about it. <img src='http://blog.graywolf336.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley colorbox-271' /> </p>
<p>With that in mind, you also know that I&#8217;ve coded a couple websites. Including but not limited to <a href="http://www.williambchalfant.com/" target="_blank">My Pastors</a>, <a href="http://www.usd469.net/lhs/" target="_blank">My School&#8217;s</a>, <a href="http://www.usd469.net/welcome/" target="_blank">My School District&#8217;s Welcome Center</a>, and <a href="http://www.graywolfsolutions.com/" target="_blank">mine (new one in the process)</a>.</p>
<p>As of just recently, I can now add another one to that list. Also in a couple days from now I&#8217;ll be able to add two more, but for now I&#8217;ll just talk about one.</p>
<p>This picture is a screenshot taken from my phone (since it&#8217;s what I&#8217;ve typed up this blog post with) and it&#8217;s of the site I can now add to my portfolio. It&#8217;s for a real estate company as you can maybe see from the screen shot. It is a Joomla! template and it&#8217;s also a <a href="http://www.joomanager.com/" target="_blank">Joomanager</a> theme. There was a little bit of a learning curve going from just coding a Joomla! template to adding and making sure that Joomanager worked and looked correctly. I was excited to do this site and glad that I got it done before my deadline. The link to the live website is: <a target="_blank" title="" href="http://www.svcliving.com/">http://www.svcliving.com/</a> even though they currently don&#8217;t have it all the way up as they are learning how to use Joomla and Joomanager. Just thought I&#8217;d share this with you all.</p>
<p>And upcoming sometime soon is a post called &#8220;Who Are the Best Actors&#8221;. I&#8217;ve still got a ways to go before that post is complete, but I&#8217;m hoping it&#8217;s going to end up good.</p>
<p>God Bless,<br />Bradley</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.graywolf336.com/2010/06/1st-real-project/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ApostolicBook Entry 2</title>
		<link>http://blog.graywolf336.com/2010/03/apostolicbook-entry-2/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=apostolicbook-entry-2</link>
		<comments>http://blog.graywolf336.com/2010/03/apostolicbook-entry-2/#comments</comments>
		<pubDate>Sun, 21 Mar 2010 19:30:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ApostolicBook]]></category>
		<category><![CDATA[Website Design]]></category>

		<guid isPermaLink="false">http://blog.graywolf336.com/?p=193</guid>
		<description><![CDATA[Over three months ago I posted a blog entry called &#8220;ApostolicBook Entry 1&#8243;. Since that time, there have been a good amount of things that have changed from the way we had first thought we had wanted them. One of those was the layout of the interface for the user. The layout that we orginally [...]]]></description>
			<content:encoded><![CDATA[<p>Over three months ago I posted a blog entry called &#8220;ApostolicBook Entry 1&#8243;. Since that time, there have been a good amount of things that have changed from the way we had first thought we had wanted them. One of those was the layout of the interface for the user. The layout that we orginally had looked very similar to the new layout that Facebook rolled out. This set us back some because we want to be different from all other social networking websites. Why do we want to be differet? The answer to that is simple. We want to be different because a lot of the social networking wesbites now look a lot like each other and to us (Aaron Ogle, Jared Hilton, and myself) it starts getting boring after a little bit. After this set back we almost totally threw away the design that we had, except I&#8217;m thinking about keeping some parts of it and using it in our new layout. </p>
<p>This new design that we have in our mind is very different and I don&#8217;t think I have seen anything like it on any other social networking website. We&#8217;re not completely sure that the design that we have right now is going to be the final one, but it is a concept of something which is more than nothing! Haha &#8211; I wish I could post some pictures of the design that we are thinking of, but the colors don&#8217;t really match. It&#8217;s a horrible reason why not to post them, but i&#8217;m just not going to post them. I will say that we are implenting as much effects as we can without making the website slow so that the users will enjoy using AposolicBook.</p>
<p>If you have any suggestions for us or would like to give us some input, please feel free to let us know!! After we start getting the whole website up and going, we will probably be looking for some people to Alpha Test (not Beta since Alpha comes first) for us. During the Alpha Test we will require the users to give us input and take surveys either every week or every other week, and we will also require users to inform us whenever they run into an error or bug. That way we can see how users like it and improve the website based on their feedback.</p>
<p>Hopefully I will get to post another AposolicBook entry sometime soon and not in another three months. Lol &#8211; I&#8217;m hoping that by three months from now we will already be in Alpha Testing phase. If we&#8217;re not that far into the development of ApostolicBook, then I&#8217;m hoping to at least have a majority of the pre-Alpha Testing done. So, pray for us that we have enough time and creativity to do this! Thanks.</p>
<p>God Bless,<br />
Bradley Hilton</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.graywolf336.com/2010/03/apostolicbook-entry-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Recent Happenings</title>
		<link>http://blog.graywolf336.com/2010/03/recent-happenings/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=recent-happenings</link>
		<comments>http://blog.graywolf336.com/2010/03/recent-happenings/#comments</comments>
		<pubDate>Thu, 18 Mar 2010 20:25:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ApostolicBook]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Personal Life Stuff]]></category>
		<category><![CDATA[Random]]></category>
		<category><![CDATA[Website Design]]></category>
		<category><![CDATA[church]]></category>
		<category><![CDATA[personal life]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://blog.graywolf336.com/?p=185</guid>
		<description><![CDATA[Wow it has been a long time since I have posted anything to my blog!! I&#8217;ve just honestly been so busy with life that I&#8217;ve rarely had any time to do anything. My life has consisted of going to school, going directly to work after school, and church. School&#8217;s been some what a drag because [...]]]></description>
			<content:encoded><![CDATA[<p>Wow it has been a long time since I have posted anything to my blog!! I&#8217;ve just honestly been so busy with life that I&#8217;ve rarely had any time to do anything. My life has consisted of going to school, going directly to work after school, and church. School&#8217;s been some what a drag because it&#8217;s so much harder than the first semester of this school year. They didn&#8217;t put me into an English class the first semester so then they had to place me into two English classes this second semester. And let me tell you this much, it is insanely hard!! Plus taking PreCalc doesn&#8217;t help make it any easier, it actually has made it a bunch harder!! Then there&#8217;s work.. Actually work isn&#8217;t all that bad since I enjoy what I&#8217;m doing. I work for Summit Solutions and I am in the FRD (fix &amp; repair daily). Basically what we do there is repair computers and remove viruses (and any other harmful things on a computer) for people that bring their computers in. I enjoy doing it and I also do it as a side job/hobby. So if you know me and want your computer cleaned for a cheap price get a hold of me and we&#8217;ll work something out!</p>
<p>Then there&#8217;s awesome church!!! I love my church (Truth Tabernacle) and love being an Apostolic young person! I wouldn&#8217;t and won&#8217;t trade it for anything this world has to offer!! As most of my readers know I am my church&#8217;s lead sound man. What does that mean? It means a lot of different things, but I&#8217;ll summarize it for you.. We have a very nice sound system and a very nice mixer, there are areas of it that we could improve on but you have to have money for that. We also have a very nice piece of equipment that let&#8217;s us record professionally. This was a somewhat expensive too, but it wasn&#8217;t too bad. In fact here in the next couple of months we (the other sound man and I) are thinking about adding onto this so that we can have all the drum mica recorded separately and not remixes like we are doing now. We make preaching CDs and we record all the special singing so that we can make a special singing CD and sell. We&#8217;ve made one in the past, but it was all remixed and so we couldn&#8217;t really make it sound better and more professional. (As a side note, if anyone wants to buy the first special singing CD please let me know.) Back in the sound booth during worship service we control the projector that displays the lyrics to the songs that are being sung. We also display the first scripture that the preacher reads. I personally am not a fan of this because some people no longer bring their Bibles, but that&#8217;s why we only do one scripture so that if someone really wants to follow the scriptures that the preacher is reading they will bring their Bible.</p>
<p>I&#8217;ve learned a couple things since I&#8217;ve made a blog post. One of those things is the fact that if you give God your tithes and then more than just the 10% that he requires, He will bless you. I&#8217;ve experienced that first hand. Ever since I got my job I&#8217;ve been getting paid every other week (I think that&#8217;s how it is) and so I get to pay my tithes to the Lord. Well the other week I was going to put the money into the offering and realized that I had money the a spot where I usually keep the money for tithes. I was confused by this cause I was pretty sure I had paid tithes last time.. Well just to be sure that I did pay it I put it in the offering. That week I got some side jobs to do that are earning me some extra money! It&#8217;s a total blessing from the Lord!!!</p>
<p>I&#8217;ve recently been getting some thoughts for articles. The thing is though that I&#8217;ve yet to have enough time to actually sit down and collect my thoughts together and write a good article. I want to do this so bad!! I&#8217;ll have to make some time to sit down and write an article. One that I really want to sit down and write badly is &#8220;What Will It Take &#8211; Part II&#8221;. I&#8217;ve got some other thoughts running through my head, but I won&#8217;t want to share them with you cause you might steal them. Lol :p</p>
<p>That&#8217;s it for right now.. I&#8217;ve got to start studying for a practice A+ test I&#8217;m taking tomorrow morning before I head out for a youth service that I&#8217;m going to in Guy, Arkansas.</p>
<p>God Bless,<br />
Bradley</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.graywolf336.com/2010/03/recent-happenings/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Recent Activity Update</title>
		<link>http://blog.graywolf336.com/2009/11/recent-activity-update/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=recent-activity-update</link>
		<comments>http://blog.graywolf336.com/2009/11/recent-activity-update/#comments</comments>
		<pubDate>Fri, 13 Nov 2009 01:09:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Joomla!]]></category>
		<category><![CDATA[School]]></category>
		<category><![CDATA[Website Design]]></category>
		<category><![CDATA[church]]></category>
		<category><![CDATA[FireStudio]]></category>
		<category><![CDATA[job]]></category>
		<category><![CDATA[Lansing High School]]></category>
		<category><![CDATA[LHS]]></category>
		<category><![CDATA[PreSonus]]></category>
		<category><![CDATA[USD469]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://blog.graywolf336.com/2009/11/12/recent-activity-update/</guid>
		<description><![CDATA[It’s been quite some time since I’ve posted something to my blog and that’s due to a couple of things. One is church and school have been keeping me busy. School’s going pretty good, except for the fact that tonight we have a Pre-Calc take home test and this section is pretty hard in my [...]]]></description>
			<content:encoded><![CDATA[<p>It’s been quite some time since I’ve posted something to my blog and that’s due to a couple of things. One is church and school have been keeping me busy. School’s going pretty good, except for the fact that tonight we have a Pre-Calc take home test and this section is pretty hard in my opinion (and a couple of other people)! What’s keeping me busy with church you’re probably asking yourself?! Well, I’ve been doing a lot of research on how to get us to be able to record better and more professionally. After a ton of research and going to Guitar Center, I’ve found out that what we are wanting is a PreSonus FireStudio (Interface Only). You can go ahead and research it yourself, since I’m posting this while I wait… Basically it allows us to have multiple channels (or inputs) going to our computer, so then when we record it’s not just one channel but how every many we have set up. That way we can record and then later go and make it sound more professional than before.</p>
<p>Another thing that has been keeping me busy is work, which if you’ve read my blog that’s working for my school district. Well, I just got my check in the mail today and it’s way more than I expected! <img src='http://blog.graywolf336.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley colorbox-161' />  I’m excited about that, but I think half of it is going to be gone cause of paying my mom and dad off.</p>
<p><a href="http://blog.graywolf336.com/wp-content/uploads/2009/11/lhs01.png"><img class="colorbox-161"  style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; margin-left: 0px; border-left-width: 0px; margin-right: 0px" title="lhs01" src="http://blog.graywolf336.com/wp-content/uploads/2009/11/lhs01_thumb.png" border="0" alt="lhs01" width="244" height="139" align="left" /></a></p>
<p>Recently I’ve been spending a lot of time working on getting new features for my school’s websites. There are two main features that I’ve added, and you can see them from the picture on the left. The main feature is what I call “highlighted articles”. This is a scrollable list of articles that have been posted to the website, and it also can have pictures of the subject. I’ve ran into a ton of problems with this! I’ve over came a couple of them, but I’m still running into a couple of them. Another feature is the search bar at the top right of the menu. The positioning of this took more work than I had originally thought it would have, but hey I love a good coding challenge every so often! I also had to edit one of the Joomla! files to make the search appear in a different page than the front page. I’ve made a good amount more of changes to the site, but those are all little details that a majority of people will never know… Haha</p>
<p>I hopefully will be posting an article this week or weekend that has some good meaning behind it, and might get you thinking.. Who knows.</p>
<p>Bradley</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.graywolf336.com/2009/11/recent-activity-update/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Week Review and Saturday 9/19/09</title>
		<link>http://blog.graywolf336.com/2009/09/week-review-and-saturday-91909/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=week-review-and-saturday-91909</link>
		<comments>http://blog.graywolf336.com/2009/09/week-review-and-saturday-91909/#comments</comments>
		<pubDate>Sat, 19 Sep 2009 04:07:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Joomla!]]></category>
		<category><![CDATA[Personal Life Stuff]]></category>
		<category><![CDATA[Random]]></category>
		<category><![CDATA[School]]></category>
		<category><![CDATA[Website Design]]></category>
		<category><![CDATA[church]]></category>
		<category><![CDATA[palm pre]]></category>
		<category><![CDATA[personal life]]></category>
		<category><![CDATA[pictures]]></category>
		<category><![CDATA[puppets]]></category>

		<guid isPermaLink="false">http://blog.graywolf336.com/2009/09/18/week-review-and-saturday-91909/</guid>
		<description><![CDATA[In my last blog post I told you that I would post again before the weekend and tell you what was going to happen. Well, here it is and I’m really surprised that I actually did what I said I was going to do! Lol This week has been an interesting one all things considered. [...]]]></description>
			<content:encoded><![CDATA[<p>In my last <a href="http://blog.graywolf336.com/2009/09/15/windows-7-review-short/" target="_blank">blog post</a> I told you that I would post again before the weekend and tell you what was going to happen. Well, here it is and I’m really surprised that I actually did what I said I was going to do! Lol</p>
<p>This week has been an interesting one all things considered. Monday at school my P.E. teacher wouldn’t accept the letter that my mom wrote to excuse me from working out since my hands weren’t healed yet. He told me that I had to have a doctors note to fully excuse me from working out. This then caused me to have to go to see a doctor, so that Monday night I did go. <a href="http://blog.graywolf336.com/wp-content/uploads/2009/09/CIMG0209.jpg"><img class="colorbox-131"  style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; margin-left: 0px; border-left-width: 0px; margin-right: 0px" title="CIMG0209" src="http://blog.graywolf336.com/wp-content/uploads/2009/09/CIMG0209_thumb.jpg" border="0" alt="CIMG0209" width="184" height="244" align="right" /></a>The doctor said that I bruised my bone and that my wound(s) were infected. She gave me some medication to take to get rid of my infection and then wrote a note to excuse me from working out until the <a href="http://blog.graywolf336.com/wp-content/uploads/2009/09/CIMG0206.jpg"><img class="colorbox-131"  style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; margin-left: 0px; border-left-width: 0px; margin-right: 0px" title="CIMG0206" src="http://blog.graywolf336.com/wp-content/uploads/2009/09/CIMG0206_thumb.jpg" border="0" alt="CIMG0206" width="200" height="260" align="left" /></a>21<sup>st</sup>. Tuesday another day of school and long one at that, <a href="http://blog.graywolf336.com/2009/09/15/windows-7-review-short/" target="_blank">posted a blog post,</a> and then that night I went to puppet practice and meet up with my friend. Yeah that’s him pictured to the left, me and him are really good buddies, we’ve done I think too puppet shows together and we’re really good together! Ha-ha. Wednesday night was a another day of school, but it kind of went pretty fast which felt good. That night I got surprised because there was a visiting preacher, Elder Eldon Eckles. His preaching was AWESOME, but he had a young apostolic lady with him. I was wondering who she was because honestly she was pretty good looking. So, service went on and <a href="http://williambchalfant.com/" target="_blank">Pastor Chalfant</a> introduced the preacher and then said that it was Elder Eldon Eckles’ grand daughter. Knowing me, I haven’t got the guts to talk to her because I’m too shy when it comes to talking to girls and meeting new Apostolic people in person… I’m determined to do it though! (I’ll tell you my plan here shortly.) Thursday was a pretty good day because it went by pretty fast, and I learned that I will be paid $600 for working 60 hours, working for <a href="http://usd469.net/" target="_blank">USD469</a> doing technical work and things related to that. Also, Thursday night I worked on converting a website layout and design<a href="http://blog.graywolf336.com/wp-content/uploads/2009/09/CIMG0124.jpg"><img class="colorbox-131"  style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; margin-left: 0px; border-left-width: 0px; margin-right: 0px" title="CIMG0124" src="http://blog.graywolf336.com/wp-content/uploads/2009/09/CIMG0124_thumb.jpg" border="0" alt="CIMG0124" width="240" height="240" align="right" /></a> that I had done a while back into a Joomla! template, I got a good amount done, just got a whole bunch more to do. Friday (today) wasn’t the best for the first half of the day, but after school things got a ton better! Got home and worked on the Joomla! template some more (fixed some bugs here and there), then left for prayer meeting. After prayer meeting was over I stayed to practice a song for the youth service that is coming up the 23<sup>rd</sup> at <a href="http://www.apostolicreason.com/" target="_blank">Truth Tabernacle</a>. As we was practicing, they asked me if I could lead song service. What could I say, besides yes? So, I’m leading youth service song service on Wednesday night. That’s been this week. What about this weekend and my plan of me trying to talk to Elder Eckles’ grand daughter?</p>
<p>My answer is as follows. Tomorrow there is a Youth Rally at <a href="http://newlifepc.com/" target="_blank">New Life in Olathe, KS</a>. I’m excited because it’s the first one in a long time and I’m ready to be in a service with other young people that is directed to young people. I’ll try to post some pictures of it if I take any… As for my plan to talk to Elder Eckles’ <a href="http://blog.graywolf336.com/wp-content/uploads/2009/09/CIMG0213.jpg"><img class="colorbox-131"  style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; margin-left: 0px; border-left-width: 0px; margin-right: 0px" title="CIMG0213" src="http://blog.graywolf336.com/wp-content/uploads/2009/09/CIMG0213_thumb.jpg" border="0" alt="CIMG0213" width="244" height="184" align="right" /></a>grand daughter, I’m planning on getting or making myself talk to her tomorrow since they are going (my dad asked Elder Eckles). If any of you read this and are going tomorrow, want to maybe help me out or give me any pointers? Ha-ha</p>
<p>That’s it, except the picture to the right is the starting of what I hope is my second to next blog post. And if you’re wondering, yes I do actually write down some of blog post because I get ideas at school and can’t really type them up on a computer or on my phone. If you click on the picture you might be able to read what my title might be, in case you can’t I plan to title it “<em>Me, Myself, and You?”</em>. Thanks for taking the time out of YOUR day to read my blog!!!</p>
<p>God Bless,<br />
Bradley Hilton</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.graywolf336.com/2009/09/week-review-and-saturday-91909/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Job Interview</title>
		<link>http://blog.graywolf336.com/2009/09/job-interview/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=job-interview</link>
		<comments>http://blog.graywolf336.com/2009/09/job-interview/#comments</comments>
		<pubDate>Sun, 13 Sep 2009 03:33:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Personal Life Stuff]]></category>
		<category><![CDATA[School]]></category>
		<category><![CDATA[Website Design]]></category>
		<category><![CDATA[job]]></category>
		<category><![CDATA[Joomla!]]></category>
		<category><![CDATA[USD469]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://blog.graywolf336.com/2009/09/12/job-interview/</guid>
		<description><![CDATA[I’m not sure how many of you know this, but I have been looking for a job lately (well ever since I’ve got my own car). I have scouted a couple of places here and there looking for a good paying job with the hours that I can do and a job that i would [...]]]></description>
			<content:encoded><![CDATA[<p>I’m not sure how many of you know this, but I have been looking for a job lately (well ever since I’ve got my own car). I have scouted a couple of places here and there looking for a good paying job with the hours that I can do and a job that i would like. Well, I think that I may have got a job that fits everything like that!</p>
<p>So, you know how I have done my school’s website (<a href="http://usd469.net/lhs/" target="_blank">http://usd469.net/lhs/</a>)? I have also done the <a href="http://usd469.net/pta" target="_blank">Lansing PTA’s</a> website (<a href="http://usd469.net/pta" target="_blank">http://usd469.net/pta</a>). Both of those sites are based off the CMS called Joomla. I love using Joomla for websites because all that I have to do is create (code) the template and then install it and make it the default theme. Then train the people on how to update their website by creating articles and stuff. After I’ve done that it means that I don&#8217;t have to worry about updating their content myself, or I don&#8217;t have to worry about teaching them the HTML they would need to know to update the website.</p>
<p>You may also know that my 7<sup>th</sup> hour is dedicated to updating the High School’s website, <a href="http://twitter.com/LansingHS" target="_blank">Twitter</a>, and other websites we’re doing. I’m not the only one in that class, but I am one of the four. Mr. Wessel is the technology coordinator for USD 469 (my school’s district). I’ve helped him a lot with some server, website, and computer things. Well I decided to ask him one day if there was any chance that I could get a job helping him out or something of that sorts. That was before school started, so about four or five weeks ago.</p>
<p>As time has went on, things have went slowly but surely. First it started off with he didn’t know if it was actually possible since a couple of things. Then after he found out it was possible, we had to create a list of things that I could do or things that I would do with some quick training. So, after we had that done another problem arose &#8211; he didn’t know how they would be able to pay me if this went through. He finally figured it out with the help of some other people. Now after 5 weeks (or more), I see the light at the end of the long torturous tunnel! (Got that from a song lol).</p>
<p>This Tuesday (September 15th) I have a meeting with Dr. Bagby, Mr. Wessel, and myself. I was told that we would discuss my pay, the things that I would be doing and/or helping with, and hours. I think that I will be getting $10.50 an hour starting off with, but probably will only be doing a couple of hours a week (like maybe 6-8 hours a week or less or more). That’s not a lot compared to normal jobs, but hey I think the pay is good for a first job.</p>
<p>Please pray that God helps me and He gives me the correct words to say when I’m talking to them. I really want this job because it’ll be a good one and I’ll enjoy it. Sorry for such a long post, thanks for bearing with me through it! <img src='http://blog.graywolf336.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley colorbox-112' /> </p>
<p>God Bless,    <br />Bradley</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.graywolf336.com/2009/09/job-interview/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Church02.5!</title>
		<link>http://blog.graywolf336.com/2009/03/church025/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=church025</link>
		<comments>http://blog.graywolf336.com/2009/03/church025/#comments</comments>
		<pubDate>Fri, 20 Mar 2009 01:55:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Joomla!]]></category>
		<category><![CDATA[Website Design]]></category>
		<category><![CDATA[personal life]]></category>
		<category><![CDATA[screen shot]]></category>
		<category><![CDATA[template]]></category>

		<guid isPermaLink="false">http://blog.graywolf336.com/?p=28</guid>
		<description><![CDATA[FINALLY I CAN SLEEP!!! Lol &#8211; That&#8217;s how i feel right now because I&#8217;ve figured out how to add a drop down menu to my template for Joomla! I told you guys in my last post that I would be posting here whenever I finally got my template with a MooMenu added. And that&#8217;s what [...]]]></description>
			<content:encoded><![CDATA[<p>FINALLY I CAN SLEEP!!! Lol &#8211; That&#8217;s how i feel right now because I&#8217;ve figured out how to add a drop down menu to my template for Joomla! I told you guys in my last post that I would be posting here whenever I finally got my template with a MooMenu added. And that&#8217;s what I am doing, but in the process of doing it I thought that you guys might want to see my screen when I work on it. This screen shot is actually from whenever I was testing out the new menu and seeing if it would work in all the browsers I have installed. The ones open and up are Opera and Safari. To my surprise Internet Explorer handled the menu better than Firefox! To all the web developers you know that this came as a huge surprise!!! Lol &#8211; As you can tell I&#8217;m really excited (from all the &#8220;!&#8221;&#8216;s). Here&#8217;s the screen shot:</p>
<p><a href="http://blog.graywolf336.com/wp-content/uploads/2009/03/church02_wip.jpg"><img class="alignnone size-medium wp-image-29 colorbox-28" title="church02_wip" src="http://blog.graywolf336.com/wp-content/uploads/2009/03/church02_wip-300x187.jpg" alt="church02_wip" width="300" height="187" /></a></p>
<p>The only thing that I have left to do is to edit the &#8220;templateDetails.xml&#8221; file to be up to date and to include all the files when installing. Then the next test will be to test the installing of the template and work out all of the errors that I get. Let&#8217;s pray that I can get it all working before I go to bed! <img src='http://blog.graywolf336.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley colorbox-28' /> </p>
<p>On a side note, I&#8217;ve been texting this girl since last week sometime, and then this past Saturday a local church had a youth service with fellowship afterward. I stayed for it and talked to someone about this girl and to find out she&#8217;s on fire for God which is AWESOME! This means that once I talk to my pastor about his rules for talking to girls, then I am going to move on from there and I&#8217;m praying that she actually likes me!!! Lol &#8211; I&#8217;m sure most of my readers don&#8217;t really care about this, but I just thought I would put that in there! Haha &#8211; That&#8217;s all for now, will update later some time, that ain&#8217;t a promise that it&#8217;ll be within a week, but I will try.</p>
<p>God Bless,<br />
Bradley Hilton</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.graywolf336.com/2009/03/church025/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

