Main > Free Download Search >

Free flickr add referrer into comments software for linux

flickr add referrer into comments

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 7517
Flickr: Add referrer into comments 1.0

Flickr: Add referrer into comments 1.0


Flickr: Add referrer into comments a small script that will add a small text at the end of your comment. more>>
An annoying thing on flickr is that you never know where people that visit your photo have found it.

Flickr: Add referrer into comments a small script that will add a small text at the end of your comment saying where you come from. If everyone starts using this script, then it will be easy to see where the people have found your photos and how they got to comment on it.

Installation:

Get Firefox
Install GreaseMonkey
restart Firefox

Click on the following icon and select Install greasemonkey - 12 kb

Usage:

the comments will be added automatically to the end of your message.
<<less
Download (MB)
Added: 2006-12-26 License: GPL (GNU General Public License) Price:
1034 downloads
Flickr Follow Comment 0.4

Flickr Follow Comment 0.4


Flickr Follow Comment is a Greasemonkey script that improves Flickrs Comments Youve Made page. more>> <<less
Download (MB)
Added: 2006-12-26 License: GPL (GNU General Public License) Price:
1033 downloads
Flickr Photo Compass 0.8

Flickr Photo Compass 0.8


Flickr Photo Compass displays the 8 closest photos to the actual one in the directions: N, NE, E, SE, S, SW, W, NW. more>>
The Geo Radar released by .CK reminded me of an idea I had had a while ago and provided me with the tools to implement it quickly.

This greasemonkey is a simpler version of the radar that displays the 8 closest photos to the actual one in the directions: N, NE, E, SE, S, SW, W, NW.

Flickr Photo Compass is a simple tool to browse photos of some place. By clicking on the direction icons, you can move around and find other photos.
<<less
Download (MB)
Added: 2006-12-26 License: GPL (GNU General Public License) Price:
1037 downloads
File::Comments 0.07

File::Comments 0.07


File::Comments is a Perl module that ecognizes file formats and extracts format-specific comments. more>>
File::Comments is a Perl module that ecognizes file formats and extracts format-specific comments.

SYNOPSIS

use File::Comments;

my $snoop = File::Comments->new();

# *----------------
# | program.c:
# | /* comment */
# | main () {}
# *----------------
my $comments = $snoop->comments("program.c");
# => [" comment "]

# *----------------
# | script.pl:
# | # comment
# | print "howdy!n"; # another comment
# *----------------
my $comments = $snoop->comments("script.pl");
# => [" comment", " another comment"]

# or strip comments from a file:
my $stripped = $snoop->stripped("script.pl");
# => "print "howdy!n";"

# or just guess a files type:
my $type = $snoop->guess_type("program.c");
# => "c"

File::Comments guesses the type of a given file, determines the format used for comments, extracts all comments, and returns them as a reference to an array of chunks. Alternatively, it strips all comments from a file.

Currently supported are Perl scripts, C/C++ programs, Java, makefiles, JavaScript, Python and PHP.

The plugin architecture used by File::Comments makes it easy to add new formats. To support a new format, a new plugin module has to be installed. No modifications to the File::Comments codebase are necessary, new plugins will be picked up automatically.

File::Comments can also be used to simply guess a files type. It it somewhat more flexible than File::MMagic and File::Type. File types in File::Comments are typically based on file name suffixes (*.c, *.pl, etc.). If no suffix is available, or a given suffix is ambiguous (e.g. if several plugins have registered a handler for the same suffix), then the files content is used to narrow down the possibilities and arrive at a decision.

WARNING: THIS MODULE IS UNDER DEVELOPMENT, QUALITY IS ALPHA. IF YOU FIND BUGS, OR WANT TO CONTRIBUTE PLUGINS, PLEASE SEND THEM MY WAY.

<<less
Download (0.012MB)
Added: 2007-06-09 License: Perl Artistic License Price:
868 downloads
Pod::InComments 0.9

Pod::InComments 0.9


Pod::InComments is a Perl extension for extracting POD documentation from comments in config file. more>>
Pod::InComments is a Perl extension for extracting POD documentation from comments in config file.

SYNOPSIS

use Pod::InComments;
my $podparser = Pod::InComments->new( comment => ; );
$podparser->ParseFile( $my_config_file );
$podparser->Pod2Hash();

my $helptext = $podparser->Pod4Section( $section , $key );

This module was written to solve the problem of describing numerous parameters in a config file. When you add comments to the config file, it becomes a mess quickly. And no-one will take the time to properly read them. You can not add POD directly. So..... here is Pod::InComments.

It was developed when using Config::IniFiles format, so lets take that as the basis. The Config::IniFiles module lets you use config files in the form of the popular windows ini file. That is, they look like

[section]
param1=some value
param2 = another value
param3=20.00

; this is a comment
[operating system]
preferred=Linux
using=Windows XP Pro

METHODS

new( comment => # )

Constructor of the class. Specify the comment character(s) used in the config file. Defaults to ;. You can use whatever you like here. So #### is valid as well, but requires more typing in the config.

ParseFile( $config_file )

Parses the $config_file and extracts all the comment lines. The comment character(s) are stripped of each line. It returns a string with all the POD.

Pod2Hash()

After parsing a config file, you will need to call this function to convert the POD into a hash. The keys of the hash are the head1 titles. If head2 elements are present, they will be subkeys of the hash.

Pod4Section( $section, $param )

Returns the POD belonging to the $section, or to $param of $section.

E.g., when your config file looks like:

;=head1 cpu
;
;Specifies cpu settings for normal boxes
;note that these will override factory settings!
;
;=head2 maxload
;
;The maxload setting gives an upperbound on how hard
;the CPU can be pushed.

[cpu]
maxload=4.0

then doing:

my $pod = $podparser->Pod4Section( cpu, maxload );

will give you:

The maxload setting gives an upperbound on how hard the CPU can be pushed.

SavePod( $file )

Saves the extracted pod to the $file. If you omit a file name, it will append .pod to the config file you parsed and saves to that file.

GetPod()

Returns the entire POD formatted in text.

DisplayPod()

Prints the entire extracted POD documentation to STDOUT.

<<less
Download (0.005MB)
Added: 2007-05-08 License: Perl Artistic License Price:
899 downloads
Plone Comments 2.2.1

Plone Comments 2.2.1


Plone Comments provides a product developed to improve moderation of comments in Plone. more>>
Plone Comments provides a product developed to improve moderation of comments in Plone.
Main features:
- Notify admin about comment posted
- Moderation of comments, approval of comments
- Anonymous commenting
- Added Name field to comment form, it is required for anonymous comments
- Article author can be notified about new comment after the approval by reviewer
- List of recent comments for more comfortable moderation
- Configlet that allow:
- Turning on/off Moderation
- Turning on/off Manager notification
- Turning on/off Editor notification
- Turning on/off Anonymous Commenting
- Configure admin e-mail for notifications
- Configure notification subject
Comments moderation is implemented with involvement of two stage workflow. Comments are created in "private" state and visible only to DiscussionManager group of users.
To differentiate between logged-in (registered) commentors and Anonymous commentors that pretend to be one person or other one, we use Boldness of name. The Comment author is in bold when posted by logged in member. The names provided when posting Anonymously are in plain text.
Notification subject control allows to enter custom prefix to disctinct nofifications comming from different sites.
Usage
One of possible UseCases:
- Moderation is enabled and authors notification is turned on.
- New comment posted in private state.
- Notification is sent to the emails entered in Plone Comments configlet.
- Moderator User with DiscussionManager role see the comment.
- The comment can be deleted or published on modaration stage.
- When comment is published notification is sent to Article Editor.
Enhancements:
- Ukrainian translation added
- added qPloneCaptchas-1.0 integration/compatibility
- fixed reinstall procedure
<<less
Download (0.037MB)
Added: 2007-03-28 License: GPL (GNU General Public License) Price:
943 downloads
Smart::Comments 1.0.2

Smart::Comments 1.0.2


Smart::Comments are comments that do more than just sit there. more>>
Smart::Comments are comments that do more than just sit there.

SYNOPSIS

use Smart::Comments;

my $var = suspect_value();

### $var

### got: $var

### Now computing value...

# and when looping:

for my $big_num (@big_nums) { ### Factoring... done
factor($big_num);
}

while ($error > $tolerance) { ### Refining---> done
refine_approximation()
}

for (my $i=0; $i<<less
Download (0.013MB)
Added: 2007-01-22 License: Perl Artistic License Price:
1011 downloads
OpenURL Referrer 2.3.6

OpenURL Referrer 2.3.6


OpenURL Referrer enables you to insert OpenURL links in a web page. more>>
OpenURL Referrer enables you to insert OpenURL links in a web page.

Inserts OpenURL links in a web page using the bibliographic data available on that page.

OpenURL is a type of URL that contains resource metadata for use primarily in libraries. The National Information Standards Organization (NISO), has developed OpenURL and its data container (the ContextObject) as international ANSI standard Z39.88. On 22 June 2006, OCLC was named the maintenance agency for the standard.

The OpenURL standard is designed to support mediated linking from information resources (sources) to library services (targets). A "link resolver", or "link-server", parses the elements of an OpenURL and provides links to appropriate services as identified by a library.

A source is generally a bibliographic citation or bibliographic record used to generate an OpenURL. A target is a resource or service that helps satisfy users information needs. Examples include full-text repositories; abstracting, indexing, and citation databases; online library catalogs; and other Web resources and services.

An OpenURL consists of a base URL, which addresses the users institutional link-server, and a query-string, which contains the bibliographic data, typically in the form of key-value pairs.

<<less
Download (0.036MB)
Added: 2007-07-11 License: MPL (Mozilla Public License) Price:
844 downloads
Photocomments 0.1

Photocomments 0.1


Photocomments project convert various forms of comments / descriptions from digital photos. more>>
Photocomments project convert various forms of comments and descriptions from digital photos.
Supports descript.ion files (as used by ACDsee), jpeg internal comments and CSV files for use with gallery
Written in perl. Uses ImageMagick for the jpeg comment stuff.
Main features:
- Convert different forms of comments for jpeg photos.
- Why? One picture viewer is good for editing comments, another one is good for viewing the images and then theres my online gallery, which should also use the comments as captions.
- Can read descript.ion files (acdsee) and jpeg comments
- can write: descript.ion files, jpeg comments, gallery-csv-files (needed for import to gallery)
- Caveeat: Cannot handle filenames with spaces.
<<less
Download (0.010MB)
Added: 2006-01-26 License: GPL (GNU General Public License) Price:
1367 downloads
ReferrerCop 1.1.0

ReferrerCop 1.1.0


ReferrerCop parses Apache log files and AWStats data files. more>>
ReferrerCop project parses Apache log files or AWStats data files and removes entries for referring URLs that match a list of known referrer spammers.

It then returns the filtered files via standard output. Run your logs through ReferrerCop either before or after they’re processed by AWStats (or before they’re processed by any other log analyzer) to eliminate annoying referrer spam from your web statistics.

Filtering is performed using a blacklist and an optional whitelist. The lists are simply text files containing regular expressions (one pattern per line). ReferrerCop comes with a large, heavily optimized and frequently updated blacklist.

ReferrerCop is extremely fast and uses very little memory; it is capable of filtering files of virtually any size. On my Athlon XP 1800 running FreeBSD 5.4, ReferrerCop is capable of processing about 14,000 Apache log entries per second (your mileage may vary).

<<less
Download (0.047MB)
Added: 2006-03-03 License: GPL (GNU General Public License) Price:
1330 downloads
Digg.com Comment Spotlight 2.0

Digg.com Comment Spotlight 2.0


Digg.com Comment Spotlight is an extension which does exactly what its name hints, it spots Digg comments. more>>
Digg.com Comment Spotlight is an extension which does exactly what its name hints, it spots Digg comments.

Digg Comment Spotlight does exactly what its name hints, it spots comments that other readers have taken the time to Digg, allowing you to easily wade through 100s of comments in an article.

<<less
Download (0.06MB)
Added: 2007-04-06 License: MPL (Mozilla Public License) Price:
934 downloads
No-Referrer 1.0.1

No-Referrer 1.0.1


No-Referrer is a Firefox extension that adds an entry to the context menu that lets you open a link in a new tab more>>
No-Referrer is a Firefox extension that adds an entry to the context menu that lets you open a link in a new tab, without sending the referrer information.

<<less
Download (0.003MB)
Added: 2007-07-30 License: MPL (Mozilla Public License) Price:
820 downloads
Add to Noatun playlist

Add to Noatun playlist


Add to Noatun playlist is a service menu that can add files to the Noatun players playlist. more>>
Add to Noatun playlist is a service menu that can add files to the Noatun players playlist.

<<less
Download (MB)
Added: 2006-11-24 License: GPL (GNU General Public License) Price:
624 downloads
2006 Netmite Communities 2.2

2006 Netmite Communities 2.2


2006 Netmite Communities is an web2.0 application. more>>
2006 Netmite Communities is an web2.0 application. Its more than an IM tool. This extension allows you to connect with all other users who are also accessing the same web site or web page. Allow you to comment and review any web page - you can write down any...
2006 Netmite Communities is an web2.0 application. Its more than an IM tool.It allows you to connect with all other users who are also accessing the same web site or web page. Allow you to comment and review any web page - you can write down any thing about any web page, you can criticize any web page while you are reading their web site. You can also discuss with anybody else who is also accessing that web page, asking for help or help others ! Come and create a community of ourselves.
Main features:
- Real time chatting
- Post Comments for any Web page
- Read comments from others who has visited the same site
- Comments from others (Bloggers and community users)
- Vote and Rank Web pages
- Real Time chat/discussions with Others
- Support multi languages, such as Chinese, Japanese, French, Germany, Spanish...
- Taggings/Sticky Notes for any web page
- Write and share Blogs
- Social Bookmarking
- Manage your own privacy
- Add emotion icons in Chat room
- Private Chat
- Show the timestamp of chat
<<less
Download (0.047MB)
Added: 2007-05-02 License: MPL (Mozilla Public License) Price:
907 downloads
flickr-karamba 0.1

flickr-karamba 0.1


Flickr-karamba will automatically download pictures from Flickr.com and show them on your Desktop. more>>
Flickr-karamba will automatically download pictures from Flickr.com and show them on your Desktop. They are filtered with tags(you can search for serveral tags, sepperated by comma [beach, snow]).

In this early version, you can only see public photos. Oh, and please be aware: python+flickr api=slooow performance...

Requires:
- Python Imaging Library

flickr-karamba uses flickr.py

And now enjoy my first superkaramba theme, and feel free to post bugs/comments.

<<less
Download (0.013MB)
Added: 2006-06-23 License: GPL (GNU General Public License) Price:
1220 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5