Category Archives: Uncategorized

Showing relationship among database tables

SchemaSpy software is used for showing relationship among different tables. It is free software. SchemaSpy is a Java-based tool that analyzes the metadata of a schema in a database and generates a visual representation of it in a browser-displayable format. … Continue reading

Posted in Uncategorized | 2 Comments

Making a simple form in Zend framework

Firstally define the directory structure of zend framework. Create index.php file inside the project/ directory and write the following code: <?php define(‘ROOT_DIR’, dirname(__FILE__)); set_include_path(‘.’ . PATH_SEPARATOR . ROOT_DIR . ‘/library’ . PATH_SEPARATOR . ROOT_DIR . ‘/application/models’ . PATH_SEPARATOR . ROOT_DIR … Continue reading

Posted in Uncategorized | 1 Comment

tmux in Ubuntu

tmux is a terminal multiplexer. It enables a number of terminals to be created, accessed, and controlled from a single screen. tmux may be detached from a screen and continue running in the background, then later reattached. Install tmux by … Continue reading

Posted in Uncategorized | Leave a comment

sed command and slang replacer

Sed is a stream editor. A stream editor is used to perform basic text transformations on an input stream (a file or input from a pipeline). sed command is used to replace text. Example: Create file in which replace words … Continue reading

Posted in Uncategorized | Leave a comment

Secure your SSH server with Public/Private key authentification

Open SSH is the most widely used SSH server on Linux. Using SSH, one can connect to a remote host and gain a shell access on it in a secure manner . Instead of logging in to SSH using a … Continue reading

Posted in Uncategorized | Leave a comment

Upload and download via SSH

To upload something  on the server type the following command in terminal:- scp /home/meet/Desktop/FileName userame@ServerAddress:~/destinationfolder/ Example: scp /home/meet/Desktop/j.jpg parveen@exp:~/public_html/ To dwnloading something from the server type the following command:- scp username@ServerAddress:~/public_html/FileName /home/meet/Desktop/ Example: scp parveen@exp:~/public_html/aa.jpg /home/meet/Desktop/

Posted in Uncategorized | Leave a comment

Different Git commands

Following are the different git commands:  Clone a Git repository: git clone username@yourhost.com:path/to/repo/repo-name.git  Initializing an empty git repository: git init Adding files to git repository:  git add .  The commit command:  git commit -m “Initial import”  Viewing the commit log: … Continue reading

Posted in Uncategorized | Leave a comment

Fun with Ubuntu terminal

Linux is not only limited to work only. You can also enjoy a lot while working on it. There are many crazy commands which will bring a big smile on your face. Following are the some funny commands: espeak: Terminal … Continue reading

Posted in Uncategorized | Leave a comment

What is Git?

Git is an open source version control system. Git is developed and maintained by the creator of the Linux kernel. It stores complete files each time the user commits his changes, making recovery and version-diffing reliable, responsive, and simple. This … Continue reading

Posted in Uncategorized | Leave a comment

Introduction to Blender

Blender is a free and open-source 3D computer graphics software product used for creating animated films, visual effects, interactive 3D applications or video games. Blender’s features include 3D modeling, UV unwrapping, texturing, rigging and skinning, fluid and smoke simulation, particle … Continue reading

Posted in Uncategorized | 1 Comment