Questions tagged [info]

GNU info is a software utility which forms a hypertextual, multipage documentation and help viewer working on a command line interface, useful when there is no GUI available.

GNU info is a software utility which forms a hypertextual, multipage documentation and help viewer working on a command line interface, useful when there is no GUI available. It allows software developers to provide more detail - and more sensible sectioning - than a manual page.

Here are some useful keystrokes for GNU info.

149 questions
1
vote
1 answer

WPF Dialog - Allow interaction with underlying windows

Is it possible with WPF to open a dialog (a new window) and keep the possibility to interact with the underlying main window? I imagine a help window that is placed next to the main window and doesn't block interaction. How could I easily check…
10ff
  • 813
  • 4
  • 16
  • 31
1
vote
2 answers

Android: how to make custom app info menu

I have an android application which works with httppost methods. It's a tablet application and i am using Android Version 4.0.4. I want to chance post url informaion from: Settings > Applications > MyApp's App Info menu. How can i create new…
WeyCell
  • 273
  • 1
  • 2
  • 12
1
vote
3 answers

Drupal modules .info file

Below is the code of my module's .info file. I created the module for 6.x and 7.x. If core = 7.x the module was working in Drupal7 not D6. In the same way if core = 7.x the module was working in Drupal6 and not D7. I want to create a module to work…
0
votes
0 answers

'dict' object has no attribute 'info'

so for context, I'm using SVD (single value decomposition) for EEG analysis. I'm trying to get the V^t component (ie component vs channel matrix) and have M (ie sample vs channel matrix) over all the samples for the experiment. TO provide a little…
0
votes
0 answers

How can I get a price of any item in a textbox when I write its name in a combobox beside it

I have a sales user form and it is divided to comboboxes and textboxes … and also I have an excel sheet contains all the details of the items like a warehouse inventory… How can I get a price of any item in the textbox when I write its name in a…
0
votes
0 answers

Information about transformer for image detection

I write this subject, about transformer for image detection, to obtain some information. I would like to apply transformers architecture to classify some images considering only two targets (0 and 1). Already I have dataset classified manually. I…
0
votes
0 answers

SDK for MediaTek and Documentation

How can we get (paying) the SDK for MediaTek MTK7526G/MTK7525 and courses about that? I need to customize router firmware with that chipset to that i only need the knowledge to uncompact and compact again to work in tbhis chipset…
0
votes
1 answer

$route.params.id dont want to give id data when clicking on drink. CocktailDB API, nuxt.js

Hello Im doing a simple cocktailapp to practice nuxt.js and axios with coktailDB API https://www.thecocktaildb.com/api.php. In drinks/index.vue I have listed all drinks with v-for. When clicking on a drink you get to drinks/_id/index.vue page where…
tocajossan
  • 41
  • 9
0
votes
0 answers

how to write a function dir_info(directory) which returns 3 values

(1) Number of files inside the directory (recursively) (2) Number of directories inside the directory (recursively) def dir_info(directory): nfiles = how many files inside directory? ndirs = how many sub directories inside directory? return nfiles,…
0
votes
0 answers

Python Selenium Chromewebdriver

I have just tried an old code of 2020 from this video (https://www.youtube.com/watch?v=ocweEorBrmU) of implementation in python of Selenium and Chrome drivers. When the program starts it gives lots of warnings of "deprecated version". (I also…
0
votes
0 answers

Please how can i get the summary infomation of each object?

Please how can i get the summary infomation of ? in Index(['Program Number', 'Program Type', 'Program Facility Name', 'Site Class', Counties 2'], dtype='object') For instance, I want to get the list of different program type
0
votes
1 answer

How to see basic info about git repos which are in subfolders of the current one?

Given I'm in "c:\", I want to see some basic info about git repos, which are located in subfolders of my current location. Branch name, origin and state (has changes or not) are enough. I'd highly appreciate a command or a script that does it. Here…
Azamat S
  • 71
  • 1
  • 3
0
votes
1 answer

Can I get a captured image from the Android device information screen?

Intent setting = new Intent(Settings.ACTION_DEVICE_INFO_SETTINGS); You can display the Android device information screen with the above code. But when I run the code that captures the screen and saves the image, I get nothing. I think this is for…
0
votes
0 answers

Make averages from different files

I have a database (well 10 files .txt within a folder) with 10 different student's infos. I need to take out all 10 final notes form each of them to make an average within a textbox.text (in C#) when I click a button. Actually I have 10 files now…
0
votes
1 answer

My logger will not log one of my log levels.(dealing with logging)

My GitHub is WalthrustN. In a path = my_Python_project/Logging/HelperLog.py, I am trying to figure out why the code doesn't log info levels to the console. Its weird because it logs all other levels + when I import the file with another project. It…