387 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
3
votes
0
answers
85
views
How creating a named destination with pymupdf
I want to merge PDF and keep the link to named destination. I'm able to recreate the link but in order that it works, I need also to have the named destination existing in the output PDF. I could do ...
2
votes
3
answers
82
views
How do I cross-reference listA with a named listB and extract the names of listB for which members of listA are within?
I am writing a function in R which allows for Differential Gene Expression data to be plotted while grouping different genes based on a user's interest. For example, GO terms contain genes that are ...
0
votes
0
answers
23
views
ERROR NAMED : resolver.c:7531: INSIST(query->fctx->rmessage->sitbad == 0 && query->fctx->rmessage->sitok == 0) failed
every 2-3 days I wake up with this error on named
``
295691 Feb 25 04:22:43 sql named[19604]: resolver.c:7531: INSIST(query->fctx->rmessage->sitbad == 0 && query->fctx->...
4
votes
1
answer
215
views
reading delimited text file into Lua table
I have a file, something of this sort (CSV, TSV: delimited text):
"col1","col2","col3"
"1","ab","6.5"
"4","df","9.7&...
0
votes
2
answers
199
views
Bind RPZ triggers are never matched [closed]
I have set up bind 9 (BIND 9.16.23-RH) on rocky linux 9.5 as a recursive DNS server, everything is working fine, beside RPZ policy.
Here is my named.conf:
options {
listen-on port 53 { 127.0.0....
1
vote
1
answer
209
views
Named Pipe security problem on some Windows clients
I'm using named pipe for a communication inside a C# process. The software is used on different Windows PCs. On some PCs my software is working and on some I get the following error:
"Some or all ...
0
votes
0
answers
23
views
How to change the componentA for componentA1 in a named router-outlet using a button in the componentA
I have the following application:
home.component.html:
<carrousel-component></carrousel-component>
<tab-menu></tab-menu>
In the tab-menu.component.html, which is a child of ...
0
votes
0
answers
46
views
Can bind9 (DNS server) be hooked? or create extension?
e.g. bind9 server is running at 127.0.0.1:
$ dig mytest.com @127.0.0.1
# got this result:
mytest.com A 1.1.1.1
Can I create an extension for bind9 to monitor the traffice? ( e.g. know there is ...
1
vote
1
answer
80
views
Access contents of a named Excel range which does not refer to a cell in VBA
I have created a named range, say "TestRange" in Excel which contains a formula in the "Refers to" box. It could be as simple as multiplying 2 cells together eg Refers to:=Sheet1!...
1
vote
2
answers
84
views
PHP can't access RNDC
I'm editing a zone file /var/named/rpz.local and need to reload rndc after I've done by this command:
cd /var/named
rndc reload rpz.local
everything is great with cli as root user but the problem is ...
7
votes
1
answer
2k
views
How can I create a typedef representing a Dart record with named fields?
I would like to define a typedef representing a Dart record with named fields but am not sure what the syntax would be.
The code below shows how to define the typedef Command representing a record ...
0
votes
1
answer
127
views
Operation based on names in Julia NamedArray()
I want to apply a conditional function on a NamedArray in Julia and the condition is based on the row/column names. I have problem with applying the condition on names. For example, consider
A = ...
0
votes
1
answer
90
views
How would I selectively print a set of named ranges in Excel based on a criteria in a cell
I have a set of named ranges that I want to print but only if a cell value is greater than 1 if cell value = 0 then the code needs to ignore that range and not print it at all.
I have no idea where to ...
1
vote
1
answer
429
views
How do I create a exported named function from a array of strings in a for loop?
Suppose I have made a function that I use to extract data.
This function would extract data from a json object.
This json object has the following type of structure:
[
"variable_name1",
...
-2
votes
1
answer
178
views
is it possible to use named functions with gspread?
I want to use a function on a cell with gspread, how does it work?
tried this:
cell_b2 = worksheet.COUNT(D3,E7).value
the function I want to execute using gspread
does not work