All Questions
20,715,638
questions
0
votes
0answers
4 views
How To Create D3 Geographic Projection with SVG (Instead of JSON Data)
I'm trying to create map projections using D3, utilizing custom SVGs (inline or imported) instead of JSON data. My end goal is to be able to take a geographic SVG created in illustrator or another ...
0
votes
0answers
2 views
How can I use busybox devmem command on startup using /dev/mem?
Trying to use a PWM pin on a Jetson Xavier NX to control a servo. Long story short.. it seems the easiest way to go is to set the pin as PWM in memory with:
busybox devmem 0x2430040 32 0x401
which ...
0
votes
0answers
2 views
java modularization and cxf-xjc-plugin generated packages from xsd files
I have a module
module-info.java
--
module my.module.with.cxf.generated.packages {
requires slf4j.api;
requires spring.context;
requires java.persistence;
requires spring.beans;
...
0
votes
0answers
2 views
What is the difference majorly featurewise between Canonical LXD container software and docker container software?
I have docker installed but ubuntu products seem to be open-source-ware and not breaking my pocket book to do the same thing but docker seems to be more compatible with google cloud? I am not sure ...
0
votes
0answers
3 views
onClick not routing to the correct page the second time
I am trying to implement a signup functionality with additional checks for duplicate usernames on the client side (since Firestore doesn't allow you to set up rules for this). What happens is that if ...
0
votes
0answers
6 views
My project isn't working well on a live server but works well on my local machine
My project works well locally, but in a live server it gives me errors like: mysqli_real_escape_string() expects parameter 1 to be mysqli, boolean given database connection and SQL query is ok.
0
votes
0answers
3 views
whileTrue in a block closure Smalltalk?
Can you use a whileTrue: inside a block closure? I can't get it to work so I suspect not. Or I am doing something wrong.
map := #([1 1 1 1 1]
[1 0 0 0 1]
[1 0 1 0 1]
[1 0 0 0 1]
[1 1 1 ...
0
votes
0answers
3 views
How to use the layout() function in plotly to set axes titles R
I am somewhat new to R and plotly. I have a scatter plot that I want to edit the axes titles. I have tried using the pipe operator %>% with layout() to edit the axes titles but I am getting the ...
0
votes
0answers
3 views
Create browser library using Webpack + Babel which internally imports some Nodejs libraries
I m going to create a browser library using Babel and Webpack, everything fine but when I start to import some other third-party libraries in my library like require('cool-library') the Webpack ...
0
votes
0answers
4 views
Need to get distinct values using xslt from xml
I am new to xslt.
I have below xml and need to generate data in csv using xslt. can you please guide me. I tried with this xslt but need distinct values:
<wd:Report_Data xmlns:wd="urn:com....
0
votes
0answers
3 views
how to add my product created in my form to main view in javascript?
hello I have a form where I can create a product, the question is how to add to the main view without directly calling the function that has the list of products I leave the code
This is the function ...
0
votes
0answers
4 views
Tksheet width parameter not changing width?
I'm trying to edit the width of a tksheet object.
self.entries = tksheet.Sheet(parent=self.rightFrame,
show_header=False,
...
-1
votes
0answers
4 views
Can you take a look at the error I couldn't solve in my repast simulation? [Area Coverage]
enter image description here
enter image description here
My simulation: enter link description here
0
votes
0answers
4 views
Programmatically turn on or off global RestAssured logging to Slf4j
I'm trying to configure a RestAssured setup wrapped in Spring test and Junit. Regarding this I'm struggling with making the logging optional based on a config value. I found this link https://github....
0
votes
0answers
5 views
Deleting elements of lists, within other lists in Python
While doing some Python exercises related to lists and functions, I've encountered this following code:
list = [0, 1, 2, 3, 4]
def function (lst):
del lst[lst[3]]
return lst
print (function (...

