Wikibooks:Reading room/Assistance

From Wikibooks, the open-content textbooks collection

Jump to: navigation, search
Replacement filing cabinet.svgArchivesReading rooms
Assistance Discussions Requests Proposals
General | Technical | Administrative (Usurps/Renaming) General | Projects Deletion | Undeletion | Import | Permissions | Features Featured books | Policies/Guidelines

[edit] Help Book Knowledge Level

Being an MS Access and SQL programmer, I began organizing the Microsoft Access book, to which I intend to contribute as time permits. However, I don't know what user knowledge level do I write to? Also, I specialize in a specific version of the software, and the page title is too general. Any direction would be greatly appreciated. Ineuw (talk) 21:10, 12 October 2009 (UTC)

See what content is there, what content you are capable of submitting (or merge from other sources), post something on the talk page and establish a scope for the project, see if it can be better referenced with a new title (propose the new title on the book talk page and if not opposed request a title change on the administrative assistance forum).
Keep in mind that Wikibooks aren't restricted by space not even by the format they present here and the finalization of a project is near utopian. By definition Wikibooks are always open for editing (you can establish static versions and upload them as PDFs, but few examples exist). A static copy of a version of a Wikibook could be moved to Wikisource after someone publishes it. --Panic (talk) 02:37, 13 October 2009 (UTC)
Panic24,thanks for the advice. Ineuw (talk) 21:57, 13 October 2009 (UTC)

[edit] Mandarin Chinese Grammar for Pimsleur Students

I figured that I will not finish this book. It is the whole concept of the book that I dislike, so I wouldn't even want to leave it to someone else to finish. I would like to have the book deleted, and leave tabula rasa for the potential creation of a general Chinese grammar book (which makes more sense to me than a grammar book that only caters to Pimsleur students). If this is okay, I would tackle the deletion within the next days. Stilfehler (talk) 13:40, 14 October 2009 (UTC)

In theory, if you are the only contributor to the book, you can tag it with {{delete}} and it can be speedy deleted. Given the amount of content, the "speedy delete" might be declined, in which case you should request the deletion at votes for deletion. Unusual? Quite TalkQu 20:36, 18 October 2009 (UTC)
The main problem with the concept of the book is probably that you have to avoid copyright issues: systematically citing examples from a commercial language course would probably be a copyright violation. This might also be a good reason to delete the book. --Martin Kraus (talk) 08:30, 19 October 2009 (UTC)
Thank you! Stilfehler (talk) 13:26, 19 October 2009 (UTC)

[edit] Get Browser to remember where I left off reading - How to?

I checked FAQ and reading room. I found nothing on this subject so far.

I am actively working my way through a how-to book with many chapters. How can I tag or bookmark where I leave off reading within the tools available on Wikibooks. I know I can bookmark a page with my browser or google bookmarks, but I keep having to reset this every time I am forced to stop reading by other demands on my time.

Is there a better way to get Wikibooks, on log in, to remember (i) what I am actively reading and (ii) where I left off? If this is explained already somewhere, sorry I missed it. Ashokdad (talk) 12:42, 19 October 2009 (UTC) ashokdad, 10/19/09 ~8:45 AM Eastern US time.

To understand why it is difficult, let us look at the nature of the interface to Wikimedia products, like this wiki. You page through the book, by pressing links that move you from page to page within the book. These links, in turn, are similar to HTML anchors, in that they contain only the information on which page you have selected. Your browser can therefore buffer only the page URL, and if you bookmark it, it can return you only to the page you were reading. Books with long pages, will tend to demand more from the reader, because they will cause the reader to have to window down the page to the area where they were reading, in much the same way you have to scan the page of a book you have put down, in order to find where on the page you left off.
If there is a printable version or an PDF version of the book, your problem can be solved by downloading the printable version or PDF to your home computer where you can leave it running in its own window, and only have to scan the screen to find where you left off. For the PDF a free PDF reader is available from Adobe, which you will find invaluable if you want to read lots of books, and articles.--Graeme E. Smith (talk) 15:19, 31 October 2009 (UTC)
It depends on the article/book but if the article you're reading is divided into lots of sections then you could simply bookmark the section each time as each section contains the URL for that article but also an anchor to the section.--ЗAНИA Flag of Italy.svgtalk 00:38, 5 November 2009 (UTC)

[edit] plz i need solution

Write a C++ program to implement employee directory, which will let the organization to perform the following functions:

1) Insert the record of new employee 2) Delete the record of an existing employee 3) Find the record of an existing employee 4) Display Report

Following information of each employee will be stored

Employee ID: an integer value to store the unique id for each employee Employee Name: the name of each employee. Employee Address: Address of each employee Employee Salary: a float value to store salary of each employee.


Hint:


Following information of each employee will be stored

Employee ID: an integer value to store the unique id for each employee Employee Name: the name of each employee. Employee Address: Address of each employee Employee Salary: a float value to store salary of each employee.

You can use the following structure to store the information of a single employee:

Struct Employee {

Int empID; Char *empName; Char *empAddress; Float empSalary; Employee * pNext; }Following is the sample interaction:

Welcome to <company name> employee directory:


1) Insert New employee 2) Find employee 3) Delete a record 4) Display Report 5) Exit Enter your choice: 1

Enter EmpID: 1 Enter EmpName: Ali Enter EmpAddress: VU, Lahore Enter Emp Salary: 20000 Record successfully inserted (Press any Key to continue….)

After the user presses any key the screen will be cleared and the menu will be displayed again.

Welcome to <company name> employee directory:

1) Insert New employee 2) Find employee 3) Delete a record 4) Display Report 5) Exit Enter your choice: 3 (Now user enters 3) Enter EmpID: 1 Record successfully deleted (Press any key to continue…) After user presses any key the screen will be cleared and menu will be displayed again.

Welcome to <company name> employee directory:

1) Insert New employee 2) Find employee 3) Delete a record 4) Display Report 5) Exit Enter your choice: 2 (Now user enters 3) Enter EmployeID: 1 Employee successfully deleted (Press any key to continue…) After user presses any key the screen will be cleared and menu will be displayed again

Welcome to <company name> employee directory:

1) Insert New employee 2) Find employee 3) Delete a record 4) Display Report 5) Exit Enter your choice: 4 (Now user enters 4)

EmpID EmpName EmpAddress EmpSalary 2 Raza VU, Lahore 20000 3 Waseem VU, Lahore 25000 5 Aslam VU, Lahore 20000

Press any key to continue… After user presses any key the screen will be cleared again and menu will be displayed

Welcome to <company name> employee directory:

6) Insert New employee 7) Find employee 1) Delete a record 2) Display Report 3) Exit Enter your choice: 5 (Now user enters 5) Are you sure, you want to exit(y/n) y Program exited if user presses “y” and menu will be displayed again if user presses “n”

This looks like a standard assignment for a student of a C/C++ computer course. It would do you no good, if I was to do the assignment for you, as a student it is your duty to yourself to attempt to program this assignment using the information presented previously in the course. What you don't learn how to do on your own, will come back to haunt you when you attempt to do something even more complicated.--Graeme E. Smith (talk) 15:24, 31 October 2009 (UTC)

[edit] I am a new commer

I have some doubts regarding differential equations. could you please try to solve my proble.

I dont know how to write the problem here

Hello. Unfortunately we do not have a system setup to offer people help with specific subject matter. I might suggest the wikipedia help desk, or perhaps the #math IRC channel on irc.freenode.net. If you have a specific doubt about something written in one of the books here that is something that can be discussed here on on the books talk page.
If you want to ask a question that involves some mathematics (on any of the wikimedia pages) you can place LaTeX code between <math>...</math> tags. For example to make a formula like \int x^2\,dx=\frac{x^3}{3}+C you would include the code <math>\int x^2\,dx=\frac{x^3}{3}+C</math> If your unfamiliar with latex you can find some examples of commands that yeild useful symbols at m:Help:Displaying a formula. Thenub314 (talk) 10:10, 2 November 2009 (UTC)

For homework tips, and support for highschool students, you might want to try the wikiversity at en.wikiversity.org and search for your level of education (secondary school) or (University) I am aware of a project that allows you to ask your questions and get actual teachers to answer them. Unfortunately I don't know the page name or I would direct you there. --Graeme E. Smith (talk) 14:19, 2 November 2009 (UTC)

[edit] thank you

Hello Wiki I am so please with this site,I am learning slowly on gettting round on the site, I am studying Introduction on canine pysychology Are there any books out there on this subject, Thank you again jancroucher1@hotmail.com

[edit] Q:

A few questions:

  1. Is there any quick way to access book-specific templates without having to write the book name every time?
  2. Help:Wikibooks for Wikimedians (which is far too wp-centric in my opinion) says "Wikibooks use wikilinks conservatively". Does this mean that, for example, language wikibooks containing links to Wiktionary are a bad idea?
  3. What are the extra buttons ("untagged" and "unlicensed") for?
  4. Is this even the right place to ask these?

Thanks. --Yair rand (talk) 22:34, 26 November 2009 (UTC)

Thanks for coming by Wikibooks! I'll try to provide some insights.
  1. If your book's name is a long one and you start out your templates with the book's name, followed by a slash, you can use {{BOOKTEMPLATE}} as a shortcut notation. For example if you have Wikijunior:Solar System, you can call Template:Wikijunior:Solar System/Coolfacts using {{{{BOOKTEMPLATE}}/Coolfacts}}. Wikibooks sometimes has to find workarounds for methods better suited to an encyclopedia in the wiki software.
  2. Wikibooks tries to define terms within the book they are used, making it easier to print out a book as a self-contained item. Links to external websites make it more difficult to have a complete printed textbook and also take users off-site rather than keeping them here. Keep in mind this isn't a policy. True, too many things are wp-centric in the Wikimedia world, including the Mediawiki software itself, but we can't really avoid the 600 lb (kg) gorilla that is Wikipedia. It's expected that most people will be coming here with preconceptions formed by Wikipedia.
  3. Those buttons link to some toolserver tools that check for images without proper licensing information on their image pages. Last time I checked, one of them didn't even work, and the other I don't really use because there are so few uploads, so I simply disabled them by checking the "Remove Image Tools" option on the gadgets tab of my preferences.
  4. It's the perfect place to ask these.
-- Adrignola talk contribs 01:19, 27 November 2009 (UTC)

[edit] New Comer with a question.

I've used Wikipedia for years, and have been doing so more frequently. I became interested in the parent organization and through that became acquainted with the other projects of the Wikimedia Foundation. It's underlying ideals thus thoroughly snared my interest. I being an avid book-reader and a high school student, naturally migrated here. Where I am commencing studies on building and understanding computer hardware.

And so my question:

Is there a way to flag areas in books necessitating further research? I am perfectly willing to do that research myself, but as I don't have all that much time, I thought it would be more effective to at least note those areas first, for my and other's gain.

Thanks, Isimbot (talk) 19:06, 5 December 2009 (UTC)

You can use the template {{TODO|This, that and something else is missing.}} or just the talk pages. --Panic (talk) 21:21, 5 December 2009 (UTC)