Create a Custom Calendar
Published on : 14.03.2010
Category : MS Power Point Viewed : 1 times.
In this tutorial, I’ll show you a way to create your own customized calendar and prepare it for print.
Go to “Insert”, then “Tables” and choose “Insert Table”. Choose 7 columns for the 7 days of the week, and about 7 rows. You might need more rows or delete unused ones later.
In the first row of the table, select it all by selecting the first cell and dragging your mouse till the last one. Then go to “Layout” and click... |
Prepress Printing and PowerPoint
Published on : 12.03.2010
Category : MS Power Point Viewed : 15 times.
Your boss loved the flowchart you created so much that he or she expects it to be used in the company's annual report, and you have the privilege of exporting that flowchart to a format that can be sent straight to prepress.
There is no straightforward way to export the graphic to a professional graphic format like EPS so that your prepress folks can use it. PowerPoint just declared a dead end - all roads ahead are closed!
However, if you have Adobe Acrobat and Adobe Illustrator... |
Simple site stats counter
Published on : 10.03.2010
Category : PHP Viewed : 18 times.
This script is simple because it's using this flatfile thingy and it uses files as databases. That means you will take info and write it into another file so back to this tutorial. First make a file called counter.txt and change it's CHMOD to 777
<?php//User referer$referer = $_SERVER['HTTP_REFERER'];// User ip$ip = $_SERVER['REMOTE_ADDR'];//Your browser info$browser = $_SERVER['HTTP_USER_AGENT'];//Date$date = date('r'); // Theres no referer then it will be marked with -if($ref ==... |
Filtering Wordpress Categories Using an Undocumented Hook
Published on : 10.03.2010
Category : PHP Viewed : 15 times.
In this article, we will briefly cover Wordpress hooks and use an undocumented one in order to manipulate category listings.
After some further digging, while it is not listed on the Wordpress filter list, it appears that this “undocumented hook” is mentioned on the get_terms() function reference. So, we’ll call this a somewhat undocumented hook.
Anybody who knows me knows that I love Wordpress, if perhaps not more than any man should love a collection of code. I... |
Building a Simple Monthly Calendar
Published on : 07.03.2010
Category : PHP Viewed : 27 times.
In this tutorial we are going to learn how to build a simple calendar in PHP. You have seen many of those calendar date pickers mostly in Javascript. This PHP based one has a slightly different purpose - instead of populating an input field, it outputs links for the different dates and can be used for example as a monthly archive in a dynamic DB-driven site.
We will build this calendar following good coding practices and keeping the login in one PHP file and the presentation in one... |
Displaying Records in Multiple Columns Using PHP
Published on : 07.03.2010
Category : PHP Viewed : 21 times.
For this article, i have selected a table members, containing each member's pic and some other text detail. The members will be shown in multiple columns as shown in the picture below.
The technique is to use 2 loops (one nested inside the other). The outter loop creates rows and the inner loop creates columns. The only thing we have to take care of is the inner loop creates equal number of columns for each row. If there are no more records the inner loop should print a blank column.... |
Some Linux admin commands everyone must know
Published on : 02.03.2010
Category : Linux Viewed : 33 times.
I assume you know how to login and logout from Linux system and one Linux system is available in your network. Since this tutorial is based on admin commands, you should have access to the system with root privilege. For connecting to Linux you need any Telnet/SSH client like PuTTY. If you don’t have one yet, download PuTTY from the following site.
http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html
OK, open your client, give host name/IP address and press Open button.... |
Creating Quality Document Scans
Published on : 02.03.2010
Category : Linux Viewed : 29 times.
While we can all dream about the world of paper being replaced with computers and electronic documents, we all know that is still only a dream. In the course of doing my graduate studies, I have often needed to make copies of articles and books reserved in the library. I've grown accustom to scanning these documents and archiving them with the rest of my course work, and in the process I've learned to make high quality scans, suitable for printing if necessary, and still a ... |
Libvirt and Python
Published on : 01.03.2010
Category : Linux Viewed : 45 times.
The previous example illustrated the control of domains using the command-line utility virsh. Let's now look an example of domain control using Python. Python was the libvirt-supported scripting language and provides a clean, object-oriented interface to the libvirt API.
In this example, I explore some of the same operations that I demonstrated with the virsh utility (list, suspend, resume, and so on). The... |
Using Layers
Published on : 27.02.2010
Category : AutoCAD Viewed : 19 times.
Layers Layers are a way of managing, tidying and also controlling the visual layout of a drawing. A whole section of a drawing can be turned on or off, or simply one aspect can be controlled - text for example. This is all done by using layers within Autocad.
The concept of layers is used in other software applications, such as Paintshop... |