How to Backup MySQL Database automatically (for Linux users)

  1. 15 2 * * * root mysqldump -u root -pPASSWORD –all-databases | gzip > /mnt/disk2/database_`data ’ %m-%d-%Y’`.sql.gz

This post will show you how to backup MySQL Database automatically if you are a linux user. You can use cron to backup your MySQL database automatically.”cron” is a time-based scheduling utility in Unix/Linux
operating system.

Posted in MySQL, Web Development | Tagged , , , , , , , | Leave a comment

Today’s Links January 25, 2012

Best Laptops and Netbooks Deals at CompUSA.com

Digest powered by RSS Digest

Posted in Computers/Networks | Tagged | Leave a comment

Today’s Links January 24, 2012

Best Laptops and Netbooks Deals at CompUSA.com

Digest powered by RSS Digest

Posted in Computers/Networks | Tagged | Leave a comment

Today’s Links January 23, 2012

Best Laptops and Netbooks Deals at CompUSA.com

Digest powered by RSS Digest

Posted in Computers/Networks | Tagged | Leave a comment

Today’s Links January 22, 2012

Best Laptops and Netbooks Deals at CompUSA.com

Digest powered by RSS Digest

Posted in Computers/Networks | Tagged | Leave a comment

Today’s Links January 21, 2012

Best Laptops and Netbooks Deals at CompUSA.com

Digest powered by RSS Digest

Posted in Computers/Networks | Tagged | Leave a comment

A moment with The Father and his Son

Quite refreshing today as I crossed the bridge to get the train, tri-rail.com, there is a man and his son sitting on the ground enjoying the am brezze but at the same time they are reading the Bible Together.

Posted in Bible(Study), Books | Tagged | Leave a comment

Today’s Links January 20, 2012

Best Laptops and Netbooks Deals at CompUSA.com

Digest powered by RSS Digest

Posted in Computers/Networks | Tagged | Leave a comment

How does Passive FTP work?

http://www.velikan.net/iis-passive-ftp/

How does Passive FTP work?

In passive mode FTP the client initiates both connections to the server, solving the problem of firewalls filtering the incoming data port connection to the client from the server.

When opening an FTP connection, the client opens two random unprivileged ports locally (port number > 1023 and port number+1). The first port contacts the server on port 21, but instead of then issuing a PORT command and allowing the server to connect back to its data port, the client will issue the PASV command.

The result of this is that the server then opens a random unprivileged port (P > 1023) and sends the PORT P command back to the client. The client then initiates the connection from port (port number+1) to port (port number) on the server to transfer data.

The passive FTP protocol is very good because a lot of connections on internet are over ADSL, cable… and clients use routers to connect to the internet. Routers usualy filter data so active ftp protocol can not be used. This problem is solved with active file transfer protocol.

Firewall on Passive FTP – what ports should be opened on server and client side?

On server port 21 and ports (port number > 1023) must be opened. On client side no change is needed.

adsutil.vbs set /MSFTPSVC/PassivePortRange “5500-5520″

http://www.velikan.net/iis-passive-ftp/

http://forum.parallels.com/showthread.php?t=57717

http://www.webhostingtalk.com/showthread.php?t=856255

Posted in Computers/Networks | Tagged , | Leave a comment

WireFraming Tools

WireFraming  Tools

http://www.axure.com/features

http://pencil.evolus.vn/en-US/Home.aspx

http://balsamiq.com/products/mockups

http://www.flairbuilder.com/f

Articles on WireFraming

http://www.smashingmagazine.com/2009/09/01/35-excellent-wireframing-resources/

http://www.onextrapixel.com/2009/07/15/the-importance-of-wireframes-in-web-design-and-9-tools-to-create-wireframes/

Posted in Web Development, Wireframing | Tagged , , | Leave a comment

Audio Transcript for Videos

The Problem – We need all videos to be section 508 compliant see § 1194.24 Video and multimedia products. http://www.section508.gov/index.cfm?fuseAction=stdsdoc#Video ; where all Videos posted must follow this requirement.

“All training and informational video and multimedia productions which support the agency’s mission, regardless of format, that contain visual information necessary for the comprehension of the content, shall be audio described.”

This basically means all video must have a text equivalent, closed captioned version for all hearing impaired people to consume be it via a text reader or a screen reading application.  After doing some research I came to find several solutions that fit the bill that made the process very simple by taking the audio track from within a video and create a relatively accurate text version of the text spoken in the video.  The next step was to watch the videos and read the text and make minor corrections

The Answers – A Review of Some possible Solutions

Express Scribe Transcription Software

Express Scribe is free professional audio player software for PC or Mac designed to assist the transcription of audio recordings.

A typist can install it on their computer and control audio playback using a transcription footpedal or keyboard (with ‘hot’ keys). This transcribing software also offers valuable features for typists including variable speed playback, multi-channel control, playing video, file management, and more.

Express Scribe is completely free and can be used without any restrictions. We make it free because we know you will love it so much you will use and recommend our commercial digital dictation suite to others. Please visit our Dictation Software page.

http://www.nch.com.au/scribe/index.html

Transana

Transana is software for professional researchers who want to analyze digital video or audio data. Transana lets you analyze and manage your data in very sophisticated ways. Transcribe it, identify analytically interesting clips, assign keywords to clips, arrange and rearrange clips, create complex collections of interrelated clips, explore relationships between applied keywords, and share your analysis with colleagues. The result is a new way to focus on your data, and a new way to manage large collections of video and audio files and clips.

http://www.transana.org/

Cogi.com

Subtitle Workshop -
Subtitle Workshop is the most complete, efficient and convenient freeware subtitle editing tool. It supports all the subtitle formats you need and has all the features you would want from a subtitle editing program. Subtitle Workshop makes subtitle creating/editing/converting tasks almost a pleasure, the amicable and intuitive interface mixes easy to access menus & must have features with advanced functions and a remarkable speed and stability, drastically reducing subtitle editing time. It includes spell check function and an advanced video preview feature which will ease the task even more. The best choice for the beginner, expert or the fansubber. Have a try, and you’ll forget the rest!
ttp://www.urusoft.net

Adobe Premiere Pro CS4

Rich Harrington talks about one his favorite new features in Premiere Pro CS4; the audio transcription options. Audio transcription is very powerful and it comes in real handy when editing by helping to locate audio clips. The transcription information can also be exported with the video.

My Review:
For somebody that already uses Adobe products and is pretty familiar with premiere this fit the bill right away.  i was able to create a new project and import my video files and encode and get the meta data [text] and hand that off to a third party to clean up the text file by watching the Video and editing what text was given them.

http://layersmagazine.com/premiere-pro-cs4-transcribe.html

http://layersmagazine.com/author/richard-harrington

Posted in Premeire, Video | Tagged , , , , | Leave a comment

301 – Permanent redirection Script php

301 – Permanent redirection
—————————

<?php
// Permanent redirection
header(“HTTP/1.1 301 Moved Permanently”);
header(“Location: http://www.somacon.com/”);
exit();
?>

302 – Permanent redirection
—————————

Redirecting a page in PHP
<?php
header(“Location: http://www.domain.com/temporary-address/temporary-file-name.html”);
exit();
?>

Posted in Php, Web Development | Tagged , , | Leave a comment

Visio Resources

Visio Resources

http://www.visiocafe.com/

http://www.visguy.com/

Posted in Web Development | Tagged , | Leave a comment

Today’s Links December 31, 2011

Best Laptops and Netbooks Deals at CompUSA.com

Digest powered by RSS Digest

Posted in Computers/Networks | Tagged | Leave a comment

Today’s Links December 30, 2011

Best Laptops and Netbooks Deals at CompUSA.com

Digest powered by RSS Digest

Posted in Computers/Networks | Tagged | Leave a comment

Today’s Links December 28, 2011

Best Laptops and Netbooks Deals at CompUSA.com

Digest powered by RSS Digest

Posted in Computers/Networks | Tagged | Leave a comment

Today’s Links December 27, 2011

Best Laptops and Netbooks Deals at CompUSA.com

Digest powered by RSS Digest

Posted in Computers/Networks | Tagged | Leave a comment

Today’s Links December 26, 2011

Best Laptops and Netbooks Deals at CompUSA.com

Digest powered by RSS Digest

Posted in Computers/Networks | Tagged | Leave a comment

Today’s Links December 25, 2011

Best Laptops and Netbooks Deals at CompUSA.com

Digest powered by RSS Digest

Posted in Computers/Networks | Tagged | Leave a comment

Today’s Links December 24, 2011

Best Laptops and Netbooks Deals at CompUSA.com

Digest powered by RSS Digest

Posted in Computers/Networks | Tagged | Leave a comment