Quick Reference (Notes) System Script


 
Thread Tools Search this Thread
Operating Systems Solaris Solaris BigAdmin RSS Quick Reference (Notes) System Script
# 1  
Old 07-23-2009
Quick Reference (Notes) System Script

This is a very useful tool for managing your personal notes. It parses all the text files in a directory and creates a menu to edit, search, views, etc.... Sample notes: http://www.bdragon.net/qrefdir.gz On the command line, if you pass it a string it will look for a note with that name to display and if it does not find a match it will then look inside the note. I wrote it on linux, work on Solaris with minor changes. Original location: http://www.bdragon.net/qref.html

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

4 More Discussions You Might Find Interesting

1. Web Development

Notes with Ravinder on Badging System Development Part II

Part II: Current PHP file Beta 73 Not Optimized: <?php $version = 73; $query = "SELECT * FROM " . TABLE_PREFIX . "user WHERE userid='" . $uid . "'"; $usertable = $db->query_read_slave($query); $modaluser = $db->fetch_array($usertable); $modaluser = gmdate("d F Y", $modaluser); $modaluser... (48 Replies)
Discussion started by: Neo
48 Replies

2. Shell Programming and Scripting

Perl de-reference code reference variable

Guys, May i know how can we de reference the code reference variable.? my $a = sub{$a=shift;$b=shift;print "SUM:",($a+$b),"\n";}; print $a->(4,5); How can we print the whole function ? Please suggest me regarding this. Thanks for your time :) Cheers, Ranga :) (0 Replies)
Discussion started by: rangarasan
0 Replies

3. Shell Programming and Scripting

How to add notes at the end of shell script

i was wondering how to add a notes section for the user to enter in a shell script, as my shell script is a menu based on configurations of hardware and software help is appreciated (4 Replies)
Discussion started by: zuberk
4 Replies

4. UNIX for Dummies Questions & Answers

glance quick reference

Hello all, I´m newbie using HP-GLANCEPlus. I readed the help screens provided but, I´m wonder if there are a user manual to use glance, or where can I find some usefull tips to use this tool better. Anybody have some information? Regards. (2 Replies)
Discussion started by: mig28mx
2 Replies
Login or Register to Ask a Question
WWW::Facebook::API::Notes(3pm)				User Contributed Perl Documentation			    WWW::Facebook::API::Notes(3pm)

NAME
WWW::Facebook::API::Notes - Facebook Notes SYNOPSIS
use WWW::Facebook::API::Notes; DESCRIPTION
Methods for accessing notes with WWW::Facebook::API SUBROUTINES
/METHODS base Returns the WWW::Facebook::API base object. new Constructor. create( %params ) The notes.create method of the Facebook API: $response = $client->notes->create( uid => $uid, title => $title, content => $content, ); delete( %params ) The notes.delete method of the Facebook API: $response = $client->notes->delete( note_id => $id, title => $title, content => $content, ); edit( %params ) The notes.edit method of the Facebook API: $response = $client->notes->edit( note_id => $id, title => $title, content => $content, ); get( %params ) The notes.get method of the Facebook API: $response = $client->notes->get(); DIAGNOSTICS
None. CONFIGURATION AND ENVIRONMENT
WWW::Facebook::API::Notes requires no configuration files or environment variables. DEPENDENCIES
See WWW::Facebook::API INCOMPATIBILITIES
None reported. BUGS AND LIMITATIONS
No bugs have been reported. Please report any bugs or feature requests to "bug-www-facebook-api@rt.cpan.org", or through the web interface at <http://rt.cpan.org>. AUTHOR
David Romano "<unobe@cpan.org>" LICENSE AND COPYRIGHT
Copyright (c) 2010, David Romano "<unobe@cpan.org>". All rights reserved. This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See perlartistic. DISCLAIMER OF WARRANTY
BECAUSE THIS SOFTWARE IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE SOFTWARE, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE SOFTWARE "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE SOFTWARE IS WITH YOU. SHOULD THE SOFTWARE PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR, OR CORRECTION. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE SOFTWARE AS PERMITTED BY THE ABOVE LICENSE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE SOFTWARE (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE SOFTWARE TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. perl v5.10.1 2010-03-13 WWW::Facebook::API::Notes(3pm)