0 comments | Published on Monday, May 24, 2010 7:22 am
Why use a key-based system?
Using a key-based system makes it much faster, and even more secure to ssh into a server, and scp files onto a remote server. To do this is pretty easy...
0 comments | Published on Sunday, April 11, 2010 10:26 pm
This is a trick that works on a Linux system, as most servers are hosted using Linux. So, you would have to figure out how to change it if you are using Windows (sorry).
What are we going to do?
We will just create a simple bash script that will backup all databases, and we will create a cron job to do it for us on automatic intervals.
The Bash Script
You may first ask me, why do this in a bash script? Why not put it straight into a cronjob? Well, I'm doing it just to make it easier if you want to run other commands, or do one file per database. So, here's the script:
The first command, mysqldump, does a simple dump on the database. Since we give it the --all-databases flag, it grabs all databases that user has access to. The -h flag is for the host, which will probably be localhost. The -u flag is the username for the connection and the -p flag is for the user's password. Note that there is space between the flag and the password. If you're not familiar with Unix command lines, the > is what is called an IO Redirect.
9 comments | Published on Wednesday, November 4, 2009 8:16 pm
Introduction
There are a lot of different tools and methods to use to help your site be noticed and found. Of course, I'm still working on some of these myself, but here's a few things I've learned so far. Post a comment about any other things you might have to offer!
Google Analytics
Google Analytics is a pretty powerful suite to help you understand the experience of your site's visitors. To get an account is free, and only requires you to add a Javascript file to your site pages. Most CMS's have plugins that make this easy.
Some of the features I look at are the sources of the visits. Google Analytics gives you a nice chart to help you get a quick glance of the source of the visits... such as this:
You can click on the graph to get it broken down. If you go into the Search Engine section, it'll even tell you what search terms were entered to get them to your page (helps having Google providing the software!).
6 comments | Published on Monday, October 12, 2009 8:58 pm
CSS3 is exciting stuff. I really like the drop shadow feature because I was tired of always having to create new PNG files just to get the effect. Also, it's a pain trying to get the bottom lined up, and the right side of a div to all look right with the shadow. What a relief it is to let the browser figure it all out!
So, what are the tags?
Just like the CSS3 rotating text, each browser has its own tag. I haven't figured it out for Opera yet, but I'm sure that's ok. Very few people are using it anyways, right? So...here's the tags.
filter:progid:DXImageTransform.Microsoft.DropShadow(sProperties)
-webkit-box-shadow: 10px 10px 25px #ccc;
-moz-box-shadow: 10px 10px 25px #ccc;
The first one, the filter is for IE (details), the webkit tag is for Chrome and Safari (details), and the moz-box-shadow tag is for Firefox (details).
Properties
Webkit and Mozilla
The properties are pretty simple. They pretty much go as follows:
0 comments | Published on Sunday, October 11, 2009 4:56 pm
If you look at my home page, or on the Articles page, you'll see that the dates are rotated. How do we do that? Well, with a little bit of simple CSS styling, it's quite easy! The hard part is working with positioning... But, we'll try to go over that here!
The CSS Code
In case you're just here to see the CSS code, it's just below. Under it, I've got a very simple tutorial on how to use it.
0 comments | Published on Saturday, October 10, 2009 2:09 am
First of all, I wanted to simplify and open up space, but yet make it more sophisticated. Yes, that does sound like a contradiction. But, it can be done. After several weeks of sifting through "How to make a good portfolio" articles, making wireframes, mixing up color schemes, and testing, it's finally ready to go! So... what did I do? Here's some stuff...
New Design
Obviously, I started with a new design. Some of the features of this design are subtle, and some are evident. If you look at the headers with the light blue background, you'll notice a slight drop-shadow. This is pure CSS3, not a .png file! AND... it even works in IE! Score! The shadow also appears on the search box, and on the blockquotes seen throughout the site.
jQuery Wizadry
I got to try out some of jQuery knowledge in the Portfolio section. Check out the Portfolio entries! When you mouse over, it provides additional information. When you go into the "More Info", there is a rotating selection of screenshots... all working with jQuery!
0 comments | Published on Wednesday, July 22, 2009 11:19 am
First of all, you will need the jTip library, which can be found here. Now, I recognize that this tooltip plugin is no longer supported, but a lot of people are still using it. So, for those people this is for you. If you want to check out the newer one, look up clueTip.
The Additional Code
If you open the jtip.js file, you will see that when the document loads, it starts the JT_init() function. This function sets a hover function on any link that has the class jTip. We want to modify this just a tad-bit to allow a tooltip to be shown after you mouse off.
Of course, we don't want ALL tooltips to do this. We will add a new class called "extendedJtip" that will represent a tooltip that we want to stay open for an extended period of time.
Building a Drupal module is actually not as hard as it sounds. You just need to learn what's needed, and how Drupal does things. Once you figure that out, you'll be good to go. There are three files that you need to start off with. Each of these files will have the * replaced by the name of the module. These files are: