Sponsored Content
Contact Us Post Here to Contact Site Administrators and Moderators About Rules for Homework & Coursework Questions Forum Post 303029205 by Naky on Wednesday 23rd of January 2019 06:45:09 AM
Old 01-23-2019
About Rules for Homework & Coursework Questions Forum

Hi, in my case, I have a question for topics that are slightly dealt with in class, which I am investigating on my own but which are not directly related to the lessons.
Do I have to put the name of the school and others?
(I can't put the name of the professor because is against the school rules to share private details of person related to the school, which includes the name)
 

6 More Discussions You Might Find Interesting

1. Post Here to Contact Site Administrators and Moderators

suggested addition to forum rules

Possible new rule for the "forum rules" list: <UL> <LI>Include as many pertinent details as possible in your post. Useful information usually includes: Vendor and version of Unix you are using, hardware platform, kernel version (if applicable). For hardware related questions include model... (1 Reply)
Discussion started by: PxT
1 Replies

2. Post Here to Contact Site Administrators and Moderators

forum rules

i dont think this post is in the right section, but i couldnt really decide which one was appropriate, and this question seems simple enough, should normal users, ie non-moderators, tell other users if their post is in violation of the forum rules? like if a question is obviously a homework... (17 Replies)
Discussion started by: norsk hedensk
17 Replies

3. What is on Your Mind?

Forum rules

After reading the FAQ for the first time, I noticed Rule # 14 : :D:D:D Anyways, I hope to make more use of this forum in future, and also to help others. Regards Ook. :) (0 Replies)
Discussion started by: The_Librarian
0 Replies

4. Homework & Coursework Questions

Rules for Homework & Coursework Questions Forum

Homework Help: On Posting Questions: Any and all high school and undergraduate homework assignments or textbook style exercises for which you are seeking assistance are to be posted only in our Homework & Coursework Questions area--not in blogs, visitor messages, PMs, or the main technical... (0 Replies)
Discussion started by: Neo
0 Replies

5. Homework & Coursework Questions

Community Spirit and Ethos on Homework & Coursework

Helping students is in line with the "community spirit" ethos of The UNIX and Linux Forums which aims to give free help and advice in order to support the personal and professional development of others. We encourage students to think carefully about what they do, and do not, understand about... (0 Replies)
Discussion started by: Neo
0 Replies

6. Post Here to Contact Site Administrators and Moderators

2 questions about forum use

Hello 2 little questions 1) Is there a way to filter out posts so that only unanswered post appear ? 2) What is the Bits / Banking stuff for ? Thx in advance for your time & help ok i've found the answer to 1) (advanced search option) ... i have found some thread about 2) but nothing... (3 Replies)
Discussion started by: ctsgnb
3 Replies
Debian::Rules(3pm)					User Contributed Perl Documentation					Debian::Rules(3pm)

NAME
Debian::Rules - handy manipulation of debian/rules SYNOPSIS
my $r = Debian::Rules->new('debian/rules'); my $r = Debian::Rules->new( { filename => 'debian/rules' } ); $r->is_dh7tiny && print "Using the latest and greatest "; $r->is_quiltified && print "quilt rules the rules "; # file contents changed externally $r->parse; $r->add_quilt; $r->drop_quilt; $r->write; # or undef($r); DESCRIPTION
Some times, one needs to know whether debian/rules uses the debhelper(1) 7 tiny variant, or whether it is integrated with quilt(1). Debian::Rules provides facilities to check this, as well as adding/removing quilt integration. Modified contents are written to file either vie the "write" method, or when the object reference goes out of scope (via DESTROY). CONSTRUCTOR
"new" is the standard Class::Accessor constructor, with the exception that if only one, non-reference argument is provided, it is treated as a value for the filename field. If a file name is given, the constructor calls "read" to read the file contents into memory. One of filename or lines is mandatory. FIELDS
filename Contains the file name of the rules file. lines Reference to an array pointing to the rules file. Initialized by "new". METHODS
parse Parses the rules file and stores its findings for later use. Called automatically by is_dh7tiny and is_quiltified. The result of the parsing is cached and subsequent calls to "is_XXX" use the cache. To force cache refresh (for eample if the contents of the file have been changed), call "parse" again. is_dh7tiny Returns true if the contents of the rules file seem to use the so called tiny variant offerred by debhelper 7. Tiny rules are detected by the presense of the following two lines: %: dh $@ (any options on the "dh" command line ignored). is_quiltified Returns true if the contents of the rules file indicate that quilt(1) is used. Various styles of "quilt" integration are detected: dh --with=quilt quilt.make with "$(QUILT_STAMPFN)" and "unpatch" targets. add_quilt Integrates quilt(1) into the rules. For debhelper 7 tiny rules (as determined by "is_dh7tiny") "--with=quilt" is added to every "dh" invocation. For the more traditional variant, quilt is integrated vua quilt.make and its "$(QUILT_STAMPFN)" and "unpatch" targets. drop_quilt Removes quilt(1) integration. Both debhelper 7 tiny style ("dh --with=quilt") and traditional ("$(QUILT_STAMPFN)" and "unpatch") approaches are detected and removed. read [filename] Replaces the current rules content with the content of filename. If filename is not given, uses the value of the "filename" member. write [filename] Writes the in-memory contents filename. If not given, uses the value of the "filename" member. If "lines" points to an empty array, the file is removed. COPYRIGHT &; LICENSE Copyright (C) 2009, 2010 Damyan Ivanov <dmn@debian.org> This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 2 as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. perl v5.14.2 2012-01-15 Debian::Rules(3pm)
All times are GMT -4. The time now is 08:17 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy