Sponsored Content
Full Discussion: New section
Contact Us Post Here to Contact Site Administrators and Moderators New section Post 4496 by Neo on Tuesday 24th of July 2001 03:38:47 PM
Old 07-24-2001
I think the chances are pretty good.! I will start a new section called something like "FAQ: The Best Posts of UNIX.COM" and with subsections appropriately made. We will copy some of the best posts on many subjects to that section and lock the threads, as a FAQ. Structure TBD.

This will help keep the server faster so people don't have to search too much .... and try to think of clever key words (which can be helpful if English is not your native language.)

Great suggestion Smilie Thanks.

Please be patient and I'll start this when I have some time. Suggestions on threads to include welcome, of course!! If you have any particular threads you like that cover FAQ questions, please post them here.
 

10 More Discussions You Might Find Interesting

1. Post Here to Contact Site Administrators and Moderators

New Section

Just like we have a section "Unix for dummies..." , why not have a section on UNIX BACKUP AND RECOVERY Thanks :) (3 Replies)
Discussion started by: kapilv
3 Replies

2. Post Here to Contact Site Administrators and Moderators

Windows section?!?

Since when did unix.com become unixandwindows.com? Just my opinion, but I think this forum should stick to what it does well: providing Unix knowledge. Is there any user preference for ignoring a particular topic section? (4 Replies)
Discussion started by: PxT
4 Replies

3. UNIX for Dummies Questions & Answers

what is Critical section is all about?

what is a critical section?why multipleprocesses or multiplethreads cant be given a chance to access the critical section? please explain me with an example. thanks (3 Replies)
Discussion started by: compbug
3 Replies

4. OS X (Apple)

apple section

Why I can see 3 from 80 topics in apple section? (1 Reply)
Discussion started by: kezzol
1 Replies

5. Post Here to Contact Site Administrators and Moderators

New section

Hi Just a thought if it already hasn't been suggested. While looking at the forums I thought it might be a good idea under somewhere like 'special forums' add a section called 'projects'. I think this would be good for people to be able to post projects they have created. For example I am... (3 Replies)
Discussion started by: woofie
3 Replies

6. Shell Programming and Scripting

Extract section of file based on word in section

I have a list of Servers in no particular order as follows: virtualMachines="IIBSBS IIBVICDMS01 IIBVICMA01"And I am generating some output from a pre-existing script that gives me the following (this is a sample output selection). 9/17/2010 8:00:05 PM: Normal backup using VDRBACKUPS... (2 Replies)
Discussion started by: jelloir
2 Replies

7. Shell Programming and Scripting

how to get one particular section (using awk)?

Hey, I have a problem about how to get one section of a file? I'm new to shell, but by reading some tutorial, I think I can use awk to do this. my input file: >ref|ZP_04937576.1| ECRINAEDPKTFMPSPGKVKHFHAPGGNGVRVDSHLYSGYSVPPNYDSLVGKVITYGAD DEALARMRNALDELIVDGIKTNTELHKDLVRDAAFCKGGVNIHYLE... (11 Replies)
Discussion started by: ritacc
11 Replies

8. Shell Programming and Scripting

remove <br> not in section

I need to remove the <BR> from all sections of a page, except what is between a section of text: #!/bin/sh sed ' /Testing Considerations/,/<B>PT# - Description:/ ! { s/<BR>// } ' But this isn't working. I'm not using the ! operator correctly, can someone... (2 Replies)
Discussion started by: dba_frog
2 Replies

9. Shell Programming and Scripting

Prepend first line of section to each line until the next section header

I have searched in a variety of ways in a variety of places but have come up empty. I would like to prepend a portion of a section header to each following line until the next section header. I have been using sed for most things up until now but I'd go for a solution in just about anything--... (7 Replies)
Discussion started by: pagrus
7 Replies

10. Shell Programming and Scripting

How to Grep of by section?

I have a script that outputs this as a file John Smith ---------------- memberOf: example1;sampletest;test memberOf: example2;sampletest;test memberOf: example3;sampletest;test memberOf: example4;sampletest;test A Member of 4 Groups Sally Smith ---------------- memberOf:... (4 Replies)
Discussion started by: ajetangay
4 Replies
Graph::FAQ(3pm) 					User Contributed Perl Documentation					   Graph::FAQ(3pm)

NAME
GD::Graph::FAQ - Frequently asked questions DESCRIPTION
I get errors like "Can't call method METHOD on an undefined value". What gives? You probably had an error somewhere, most likely in the plot() method, and you didn't check for it. See the section on Error Handling in the documentation for GD::Graph to find out how to deal with this sort of thing, and how to get more information about what the error was. I am drawing a bar chart, and the chart area is a lot smaller than the image. What is going on? As of version 1.30, GD::Graph automatically corrects the width of the plotting area of a chart if it needs to draw bars (i.e. for bars and some mixed charts). This is necessary, because rounding errors cause irregular gaps between or overlaps of bars if the bar is not an exact integer number of pixels wide. If you want the old behaviour back, set the correct_width attribute to a false value. I have my data in some format that doesn't look at all like the array that I am supposed to give to GD::Graph's plot method. Do I really need to mess around with array references? Not necessarily. Check out the GD::Graph::Data class. How do I stop those pesky accents appearing around bars or inside area charts? You can set the "accent_treshold" option to a large enough value (larger than your chart). Alternatively, you may like it better to set the "borderclrs" attribute to be the same as the dclrs one. I'll probably include an option in a future version that gives better control over this. Where is the ActiveState ppm of GD::Graph? Ask them. I have asked them, but didn't get an answer. I don't know what to do to get it included in their set of ppms, and I really do not have the time to keep asking them. I believe that GD::graph has finally made it into ActiveState's ppm archive. However, I am going to leave this question here in case they get behind again. Do you have some example code for me? The distribution has a large set of examples in it. If you don't have the original distribution, please get it from CPAN (http://www.cpan.org/ or some local mirror). Will you support X or Y? If you send me a patch that (in a decent manner) adds the functionality to the latest version, I may very well add it for the next release. If you don't send me a patch, but just a question, you will have to be patient. (Please also see the section on bugs in the main body of GD::Graph.) Why does export_format give me a weird string, instead of just 'png' or 'gif'? As of version 1.31, export_format in a list context returns all formats that GD can export. If you are only interested in the answer 'gif' or 'png', make sure that you call it in a scalar context. $export_format = GD::Graph->export_format; $export_format = $graph->export_format; print "Export format is ", scalar $graph->export_format, " "; print "Export format is " . $graph->export_format . " "; @export_formats = $graph->export_format; TrueType fonts don't work when I use GD::Graph from a CGI program. When your programs run as CGI, they typically do not have the same environment as when you use them from the command line. The Perl FAQ, section 9, has some information on this. It is also not guaranteed that your script runs from the directory that it is in. It is probably better to include something like: use GD::Text; GD::Text->font_path("/path/to/my/font_dir"); See the GD::Text documentation for more information about font paths. I'm trying to use GD's builtin fonts, but it's not working. Most likely, you are using the font short name, like gdGiantFont or gdMediumBoldFont, and you have not put a "use GD" in your program. This is needed, because these short names need to be exported into your name space by the GD library: use GD; # ... $graph->set_x_axis_font(gdMediumBoldFont); If you don't want to include the GD library, you can use the longer alternative names (which is what I'd recommend anyway): $graph1->set_x_axis_font(GD::Font->MediumBold); If you "use strict" then you will actually get an error message if you try to use the short names without including the GD module. Also see the GD::Text documentation for this information. When I have many data sets, some end up having the same colour. The default number of colours for data sets is seven, so if you use more than seven data sets, those colours will be re-used for the higher data sets. This is described in the entry for the "dclrs" attribute in the GD::Graph documentation. Can you tell me how to do X? Not necessarily (X might be kind of complicated, after all). Did you look in the samples for something similar? If not, you're probably best off seeing if you can get help from a group of people, rather than one or the other of the overworked individuals whose e-mail addresses are shown below. If you're more comfortable with asking a newsgroup for help, the canonical resource is <comp.lang.perl.misc>; if you prefer web forums, there is a good one at <http://www.perlmonks.org>. In either case, if you are not familiar with the forum and its denizens, you might wish to read the following helpful guide before posting your question: http://www.perlmonks.org/?node_id=172086 Can you fix this bug I've found? Well, I hope so. Please see the "BUGS" section in the main body of GD::Graph for the best way to report it. AUTHOR
Martien Verbruggen <mgjv@tradingpost.com.au> Current maintenance (including this release) by Benjamin Warfield <bwarfield@cpan.org> (c) Martien Verbruggen. All rights reserved. This package is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.12.3 2007-04-26 Graph::FAQ(3pm)
All times are GMT -4. The time now is 12:54 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy