Check your ISI Bang mails through GMail

In this blog I am going to tell you how to check the isibang.ac.in mails without even loging in at isibang.ac.in.

All you need is one Gmail account. (Now every second netizen is having)

I follow the following steps:

Step 1.

Login to your Gmail account.


Step 2.

Go to “Settings” at the right top corner and then the “Accounts and Import” tab.


Step 3.

Look for “Check mail using POP3” and click “Add POP3 email account”.


Step 4.

Give your isibang.ac.in email id.


Step 5.

Fill the details according to the following screenshot.

Save and click next.

It will ask you whether you want to send mails also from this account. If you want then click next. One authorisation email will be sent to your mailbox. You have to activate it.

PS: This will allow you not only to check mails but also to send mails using address as @isibang.ac.in


Step 6.

The mailbox will be cheked. Final step.

Check your Gmail inbox.

Voila !!!! :-D



→ Read more...

List of popular Journals in Library and Information Sciences

  1. ACM Transactions on Inf Syst
  2. ACM Computing Surveys
  3. ACM Tr on Internet technology
  4. Annals Lib Sci & Inf Study
  5. ASLIB Proceedings
  6. Canadian Journal of Information Science & Library Science
  7. Cataloguing & Classif Qly
  8. Cognitive Science
  9. Collection Management
  10. College & Research Lib
  11. College & Research Lib News
  12. Communications of the ACM
  13. Computational Linguistics(Free Online from 2009)
  14. Computers in Libraries
  15. DESIDOC Bulletin
  16. EContent
  17. Electronic Library
  18. FID Review(Gratis)
  19. Focus on Int Lib & Inf Work
  20. Herald of Library Science
  21. IASLIC Bulletin
  22. IFLA Journal(Gratis)
  23. Indexer
  24. Information Outlook
  25. Information Processing & Mngt
  26. Information Society
  27. Information Studies
  28. Information Systems
  29. Information Technology & Libraries
  30. Inter Catal & Biblio Control
  31. Inter Inf Comm & Education
  32. Inter Inf & Lib Rev
  33. Inter J Digital Libraries
  34. Inter J of Geographical Information Sc
  35. Inter J of Knowledge Mgt
  36. J Amer Soc Inf Sci
  37. J Documentation
  38. J Education for Lib & Inf Sc
  39. J Information Science
  40. J Informetrics
  41. J Librarianship and Inf Sc
  42. J Library Administration
  43. J Lib & Inf Sci
  44. J Web Semantics
  45. Knowledge Organization
  46. Lib & Information Update
  47. Library Hi-tech
  48. Lib Journal
  49. Lib Quarterly
  50. Lib Resources & Tech Services
  51. Lib Technology Reports
  52. Lib Trends
  53. Libri
  54. Managing Information
  55. New Rev Academic Librarianship
  56. On-Line
  57. On-Line Information Review
  58. Performance Measurement & metrics
  59. Program
  60. Sci & Tech Libraries
  61. Scientometrics
  62. SIGART-Artificial Intelligence
  63. SIGIR-Information retrieval
  64. SRELS Jl of Infor Management

→ Read more...

· 2009/10/06 23:29 · Vinit Kumar · 0 Comments

Avoiding HotLinking of Images/Files. on Apache/Tomcat

Suppose you are a webmaster u know the value of Bandwidth. There can be people who can hotlink your images/files thereby stealing your bandwidth. In this case the actual traffic goes to the one who steals, but you need to pay the price of bandwidth.

Now this tut is to help you to avoid people hotlinking your files, if u r using Apache Webserver.

Open the .htaccess file on your server. This is a configuration file used to set permission for access made on your files. In some versions of apache this file is /etc/apache2/sites-enabled/default00

The following code can be used on ur .htaccess file to avoid Hotlinking:

<Files .htaccess>
deny from all
</Files>
RewriteEngine on
RewriteCond %{HTTP_REFERER}!^$
RewriteCond %{HTTP_REFERER}!^http://YOURDOMAIN.com.*$ [NC]
RewriteCond %{HTTP_REFERER}!^http://www.YOURDOMAIN.com.*$ [NC]
RewriteCond %{HTTP_REFERER}!^http://YOURIPADDRESS.*$ [NC]
RewriteCond %{HTTP_REFERER}!^http://www.YOURIPADDRESS.*$ [NC]
RewriteCond %{HTTP_REFERER}!^http://www.google.com.*$ [NC]
RewriteCond %{HTTP_REFERER}!^http://google.com.*$ [NC]
RewriteCond %{HTTP_REFERER}!^http://216.239.*.* [NC]
RewriteRule .*\.(gif¦jpg¦jpeg¦zip|pdf|exebmp¦png¦mpg¦mpeg¦avi¦ wmv¦mov¦asf)$ - [F]

Using the above code, you allow the files on your site to be linked only from your site and Google (216.239.*.* is Google's IP). If you want, you can also remove the lines with Google's URL.

<Files .htaccess>
deny from all
</Files>

This code is to prevent people from seeing the contents of ur .htaccess file itself.

the RewriteCond checks the HTTP referrer which has linked to the file/image to be downloaded. It checks whether the file format is as set in RewriteRule, and if it does, it checks the domains to which permission has been granted. In case of Hotlinked files, Access is denied.

Cheers Vinit

→ Read more...

· 2009/10/01 14:03 · Vinit Kumar · 0 Comments

Integrating Apache tomcat with Apache2 for DSpace

After the proper installation of DSpace. The DSpace instance can be accessed by typing this url in address bar of web browser.



After the integration of Apache Tomcat and Apache 2 the DSpace instance can be accessed by






In this blog I'll explain how you can connect Apache Tomcat with Apache 2 webserver so that you'll have to open only one port and can provide better security.

→ Read more...

Check your ISI Bang mails through GMail 2010/01/09 14:32 Vinit Kumar In this blog I am going to tell you how to check the isibang.ac.in mails without even loging in at isibang.ac.in. All you need is one Gmail account. (Now ever… 0 Comments
List of popular Journals in Library and Information Sciences 2009/10/06 23:29 Vinit Kumar * ACM Transactions on Inf Syst * ACM Computing Surveys * ACM Tr on Internet technology * Annals Lib Sci & Inf Study * ASLIB Proceedings * Canadian Jo… 0 Comments
Avoiding HotLinking of Images/Files. on Apache/Tomcat 2009/10/01 14:03 Vinit Kumar Suppose you are a webmaster u know the value of Bandwidth. There can be people who can hotlink your images/files thereby stealing your bandwidth. In this case t… 0 Comments
Integrating Apache tomcat with Apache2 for DSpace 2009/09/11 21:25   After the proper installation of DSpace. The DSpace instance can be accessed by typing this url in address bar of web browser. After the integration … 0 Comments
  • Bookmark at
  • Bookmark "blog" at del.icio.us
  • Bookmark "blog" at Digg
  • Bookmark "blog" at Reddit
  • Bookmark "blog" at Google
  • Bookmark "blog" at Ma.gnolia
  • Bookmark "blog" at Netscape
  • Bookmark "blog" at Socializer
  • Bookmark "blog" at StumbleUpon
  • Bookmark "blog" at Technorati
  • Bookmark "blog" at Live Bookmarks
  • Bookmark "blog" at Yahoo! Myweb
  • Bookmark "blog" at Favorites
  • Bookmark "blog" at Facebook
  • Bookmark "blog" at Yahoo! Bookmarks
  • Bookmark "blog" at Twitter
  • Bookmark "blog" at myAOL
  • Bookmark "blog" at Slashdot
 
blog.txt · Last modified: 2009/09/11 21:19 (external edit)
-->
Recent changes RSS feed