Budding Young Entrepreneur
23 Sep
hey all
Firstly, YEuth is coming. It should be ready for launch in the next few days, after-which I’ll put up a countdown timer till official launch and start drumming up support.
But, I’ve been side-tracked having recently stumbled across a massive revolutionary idea in the online advertising arena.
I’m currently pulling together all my notes and creating a business plan etc before I start looking for funding.
I’m also looking for a founding team to help bring the idea to life. The team will definitely get a % stake in the company, and possibly even a salary and full-time position if I can manage to obtain funding (only looking for around $100K startup investment - which is very reasonable for this idea and the amount of cash being thrown around in the web2.0sphere).
The team I’m after includes:
I’m preferably after people located in or around Sydney or Wollongong (Australia folks). And will be looking at getting this cracking within the next 2 months.
If you’re interested or know of ANYONE who might be, please let them and myself know. Also if you know of anyone interested in funding an innovative, web 2.0 online advertising startup… please let them/myself know.
Cheers
Nathan
27 Jul
I’ve been working on getting this YEuth website up and running for about the past month now.
But I’m having a $%^#ing horrible time trying to get someone to code these fairly simple integrations for me. I’ve already hit-up RentaCoder.com and Elance.com and posted on at least a dozen different forums and no one seems to be interested. My budget is up to US$200 which is fairly good money for what I need done.
Here’s the rentacoder project.
If anyone knows of ANYONE who can help, please put them onto me. If someone is kind enough to help, they will get a link to their website/business at the bottom of the footer until the next major site update, I’ll write a blog post about them, and add them to the credits page. It’s a $%^#ing great deal if you have a web design business or you’re a freelancer, as I’m 95% sure that YEuth is going to be successful and have young entrepreneurs literally crashing our servers when the site launches.
I’ve been slaving away lately seeing if I can do it myself with very limited programming skills and it’s literally driving me mad.
cheers
Nathan
5 Oct
That’s a good question, and one which I will quickly answer now
Might be offline for a few days to a few weeks. Got uni exams coming up very soon which I need to be studying for and currently got a tonne of assignments due (in fact got a 3000 word essay due tomorrow which I haven’t yet started).
Plus to make matters worse, my Internet has run out again… but I’m afraid I don’t have another $132 to fork out to the monopoly nor do I really want to give them any more money.
And on top of all that for the past few weeks I have felt so tired and just drained of energy that I’d say I’m literally a couple of seconds out of touch with reality (a scary thought)…. I think I have sleep apnea, but haven’t had time to go to the doctors.
So just a quick shout-out to anyone wondering where I have been lately and all that. Got my sisters wedding this weekend which should be good. I’ll try get back into the swing of things soon.
cheers
nathan
8 Sep
Just a quick rant tonight, as I’m studying for an exam tomorrow… yes I’m procrastinating, so sue me.
Universities are big business, and if you look closely you can see they run like your typical for-profit company. And yet, I think they often tend to be completely disconnected with their customers, the uni students!
Surely they should know your typical uni student lifestyle involves waking up as late as possible, and going out on weekends.
So why have exams on Saturday mornings for f$#k sake?
Meaning I not only have to study on a Friday night while everyone else is out having fun, but I have to wake up at 8.30am on a Saturday morning!
Argghh(!)^10
A simple one question, yes/no survey would give them all the data they need to see if they’re appealing to customer wants: “Do you like Saturday exams?”
The exam is on quantitative methods (business stats) which is pretty easy if I can manage to study all the stuff I’ve missed in the next hour and a half. I should really start going to lectures. I did go to the first couple, but listening for literally a full hour on what the median, mean and mode refer to was kind of a deterrent.
/end rant
Edit: There’s a chance I might have passed… I basically self-learnt myself while in the exam on some questions
But I ended up going to sleep at 1am and waking up at 7.30am to finish off studying. Fun, fun.
Nathan Waters
If only uni was less theory and more business.
30 Aug
HTML = childs play… it’s the most basic coding for a web page, it’s easy to learn and it’s the foundation for any sort of web development. I learnt mainly by looking at the source code on various sites: just right-click, view source.
CSS = ironing… it’s something that you’d rather not do or learn, but doing it definitely makes everything look nicer/neater. You may produce/find some burn marks, but practice makes perfect. I’m still a little rusty on CSS, but I’ve just been learning by looking at what other sites do: right-click, view source and then the CSS code will either be in there or look for a bit of code in the “head” section that has “style.css” (or similar). Copy that path to the end of the domain and your browser will open up the CSS stylesheet.
PHP = public speaking… you know that learning and perhaps mastering it will produce some very cool results, but you’re scared to even learn the basics. You know everyone uses it in some form or another, but your fear gets the better of you and you push the learning aside.
I have known for a long time that just about every decent website uses PHP ranging from simple to advanced uses and integrations. But I have always put off learning it, thinking “oh, I don’t want to have to spend hours and hours trying to learn this new language when I can either use HTML or pay someone to do it”. I have a tonne of web bookmarks for php tutorials which I’ve just added in the hopes of going back later on and reading/learning it (never happened).
Well yesterday I forced myself to look into it.
I was working on the template/logo for Drop Buy which is up now, but still under development. I knew that a lot of websites have a separate header php file for the website header and one for the footer. So that you only need to make changes in the one file for it to apply to all other pages on your site. But I had thought that even this PHP coding was difficult… to the point where when I made pixTower I actually manually copied the header and footer to each and every page (yes very sad and lame lol).
….
Actually it’s easy, here’s how:
Have a search for PHP includes tutorial
In my template for Drop Buy, I only needed a header and footer (as I just included the navbar in the header). But you can “include” numerous files like a separate menu.
Soooo, what I did was:
< ?php include "header.php"; ?>< ?php include "footer.php"; ?>So now when the index.php file is loaded (i.e. when someone goes to your main page) it automatically fetches the header and footer and adds them.
You can now repeat the same process for other pages, but save the file as about.php instead of index.php for example.
To display the .php pages you need to have them on a php server. So you can either set this up on your own computer using something like Apache or if that’s too complicated (as I’ve found) you can just edit the files using FTP (so upload them to your host and edit via FTP).
….
A few other tricks:
….
Notice how the URL to my pages are www.dropbuy.com.au/about instead of www.dropbuy.com.au/about.php?
Download this file (make sure it is name “.htaccess” only) and upload it to your root directory. It’s a .htaccess file which basically tells the server to treat /about as going to /about.php.
….
Need to change the page titles dynamically?
In your header.php file replace the title tags with:

…and change the title to what you want for your main page.
Then in each other file (e.g. about.php), add this at the top: < ?php $title = "About :: Drop Buy"; ?>
….
Want to change the link colour to tell people what page they’re on?
If you click on the “About” you will notice it goes to the About page and highlights the About page which helps notify the user as to which page they’re currently on.
Add this at the top of your header.php file:
< ?php
/* Set a value for $PHP_SELF (for v4.2+) */
if ($PHP_SELF == "") $PHP_SELF = $_SERVER["SCRIPT_NAME"];
?>
And then for each link add this code:

Then in you CSS file add styling definition for the class .herebar, e.g:

So what that does is it looks at what the current page is and if it is the About page then it adds the class="herebar" to the link, otherwise it adds class="contentsbar". So you just use CSS to say: highlight the text if it’s class is “herebar”.
….
Erm, damn even that simple stuff sounds pretty complicated when writing it down lol.
Hope it helps you somewhat and was understandable enough
Sorry about the messy display of code. For some reason WP was spitting out all sorts of random things, so I had to create images of the code.
I’ll post some updates on Drop Buy in the coming days/weeks. I have some more fun ahead of me trying to implement a blog and a few other little features.
edit: Now reading through this great tutorial. And these, ones.
Nathan Waters
PHPerifically something