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
0
votes
1 answer

Error installing Let's Encrypt on nginx server

I am trying to install a Let's Encrypt SSL certificate across four sites: mysite.com es.mysite.com fr.mysite.com de.mysite.com I ran the following command: certbot --nginx -d mysite.com -d www.mysite.com which worked fine for mysite.com,…
ackers
  • 1
  • 3
0
votes
1 answer

Logical error in manual sorting algorithm

I am trying to sort a list of numbers through algorithm instead of using .sort() function. The logic works fine when no integer is repeated inside the list but would not work properly if the list has two or more same integer. for eg. it algorithm…
hurat
  • 19
  • 1
  • 4
0
votes
2 answers

Creating a text file that serves as a manual for commands in Unix

Is there anyway to create a textfile that functions the same way the man command works in unix? Essentially creating a formatted textfile that serves the same purpose as the manual from Unix. Is there anyway that I could use the grep or sed command…
0
votes
1 answer

URL for installing Drupal

I am trying to install Drupal using this manual. I am stuck at the following step: Open your browser and navigate to your Drupal file path, you will see the first Drupal installer screen as shown in the following image. In our case the path is…
oobarbazanoo
  • 397
  • 1
  • 5
  • 15
0
votes
0 answers

Python tqdm progress bar total progress as input

This isn't really a question, but improvement of code, and may help others out either way since I already figured a simple workaround. I was wondering how I can give the progress bar from the module "tqdm" the total input, instead of the increments…
johnabro
  • 81
  • 2
  • 9
0
votes
1 answer

Manual focusing using Seekbar for Camera2 API

I am developing a custom Camera App using Camera2 API and have tried to enable the manual focusing by a seekbar. I referenced several articles but am facing an error that may come from the my java coding. I saw a message of "error: unreported…
H. Yu
  • 1
0
votes
1 answer

Quartz update next fire time in db

Instead of deploying the entire application everytime. In my local testing is there a way to update the database table directly the quartz next fire time in db. Will it pick it up without restarting the server? And how to update the time. what…
nsarvesh
  • 37
  • 1
  • 2
  • 9
0
votes
2 answers

Programmer's Guide for Pic Microcontroller

I'm looking for programmer's guide for PIC16F1947 micro but so far couldn't find such manual. Is it available online? If yes, where can I find it? I've searched microchip.com and Google but didn't see such manual. By programmer's guide I mean a…
Donotalo
  • 12,748
  • 25
  • 83
  • 121
0
votes
1 answer

Is there anyway that I can mark a test case passed or failed from within the test case itself

If I am withing a test case in VSTS is there any way I can mark this test "Passed" or "Failed" without going back out to the Test Hub?
Bob M
  • 1
0
votes
0 answers

What is a practical, manual (pen & paper) method to generate a cryptographically-secure key for a one-time pad using natural text as a seed?

I thought I had found an answer to my question when I read this: link There, one of the posters effectively claims that your seed word's gematria mod 10 is a random number. In other words, sum the letters of a word, treating each letter as the…
0
votes
1 answer

Can't install LDAP Jenkins plugin

We have a RHEL 7 machine (3.10.0-862.9.1.el7.x86_64) with Jenkins and Java installed. Java is: openjdk version "1.8.0_181" OpenJDK Runtime Environment (build 1.8.0_181-b13) OpenJDK 64-Bit Server VM (build 25.181-b13, mixed mode) Our first issue is…
808mrb
  • 1
  • 2
0
votes
2 answers

inserting value without auto increment primary key in oracle

I have a table that has an id column but not primary key.They all manually added id's.So what I want to do is insert some values to that table but it requires id.How can i add id column specific values while inserting?
ekcb9
  • 13
  • 5
0
votes
0 answers

How to install apache in Raspberry without internet?

What happens is that I need to create an offline installer of Apache to run it on many Raspberry Pi, I downloaded several apache.tar files from the official page, however I couldn't carry out the installation manually. For instance, following the…
0
votes
1 answer

Instructions for using the PHP manual (specifically regarding default Boolean values)

I am writing some script which will utilize cURL, was interested whether I needed to explicitly set various options or whether they are set by default, and thus pulled up http://php.net/manual/en/function.curl-setopt.php. Often the manually will…
user1032531
  • 24,767
  • 68
  • 217
  • 387
0
votes
1 answer

JS slideshow - auto-play interrupting manual turn

i just made a simple slideshow which changes images automatically and also has manual option so you can go forward and backward with images when you want. Here is the problem: Auto function which changes the images is set to every 3 seconds. But if…