Saturday, July 17, 2010

Links Collection

Term Extraction

Zemanta - term extractor
Steve makes websites
Some Examples of yahoo term extraction
Five Filters term extraction
POS tagger term extraction

Free software for term extraction:

Non-free web services for term extraction:



YUI Slider example

Twitter css n jquery
http://www.dynamicwp.net/articles-and-tutorials/10-awesome-jquery-tutorials-about-twitter/
http://psdcollector.blogspot.com/2010/03/useful-jquery-twitter-api-tutorials.html
http://craigsworks.com/projects/qtip/
http://cufon.shoqolate.com/generate/

http://www.marcofolio.net/
http://archive.usejquery.com/submit.html
http://www.webspeaks.in/2010/07/25-incredibly-useful-css-tricks-you.html
http://www.readwriteweb.com/archives/10_twitter_list_widgets_you_can_grab_embed_right_n.php
http://www.markhneedham.com/blog/2010/03/21/node-js-a-little-application-with-twitter-couchdb/

interesting app

http://www.adictomatic.com

jQuery twitter search plugin

http://jquery.malsup.com/twitter/

What to do if starting webdesign

http://www.webresourcesdepot.com/if-i-had-started-web-design-today-and-you/

New updates


http://critiquethesite.com/
http://mashable.com/2010/07/22/web-design-feedback-tools/
http://www.moretechtips.net/

Nice OAuth Tutorial

http://www.snipe.net/2009/07/writing-your-first-twitter-application-with-oauth/#axzz0ub1EY049


Interesting Ones

http://custom-drupal.com/jquery-demo/
http://www.geekdaily.net/category/projects/
http://visionmedia.github.com/inline-search/
http://www.hiddenpixels.com/designer-and-developer-resources/jquery-examples/
http://www.deontee.com/47-top-twitter-sites-services-software-and-tips/
http://www.learningjquery.com/2010/07/great-ways-to-learn-jquery
http://www.9lessons.info/2010/04/free-smtp-mail-server-for-your-web.html
http://elitebydesign.com/getting-started-with-css-20-awesome-introductory-tuts/
http://sorgalla.com/projects/jcarousel/
http://www.sohtanaka.com/web-design/category/css-tutorials/page/4/
10 Tools for Distributed Developer Teams

Envolve: A Facebook-Like Chat Room for Your Site

http://trends.ellerdale.com/trends/people
http://free-idea-bank.blogspot.com/?expref=next-blog

HPRICOT:

http://wiki.github.com/hpricot/hpricot/hpricot-challenge
http://totalrecall.wordpress.com/2008/08/30/extracting-data-with-hpricot-night-2/
http://www.sitepoint.com/blogs/2007/11/21/processing-html-with-hpricot/
http://stackoverflow.com/questions/1972934/searching-hpricot-with-regex
http://stackoverflow.com/questions/tagged/hpricot
http://stackoverflow.com/questions/667697/parsing-an-html-table-using-hpricot-ruby
http://code.google.com/p/twitcurl/wiki/WikiHowToUseTwitcurlLibrary
http://www.rubyinside.com/fast-html-parsing-in-ruby-with-hpricot-125.html
http://www.freebsdsoftware.org/textproc/ruby-html-parser.html
http://ai-depot.com/articles/the-easy-way-to-extract-useful-text-from-arbitrary-html/


MAIL

http://www.simplehelp.net/2008/12/01/how-to-send-email-from-the-linux-command-line/


NEWS TICKER
http://www.smartmenus.org/vadikom/products/free-scripts/demos/v_ex3.html

INTRESTING ONE's
http://www.engageinteractive.co.uk/

http://www.tiddlywiki.com/ nice one have a look
http://www.netzgesta.de


http://www.linuxjournal.com/article/8110
http://www.linuxjournal.com/article/8130http://kernelnewbies.org/




Thursday, February 18, 2010

Basic SVN Commands

http://www.linuxfromscratch.org/blfs/edguide/chapter03.html#ch03-propset

Find out runlevel of unix or Linux system

A runlevel is a software configuration of the system which allows only a selected group of processes to exist. The processes spawned by init command/process for each of these runlevels are defined in the /etc/inittab file. Runlevels 0, 1, and 6 are reserved. Runlevel 0 is used to halt the sys tem, runlevel 6 is used to reboot the system, and runlevel 1 is used to get the system down into single user mode. In order to print current runlevel you need to use command who or runlevel as follows:

1) Print print current runlevel using who command:

$ who -r

run-level 2  Dec 16 11:45                   last=S
2) Find the current and previous system runlevel using runlevel command:

$ runlevel

N 2 

Runlevel reads the system utmp file (typically /var/run/utmp) to locate the runlevel record, and then prints the previous and current system runlevel on its screen. Runlevel can be used in rc scripts as a substitute for the System-V who -r command. However, in newer versions of init this information is also available in the environment variables RUNLEVEL and PREVLEVEL:

$ echo $RUNLEVEL
$ echo $PREVLEVEL

Source: http://www.cyberciti.biz/howto/question/linux/unix-linux-find-out-runlevel.php

Linux change the runlevel for a server without rebooting

Q. How do I change the runlevel for a Linux server without rebooting my server? I am using Gentoo Linux.

A. Almost all Linux distribution use init program to change runlevel. init is the parent of all processes. Its primary role is to create processes from a script stored in the file
/etc/inittab . This file usually has entries which cause init to spawn gettys on each line that users can log in. It also controls autonomous processes required by any particular system.

To change runlevel from 3 to 1 you need to type command as follows:
# init 1
OR
$ sudo init 1

Where 1 is runlevel number, other possible runlevel values are:
=> 0 - Shutdown server
=> 1 - Take server to single-user mode
=> 2 - Start X Window (used by Debian)
=> 3 - Full multi-user text mode
=> 5 - Start X Window
=> 6 - Reboot server


Source: http://www.cyberciti.biz/faq/change-the-runlevel-for-a-linux-server/

Changing runlevels

More Information on Runlevels: http://en.wikipedia.org/wiki/Runlevel

Wednesday, February 17, 2010

Execute a command without saving it in the history

$command
This is sample output - yours may be different.
$ echo this goes to history
this goes to history

$ echo this wont go to history
this wont go to history

$ history
1 echo this goes to history
2 history

Monday, February 8, 2010

Twittering with UBUNTU

http://jamsubuntu.blogspot.com/2009/03/twittering-with-ubuntu.html

Sunday, February 7, 2010

Running Scripts on Shutdown and Startup

Running Script at time of shutdown
=========================

myscript:

#!/bin/sh
echo `date`>>/home/vamshi/Desktop/vvvshut.txt
exit 0

the script should begin with #!/bin/sh called as "shebang" line

file is saved as
  • file.sh in /etc/init.d/
  • K10file.sh in /etc/rc0.d/
  • K10file.sh in /etc/rc6.d/
then executable permissions are given in all directories with command

chmod +x file.sh

that's it, Script executes on shutdown.


Running Script at time of startup
=======================

Script is same, but now i need to execute at startup and may be write to a different file about the startup time.

For this just put that script in /etc/rc.local file.

This file will execute at the time of startup and make that script
run for you