Questions tagged [manual]

a technical communication document intended to give assistance to people using a particular system

A user guide or user's guide, also commonly known as a manual, is a technical communication document intended to give assistance to people using a particular system.

Wikipedia article

400 questions
3
votes
1 answer

history.scrollRestoration = "manual" doesn't prevent Safari from restoring scroll position

Suppose you set window.history.scrollRestoration = "manual" on a webpage. In Chrome/Firefox Whenever you click an anchor, the page scrolls to the linked element's position, and whenever you go back/forward through history, the scroll position…
Cristian Davide Conte
  • 1,231
  • 1
  • 8
  • 25
3
votes
2 answers

Where can I find Refrence manuals for SQL and PLSQL

Are there any Manuals available,which cater to the needs of SQL and PLSQL developers in the industry. I tried to search,but I found nothing like that of of equal to PHP's manual quality in .chm Format. So, can anyone give me or share their useful…
parmanand
  • 468
  • 2
  • 7
  • 18
3
votes
2 answers

svn --incremental: How to use it and what it does?

I've been looking at SVN manuals but unable to find out simple usage examples or explanations of the "--incremental" option for "svn log" and "svn st". I'm writing an open-source SVN GUI front-end so I need some basics about the usage of this…
Simon
  • 183
  • 2
  • 7
3
votes
2 answers

What are the supported editing commands for the GNU APL line editor (∇-editor)?

The GNU APL documentation on the line editor seems to assume one already knows how to use it. I only see mention of what commands/syntax '... are not fully supported in GNU APL'. Compare with the documentation of Dyalog's APL ∇-editor, or…
Russtopia
  • 31
  • 1
3
votes
0 answers

Jenkins delivery pipeline view -how to add manual trigger(play button)?

I am trying to connect/achieve below things: Pipeline having job with multiple stages and tasks Configure above pipeline with Delivery view plugin Last task of last stage is to deploy to production [caution: want this task with manual…
3
votes
1 answer

View C Documentation within VSCode?

During my workflow, I frequently have to switch from the VSCode window to a terminal in order to pull up a man page on stdlib function or similar. I'm looking for a way to cut down the on the inefficiency of this process. This would seem to be a…
Markhor
  • 31
  • 1
3
votes
1 answer

memset manual description: int type or constant byte?

I have a question regarding memset and its manual's entry. Here is what I can see in the manual for memset: void *memset(void *s, int c, size_t n); [...] DESCRIPTION The memset() function fills the first n bytes of the memory area …
m.raynal
  • 2,983
  • 2
  • 21
  • 34
3
votes
2 answers

Why are php errors linked?

Just a curious question. I noticed that when you generate a non fatal php error, Warning: implode() [function.implode]: Invalid arguments passed in... but the links are nonsense. If they are going to link it…
Hailwood
  • 89,623
  • 107
  • 270
  • 423
3
votes
3 answers

How can I read the docstring/help of a python module from cmd?

Consider that you are in the Windows command prompt or similar command line environment. How can you get info about a Python module from its docstring printed to the console?
noumenal
  • 1,077
  • 2
  • 16
  • 36
3
votes
2 answers

ggplot legend - scale_colour_manual not working

I am trying to add a legend to my graphs, but nothing ever shows up. This is the code I have: ggplot(main, aes(x = ceiling(session/2))) + geom_line(aes(y = C_overall), colour = "blue", stat = "summary", fun.y = "mean") + geom_line(aes(y =…
3
votes
2 answers

How to link library to compile/install a Perl module manually?

I want to compile/install a Perl module that depends on a library that is not in Strawberry Perl 5.12. I used Strawberry on a Windows box to install the module (Net-SSH2). The installation failed because it requires the library (libssh2). My issue…
Martin08
  • 20,990
  • 22
  • 84
  • 93
3
votes
1 answer

Create pandas dataframe manually without columns name

I would like to create the following dataframe without columns names import pandas as pd df = pd.DataFrame([0,423,2342],[12,123,1231], [1,3,5]) I get back an error TypeError: unhashable type: 'list' What am I doing wrong? I also tried {}, but it…
user1700890
  • 7,144
  • 18
  • 87
  • 183
3
votes
1 answer

Using kappa coefficient to evaluate results of crowd sourcing

I have 4 sets of manually tagged data for 0 and 1, by 4 different people. I have to get the final labelled data in terms of 0 and 1 using the 4 sets of manually tagged data. I have calculated the degree of agreement between the users as A-B :…
bronn
  • 31
  • 6
3
votes
2 answers

How to get Getopt::Long + pod2usage working?

I'm about to go nuts so here I am :) I'm trying to make documentation for my Perl program, but I never manage to get Getopt::Long and pod2man working. Here is a simple program I wrote for testing purpose: #!/usr/bin/perl use strict; use…
gr0bz
  • 189
  • 1
  • 2
  • 11
3
votes
4 answers

How can I find all R packages that include graphics functions?

I always have difficulty in finding all available alternative ways to produce a specific graph, either one that I have already decided to use (looking for different variations) or one that I have not yet thought of. The R Graphical Manual site…
gd047
  • 29,749
  • 18
  • 107
  • 146