DIY - How to Make your own Wooden Canon 1D Digital Camera!

Here’s a fun DIY on how to make your own wooden Canon 1D Digital Camera out of wood. Now, you won’t have to spent thousands of dollars on this camera although it won’t be functional.
DIY - How to Make Fabric Wall Art!

Here’s a really cool DIY on how to make your own fabric wall art. I am not an artist but it looks really cool and I think you can apply this nicely to your home.
One of my very stylish friends has assembled several cool stretched fabric panels, which are hung in her home. I love the big, bold statement that this fabric art creates, so when I recently found directions on how to do it, I thought I’d pass it along to you. This tutorial is for a 20-inch-square fabric art piece.
Pyramid DIY - How to Build a Pyramid!

If you are looking into Pyramid-related businesses (of course, we think all businesses are somewhat a pyramid-scheme), here’s a great article on how pyramids are actually built.
The first theory is that a ramp was built on one side of the pyramid and as the pyramid grew, the ramp was raised so that throughout the construction, blocks could be moved right up to the top. If the ramp were too steep, the men hauling the blocks would not be able to drag them up. An 8-percent slope is about the maximum possible, and this is the problem with the single ramp theory. With such a gentle incline, the ramp would have to be approximately one mile long to reach the top of the pyramid. But there is neither room for such a long ramp on the Giza Plateau, nor evidence of such a massive construction. Also, a mile-long ramp would have had as great a volume as the pyramid itself, virtually doubling the man-hours needed to build the pyramid. Because the straight ramp theory just doesn’t work, several pyramid experts have opted for a modified ramp theory.
LED DIY Hack - How To Make A Glowing LED Ice Bulb!

Wow, check out this really neat project on how to make a glowing LED Ice Bulb! It’s a simple idea but executed beautifully.
Food Hack - How to Make French Toast!

Click Here to View in Full Screen Mode
Well, this one isn’t exactly how I make French Toast but it’s another great way on how to make that perfect French Toast.
Jello Bello Hack - How to Make Jello Shots!
Click Here to View in Full Screen Mode
For those of you getting ready for the Halloween party, you will benefit from “watching” how to make jello shots right here on Zedomax.com
Airplane Hack - How to Land a 747!

Here’s a cool airplane hack on how to land a 747 just in case.
Main Checklist
- Get on the radio, and tell whoever’s listening that you are landing a 747.
- Engage a single channel of the autopilot — light one of the buttons labeled “CMD.” Point the heading indicator in the direction indicated to keep the plane straight and level.
- Find the checklists in the side pocket of the pilot’s and copilot’s seat. If the plane is a 747-400, engage the Automatic Landing System (ALS). If it is not a 747-400, see below under “Landing Without ALS.”
- If you can’t find the checklists, use these:
- Before Descent
- EO’s system check completed.
- Pressurization set.
- All a/c packs on. Set the airfield altitude so the plane is depressurized on landing.
- Humidifier off.
- HSIs: Radio. Switch horizontal situation indicators to radio navigation mode.
- Auto brakes: set.
- Approach Checklist
- P.A. cabin call: “Cabin crew 15 minutes to landing.”
- Cabin signs and exit lights: on.
- Ignition: on. This sets the engine igniters for landing.
- Fuel system: set for landing.
- Fuel heat: check/off
- QNH: Set. So the altimeters read the airfield altitude on touchdown.
- Landing Checklist
- Gear check: handle down, handle in, light green.
- Speedbrake: armed.
- Hydraulics: checked.
- Landing flap: set at 25 degrees.
- SCCM’s report: received. The cabins are secure for landing.
- Find the Jeppeson charts. Locate the radio frequency.
- Find the flight management system’s buttons on the glareshield marked LNAV and VNAV.
- Put the Jeppeson map on a 100 mile scale using the EFIS control panel on the front panel. You’ll get a yellow FMC message on the middle screen when it’s time to land.
- On the control display unit between the pilots’ seats, twist the knob until the little numbers go down to 100 ft. above field elevation in the Jeppeson notebook.
- Get the aircraft set to land: press the LOC and G/S buttons on the glareshield. All three CMD lights will go on, and the system will automatically tune to the right ILS frequency.
- 1Turn on the autobrakes when the plane starts descending.
- Before Descent
Camera Hack - How to Add an external battery to the Flash!

Here’s a short little camera hack for those of you having trouble with re-charging the flash by adding an external battery. It might be a hack but it will work if you are shooting photos in long sessions.
If you’ve been shooting with a flash for a while, I’m sure you had some battery problem or another at least once. Like when one of four batteries goes bad and quickly discharges the other three. Or when it’s cold and the batteries don’t hold their charge so well anymore. Wouldn’t it be nice if you could have a more reliable source of power? One that virtually lasts for ever (well, not forever, but for a darn long time).
Debian Hack - How to Setup your Mirror!
This might not be for all of you but for those Linuxers out there, here’s an example of how to setup your mirror:
(Mirror is a way of replicating one server to another btw if you didn’t know.)
To download the mirrors I use this script:
<script sync_mirror.sh>#!/bin/bash OPTIONS="--nosource --progress --postcleanup --ignore-release-gpg --ignore-small-errors --pdiff=none"; MIRROR=`basename ${0} | cut -f2 -d "_"` DEST="/home/debian-mirror" case "${MIRROR}" in "debian" ) METHOD="--method=http" HOST="--host=ftp.de.debian.org" ROOT="--root=debian" DIST="--dist=etch,etch-proposed-updates" ARCH="--arch=i386" SECTION="--section=main,contrib,non-free" DEST="${DEST}/debian/" ;; "security" ) METHOD="--method=ftp" HOST="--host=security.debian.org" ROOT="--root=/debian-security/" DIST="--dist=etch/updates" ARCH="--arch=i386" SECTION="--section=main,contrib,non-free" DEST="${DEST}/debian-security/" ;; "volatile" ) METHOD="--method=http" HOST="--host=volatile.debian.org" ROOT="--root=debian-volatile" DIST="--dist=etch/volatile" ARCH="--arch=i386" SECTION="--section=main,contrib,non-free" DEST="${DEST}/debian-volatile/" ;; "multimedia" ) METHOD="--method=http" HOST="--host=www.debian-multimedia.org" ROOT="--root=/" DIST="--dist=etch" ARCH="--arch=i386" SECTION="--section=main" DEST="${DEST}/debian-multimedia/" ;; "backports" ) METHOD="--method=http" HOST="--host=www.backports.org" ROOT="--root=debian" DIST="--dist=etch-backports" ARCH="--arch=i386" SECTION="--section=main,contrib,non-free" DEST="${DEST}/debian-backports/" ;; * ) echo "${0} called incorrectly" exit ;; esac debmirror ${OPTIONS} ${METHOD} ${HOST} ${ROOT} ${DIST} ${ARCH} ${SECTION} ${DEST}</script sync_mirror.sh>
To setup the permissions I use this script:
<script permissions.sh>#!/bin/bash MIRROR=`basename ${0} | cut -f2 -d "_"` DEST="/home/debian-mirror" case "${MIRROR}" in "debian" ) DEST="${DEST}/debian/" ;; "security" ) DEST="${DEST}/debian-security/" ;; "volatile" ) DEST="${DEST}/debian-volatile/" ;; "multimedia" ) DEST="${DEST}/debian-multimedia/" ;; "backports" ) DEST="${DEST}/debian-backports/" ;; * ) echo "${0} called incorrectly" exit ;; esac echo "Setting Ownership" chown -R www-data:www-data ${DEST} echo "Setting File Permissions" chmod -R 660 ${DEST} echo "Setting Folder Permissions" find ${DEST} -type d -exec chmod 770 {} \;</script permissions.sh>
And then to pull it all together I have thefollowing directory structure (mirrors left out as it’s a ling list of files)
/home/debian-mirror/ |-- debian |-- debian-backports |-- debian-multimedia |-- debian-security |-- debian-volatile |-- scripts | |-- permissions.sh | `-- sync_mirror.sh `-- scripts.d |-- mirror_backports -> ../scripts/sync_mirror.sh |-- mirror_debian -> ../scripts/sync_mirror.sh |-- mirror_multimedia -> ../scripts/sync_mirror.sh |-- mirror_security -> ../scripts/sync_mirror.sh |-- mirror_volatile -> ../scripts/sync_mirror.sh |-- permissions_backports -> ../scripts/permissions.sh |-- permissions_debian -> ../scripts/permissions.sh |-- permissions_multimedia -> ../scripts/permissions.sh |-- permissions_security -> ../scripts/permissions.sh `-- permissions_volatile -> ../scripts/permissions.shAnd then I just setup a cronjob:
0 0 * * 0 root /bin/run-parts --verbose /home/debian-mirror/scripts.d | /usr/bin/mailx -s "`uname -n` - Debian mirror sync completed" rootThis was to disable the mirroring of one of the repositories I just need to remove the symlink from the scripts.d folder
