Newest Questions
24,178,852 questions
0
votes
0
answers
5
views
nvim restoring last cursor position
In macos, I have the following in my ~/.config/nvim/init.lua:
vim.api.nvim_create_autocmd("BufReadPost", {
callback = function()
local mark = vim.api.nvim_buf_get_mark(0, '"')
...
0
votes
0
answers
9
views
I am having a strange javascript result with array.includes() not finding a match
In the DOMContentLoaded event, I load a global variable with the entries in a datalist:
let dsoptions = document.querySelectorAll('datalist#fieldN_list option');
gList = Array.from(dsoptions)....
0
votes
0
answers
5
views
Model names not showing from a list using performance::compare_performance() in r
I am trying join two tables using the names of an extensive list of models, however when I use a list the name is replaced by a generic name. I have tried for a day to fix this, in general by using ...
0
votes
0
answers
6
views
Google Apps script calling Paypal Draft Invoice Creation - using their JSON, it still fails. Any idea why?
I am using Google Apps Script to try and generate a Paypal draft invoice in their sandbox. I've got my access token, and it's valid (Token expires in 32400 seconds". For the life of me, I ...
-1
votes
0
answers
14
views
Is there a way to move a Task Row via code
I want to know if it is possible to move a task's row position with the MS Project API without copy/paste.
So, for example, let's say I want to move the task on row 4 to row 10 with some custom code. ...
0
votes
1
answer
23
views
Finding unique 1D arrays and corresponding 2D index pairs in 3D array (with numpy)
I have a 3D numerical array X, of shape=(N,N,6); and a 2D logical array mask, of shape=(N,N). I would like to find all unique 1D subarrays (length=6, along axis=2) of X, searching over the first two ...
Best practices
0
votes
0
replies
5
views
Ceph erasure coding and fault tolerance in small cluster
I'm putting together a ceph cluster and I am somewhat stuck on choosing which EC values make the most sense for my pool. I only have 4 nodes, each with 4 disks and it will mostly be used for S3 (RADOS)...
Advice
0
votes
2
replies
10
views
Bluetooth on PC
How do I get Bluetooth Low Energy on my PC with Windows 10?
I'm trying to connect my iPhone 16 Pro Max to my Windows PC desktop, and in the settings, it's telling me that I need Bluetooth low-energy ...
0
votes
0
answers
21
views
Generate Lombok documentation using IntelliJ
I'm learning Java and I use IntelliJ as IDE. In the settings, I added the Lombok plugin.
and in Build, Execution, Deployment | Compiler | Annotation Processors
Enable annotation processing box is ...
Tooling
0
votes
2
replies
10
views
Programming Language Recommendation for Saas
What is the Lowest deployment cost programming language for Saas (For Business Software POS, ERP, Inventory Management) Web Applications. With Data Handlings and Reports generations. Database is ...
0
votes
0
answers
16
views
How to install software from Google Chromium/Android repos?
I once knew how to do this, but I am no longer able to. I have successfully built minijail0 from https://google.com/google/minijail.git, but running sudo make install results in this error message:
cd ...
Tooling
0
votes
0
replies
3
views
Tool to autocomplete `python -m` module calls for the Fish shell
Directly inspired from Command-line autocompletion for python -m module. Is there any extension to Fish shell that allows TAB-like autocomplete for python -m calls? In my case I only wish for it to ...
Advice
0
votes
0
replies
5
views
Do Github rules allow one to connect via SSH to their continuous integration machines?
I was wondering if Github rules allow me to connect via a reverse SSH to their continuos integration virtual machines and obtain a shell prompt in order to for example debug a failing release ...
-1
votes
0
answers
34
views
Testing for multiple if statements
I have a bulky set of if statements, and what I want is that if none of them trigger, only then do I want the "else" to work. But each if needs to work independently, and multiple of them ...
0
votes
0
answers
20
views
ThreadedDepthCacheManager ignoring the limit I put at the order book
I'm using ThreadedDepthCacheManager in python-binance to get the orders from the book, and at the start_depth_cache method I'm setting the limit to only 2 depths in the order book. Still, for each ...