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
0
votes
2 answers

Create a new workbook copying some data with macro

In my worksheet, containing over 2k Rows, I need to create a macro that would automatically open another file, and then would copy some of the data from the first worksheet in the selected row to specific cell in the newly created/opened file I've…
nicmdm
  • 1
  • 5
0
votes
1 answer

Create Infobubble in Taskbar Java

i would like to know if there is a possibility to generate an Infobubble in the taskbar like in the picture. So, if something is happening in my Java program then show the Infobubble. Is this possible in Java? Thanks for Answers!
D.Schall
  • 53
  • 6
0
votes
0 answers

How to get info() displayed when my Pandas dataframe has many columns?

I have a Pandas dataframe with many columns (100+) I find it difficult to get detailed information about the columns data types using the .info() method from my Jupyter Notebook: data_grp.info() Int64Index:…
user8270077
  • 4,621
  • 17
  • 75
  • 140
0
votes
1 answer

'init' is unavailable: use 'withMemoryRebound(to:Capacity:_)' UnsafeMutablePointer

I want to use this Swift 2 code in Swift 3 and 4: func getLocalIP() -> String { var address = "error" var interfaces : UnsafeMutablePointer? = nil var temp_addr : UnsafeMutablePointer? = nil var success : Int32 = 0 …
codiac
  • 71
  • 8
0
votes
1 answer

Are postgresql RAISE messages stored somewhere?

Specifically I want to see if I can retrieve RAISE INFO messages that I use to see progress in the console. Are these stored somewhere in pg?
Kenobi
  • 465
  • 6
  • 13
0
votes
1 answer

Using fscanf in Matlab to read data with some missing info from a text file

I have a text file whose content is like this: 0.00316047 0.00189992 0.00186791 0.00170366 0.00145677 0.0020697 0.00316047 0.00287378 0.00226645 1 85.1637 44.9496 59.0738 74.457 82.4159 {} 51.9875 54.7822 85.1637 1 I…
Reza
  • 11
  • 6
0
votes
1 answer

Pulling Device Info from mobile application

I have the following code: import { put } from "redux-saga/effects" import { actions, AppStrings } from "common" const DeviceInfo = require("react-native-device-info") interface CheckIosVersionAction { readonly type: "CHECK_IOS_VERSION" …
FileasFogg
  • 93
  • 2
  • 2
  • 13
0
votes
1 answer

get OSC info back from the server

I am using pyOSC and trying to get data from the OSC server back to the client. One of the default handlers is for '/info'. In the OSC code I see the following comment in serverInfo_handler: a Message-handler function may return None, but it…
zappfinger
  • 497
  • 2
  • 5
  • 15
0
votes
1 answer

How to write to a file if DB connection fails

I have the below Python script and it works very well, but I would like to introduce some fail safe options .. That fail safe options being .. 1) if I cannot find (in this example) Michael I would like to write to the file ERROR .. 2) If the…
user9576045
0
votes
0 answers

How to get space Information of Usb conneted Device

I have a an android Setup Box in which 2gb internal Memory available and 8 gb external memory available and device has slots for connect USB device. I wanted to get Memory information of connected USB Device. Suppose i have connected more then one…
Deepak
  • 21
  • 6
0
votes
1 answer

Emacs Info manual error "No such node or anchor: Top"

While trying to follow links from main Info page (C-h i then RET on the topic) or trying to open any Info file directly (C-u C-h i), I get the following error: No such node or anchor: Top I'm using emacs-25.3_1 for Windows. Everything was working…
BradyM
  • 31
  • 5
0
votes
1 answer

What is the analogous of the describe() or info() methods for a List in Python?

Given a list I would like a way to explore its contents. len() will give me the number of items in the list but how I could go further than that? E.g. get information about the classes of the objects contained in the list and their size? This is a…
rf7
  • 1,993
  • 4
  • 21
  • 35
0
votes
1 answer

ReactJS: Passing data between child and parent

I can't figure out why I can't get data at my parent component. I have parent component - AddButton , and child component - AddTasktBox. I want to pass title from child to parent. Probably bad is in AddButton component - because browser is give me…
Klisiu
  • 9
  • 3
0
votes
1 answer

Postgres documentation in GNU Info format

Postgres is an open-source project and it has DocBook as default format for its documentation. At a first glance it looks like a tree of *.sgml files in the doc directory inside a repository. There are several pre-defined convertion output formats,…
Alioth
  • 595
  • 4
  • 11
0
votes
2 answers

Create info page for each restaurant with Ruby on Rails

I am trying to create an info page for each restaurant in a Ruby on rails app. I created an action info in Restaurant controller and added a line in routes.rb. but it gives an error "ActiveRecord::RecordNotFound in RestaurantsController#info"…
sevmilber
  • 7
  • 3