Generate cool css3 buttons for your website

Posted by hariom On March 16, 2012 2 comments
Getting cool pure css based buttons for your blog or website is not so typical now. Here today I will tell you about this cool website css3button.net .

Here you can select various button designs from huge selection list and can modify various attributes. You can also check out huge sample list of buttons.




Website provides HTML and css codes for the designed button which you can copy in your website or blog. Website also provides quick link URL to just use you button directly in your site.

Do get latest not so techie tips directly in your mail box or RSS reader or do follow Us on Twitter @notsotechieblog
READ MORE

Basic System related command in Red hat Linux

Posted by Dev On March 10, 2012 1 comments
Here I am sharing some of the very useful linux commends to view system informations:

  • date  :Show the current date and time.
  • uptime: show current uptime.
  • w: display who is online.
  • whoami: To check the logged in user.
  • finger username: To display information about username.
  • cat /proc/cpuinfo : To see the CPU information.
  • cat /proc/meminfo: To see the memory information of your system.
  • df -h  : show disk usage
  • du      : To show directory space usages.
  • uname -a : To show kernel information of your redhat linux.
  • man <command>: To show the manual for <command> (man cat)
  • cal : To show the months calendar.
  • which app: To show which application will be run by default.
Enjoyed the article do bookmarks us or get free updates directly in your mail.
READ MORE

Some Basic Linux Files commands

Posted by Dev On 0 comments
I am presenting some basic  linux commands which is very useful for the newbie:
(1) Files related commands
  • ls -l   :List files in current directory using long format.
  • ls -al :List files in current directory with hidden files.
  • ls -F :List files in current directory and indicate the files types.
  • rm name  :Remove a file or directory called name.
  • rm -rf  name  :Remove all directory and subdirectory under name directory.
  • cp filename /home/dev  :Copy the file called filename to the /home/dev directory.
  • cat filename  :To display the content of file named filename.
  • more filename  :To display file named filename one page at a time, when u want to proceed to next page   use the spacebar.
  • head filename   :To display the first 10 lines of the file called filename.
  • tail filename      :To display the last 10 lines of the file called filename. (tail -f file: output the last 10 line contents of file named file.)
  • touch filename  :To create a file named filename.
  •  mv file1 file2    :Rename or move file 1 to file2 if file2 existing directory, moves file1 into files2.

Next will be related to process management: follow me
READ MORE

Must have firefox addons for web designers and developers

Posted by hariom On March 07, 2012 0 comments
Every trade has its tools. So is the web designing and developement. Here I am sharing some of the very useful firefox addons to help you be more productive in your web desiging process.

1. Firebug : Firebug top the list. It sits at bottom of your taskbar. By right clicking on any webpage you can inspect any element of the page be it div , CSS , Color or any thing. You can literally change the look of any page and see the change loccally on you computer.

2. Web developer : It is simmilar to firebug but can inspect the page in some different style. Both addons are complementry to each other. A nice addon to have.

3. ColorZilla : Many a time you wish to know what color scheme this page is using. for picking colors on page this addon is very handy.

4.  Pixle Grabber   : In course of your desinging you need to get sceenshots of pages or little slice of particular area of page then this addon is very helpful you can save the images to you computer.

5. Font Info  :  This addon is helpful when you need to know what font has been used on any webpage.

This is not the complete list of addons, there may be many more. If you have used any addon let us know through your comments.

If you like the article then share it with you friends.
READ MORE