Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

guillaume riflet http://webtopmania.blogspot.com

« Newer Snippets
Older Snippets »
Showing 1-2 of 2 total  RSS 

Babelfish translate

Ok, so maybe some of you might think that Babelfish's the best translator out there. I don't know about that , but I do know where my towel is ;)
So, boys and girls, here's the bookmarklet that allows to translate your current web-page using the babelfish translation engine.

   1  
   2  javascript:location.href='http://babelfish.altavista.com/babelfish/tr?trurl='+encodeURIComponent(location.href)+'&lp=%s&btnTrUrl=Translate'


To make it useful, save it as a bookmark in FF (or as a new search engine in Opera) and give it a keyword/shortcut by editing the bookmark's properties in FF (or the search properties in Opera). Let's call him, say 'bf', that should do it.

Here are some examples:
   1  
   2  bf en_fr
   3  bf fr_en
   4  bf en_ja


Enjoy!
G.R.

Opera Syncing using Svn

This batch file allows to run opera after checking out your web-based opera profile. When you terminate your opera session, the batch will commit the changes you made to your profile during the opera session.

   1  
   2   REM OperaSync.bat
   3   @echo off
   4   
   5   set PRG=Opera
   6   set TARGET=%APPDATA%/%PRG%/%PRG%/profile
   7   set EXEC=%PROGS%/%PRG%/%PRG%.exe
   8   set REPO=https://********.googlecode.com/svn/trunk/%PROG%Sync
   9   set USER=*************
  10   
  11   echo Checking out from %REPO% ...
  12   svn checkout %REPO% "%TARGET%" --username %USER%
  13   echo %PROG% running ...
  14   %EXEC%
  15   echo Commiting to %REPO% ...
  16   svn commit -m --force-log "%TARGET%"
  17   echo Done.
  18   
  19   @echo on


Here's the list of files that I update from a svn repo for my Opera profile
   1  
   2  contacts.adr
   3  files.txt
   4  jscripts/
   5  jscripts/deliciousmp3.js
   6  notes.adr
   7  opcacrt6.dat
   8  opcert6.dat
   9  opera6.adr
  10  search.ini
  11  sessions/
  12  sessions/autosave.win
  13  sessions/autosave.win.bak
  14  speeddial.ini

« Newer Snippets
Older Snippets »
Showing 1-2 of 2 total  RSS