If you don't mind the english language being butchered at every full stop then these photoshop web design tutorials are for you.
They give a great idea of designing with a web 2.0 look, using layer effects and a variety of tools. It isn't always the best explanation of what the tool does, but usually isn't too hard to grasp. Also the colors that are chosen aren't web safe (so make sure you aren't trying to select web safe!).
Most of the designs are dark with light text, but they look great.
http://www.grafpedia.com/category/tutorials
Thursday, March 25, 2010
Monday, March 22, 2010
Lorem Ipsum - Greeking Out
Lorem Ipsum is dummy text that you can place when you want to see how something would look. It really comes in handy in layouts for web and any media with blocks of text. It mimics how real words look. Even sentence and paragraph length.
And now it isn't just on lipsum.com
You can download a version built with Python for windows (.exe) or Linux (.deb).
So hop on over to the google code projects page and download that sucker
And now it isn't just on lipsum.com
You can download a version built with Python for windows (.exe) or Linux (.deb).
So hop on over to the google code projects page and download that sucker
Labels:
Linux,
Web Development
Wednesday, March 10, 2010
LAMP Stack / Joomla / WordPress
Linux Apache MySQL PHP (the makings of a common server)
If you are a developer for Wordpress or Joomla you need to setup an environment (local server) to run these programs on your computer so that you can test things without having to be on the internet.
The developers at Ubuntu are a godsend and have made the actual LAMP stack installation heaps easier than in the past. In applications > accessories > terminal :
wow, that is so much easier than having to dual boot with turn-key or going through the old process
Finishing off the details is pretty straight forward. Briefly the steps are listed below, for detailed steps with screenshots, hand holding, and all the superfulous writing you could hope for go to TuxTweaks
phpmyadmin is supposed to make life easier too, so let's install that while the ball is rolling
Cool, now we can actually set up where we want to host all of the files
I've decided to go with /webdev/joomla and /webdev/wordpress. Both will be located in my home folder. Again if you need serious hand holding go visit TuxTweaks for this tutorial with screenshots.
In this gedit window you need to get yours to look like this
Repeat with wordpress instead of joomla in there.
And back in terminal
If you get a reload error like me then:
Ok! Now we can download the newest version of Joomla and Wordpress and extract them to their respective folders. We still need to set up a mysql database for each so let's do it (almost seeing the light at the end of the tunnel).
Pull up firefox and navigate to "http://localhost/phpmyadmin/"
Log in with root, and whatever password you created.
Now click on privileges at the top > Add new User, and enter in the following:
Joomla
local> localhost
password>
password>
and then click the radio button for creating a new database as well (middle one), then find go at the bottom and click that.
Repeat for wordpress.
Now when you navigate to http://joomla/ or http://wordpress you get an installation page. It should be pretty straightforward. The mysql database is the what you created earlier(joomla or wordpress), username you just made (joomla or wordpress), you have your password. On Joomla they try and get a little tricky at one part, in the bottom box they want you to type joomla again.
To remove the installation directory for joomla (it will prompt you):
If you are a developer for Wordpress or Joomla you need to setup an environment (local server) to run these programs on your computer so that you can test things without having to be on the internet.
The developers at Ubuntu are a godsend and have made the actual LAMP stack installation heaps easier than in the past. In applications > accessories > terminal :
sudo apt-get install lamp-server^
wow, that is so much easier than having to dual boot with turn-key or going through the old process
Finishing off the details is pretty straight forward. Briefly the steps are listed below, for detailed steps with screenshots, hand holding, and all the superfulous writing you could hope for go to TuxTweaks
phpmyadmin is supposed to make life easier too, so let's install that while the ball is rolling
sudo apt-get install libapache2-mod-auth-mysql phpmyadminSelect apache2, and dbconfig-common using tab and space bar.
Cool, now we can actually set up where we want to host all of the files
I've decided to go with /webdev/joomla and /webdev/wordpress. Both will be located in my home folder. Again if you need serious hand holding go visit TuxTweaks for this tutorial with screenshots.
cd
mkdir webdev
cd /webdev
mkdir joomla wordpress
cd /etc/apache2/sites-available
sudo cp default joomla
sudo cp default wordpress
sudo gedit joomla
In this gedit window you need to get yours to look like this
ServerAdmin webmaster@localhost
ServerName joomla
DocumentRoot /home/yourID/webdev/joomla/
Directory /
Options FollowSymLinks
AllowOverride None
/Directory
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Repeat with wordpress instead of joomla in there.
sudo a2ensite joomla wordpressThen enter in:
sudo gedit /etc/hosts
127.0.0.1 localhost joomla wordpress
And back in terminal
sudo /etc/init.d/apache2 reload
If you get a reload error like me then:
echo "ServerName localhost" | sudo tee /etc/apache2/conf.d/fqdnAnd then run the reload script from above. And now we need to change some permissions!
sudo chown -R USERNAME /etc/phpmyadmin
Ok! Now we can download the newest version of Joomla and Wordpress and extract them to their respective folders. We still need to set up a mysql database for each so let's do it (almost seeing the light at the end of the tunnel).
Pull up firefox and navigate to "http://localhost/phpmyadmin/"
Log in with root, and whatever password you created.
Now click on privileges at the top > Add new User, and enter in the following:
Joomla
local> localhost
password>
password>
and then click the radio button for creating a new database as well (middle one), then find go at the bottom and click that.
Repeat for wordpress.
Now when you navigate to http://joomla/ or http://wordpress you get an installation page. It should be pretty straightforward. The mysql database is the what you created earlier(joomla or wordpress), username you just made (joomla or wordpress), you have your password. On Joomla they try and get a little tricky at one part, in the bottom box they want you to type joomla again.
To remove the installation directory for joomla (it will prompt you):
sudo rm -R webdev/joomla/installation/
Labels:
Joomla,
Linux,
Web Development,
Wordpress
Saturday, March 6, 2010
iPod Support for Songbird 1.4
If you are upgrading to songbird 1.4 it may be tough to find out where to go for iPod support as the old add-on doesn't work and it doesn't point you in the right direction.
So here you go
http://developer.songbirdnest.com/builds/Songbird1.4/latest/addons/
go there and click on:
"ipod-3.0.15.1438-linux-i686.xpi"
if you have 64bit linux then click on the one below that.
That is it.
So here you go
http://developer.songbirdnest.com/builds/Songbird1.4/latest/addons/
go there and click on:
"ipod-3.0.15.1438-linux-i686.xpi"
if you have 64bit linux then click on the one below that.
That is it.
Subscribe to:
Posts (Atom)