All Questions
21,728,439
questions
0
votes
0answers
2 views
Please Help me with this
Write a complete Java program in a class named Rocket that prints the following figure as console output.
Use methods to capture the structure of the figure and to eliminate redundancy. For example, ...
0
votes
0answers
2 views
Why does resizing in kivy brings back widgets in old positions?
I'm making a game in kivy and when I close the screen (android) or try to resize the window (linux) some widgets that I've moved away from the screen return to their starting position.
I created a ...
0
votes
0answers
2 views
Why my laravel 8 app does not show mix success/error notifications on fresh Kubuntu 20?
Moving to kubuntu 20 from kubuntu 18
my laravel 8 I work now does not show mix success/error notification at right bottom corner
In webpack.mix.js of my project(I did not modify it):
const mix = ...
0
votes
0answers
3 views
TypeScript - How to group this array by their quiz_title assuming that I'm using an api
Here is the structure of the array:
"UserScore": [
{
"id": 1,
"user_id": "1",
"quiz_id": "6",
"module_id": "9",
"...
0
votes
0answers
3 views
how to get data to parent component using props in react?
Mainpage.js
import React from 'react';
import {Overlay} from "./MainOverlay";
const MainPage = () => {
return (
<View style={[styles.center, {top: 50}]}>
........some ...
0
votes
0answers
3 views
Returned object from page.evaluate ends up as null
I know that there are several answers on SO about this topic, but none of them work in my case.
I have this:
async function getElement(page, parentElementItemID, elementItemID)
{
var returnValue = {}...
0
votes
0answers
3 views
Django image is uploaded to server but after showing 500 error without saving image information to db
In my settings
`Debug = False
Allowed_Host = ['my given host']
STATIC_URL = "/static/"
STATIC_ROOT = os.path.join(BASE_DIR, 'static')
MEDIA_URL = "/images/"
...
0
votes
0answers
2 views
Restoring PostgreSQL snapshot on Amazon RDS database loses schema and data
I tried making a copy of an existing database instance running on PostgreSQL by creating a snapshot of the instance (Actions > Take snapshot). I then went to the snapshot and clicked Actions > ...
0
votes
0answers
5 views
Plotly Takes to long to Render an output
I need a help please :)
Hi I have a dataframe CSV file in which I have longitude column, latitude column and sales.
I would love to visualize my data geographically.
First I have tried to do a ...
0
votes
0answers
3 views
Downloading empty pdf in VueJS
I download the pdf file but it is empty.
When I open it I get this
Failed to load PDF document.
This is my BE:
[HttpGet("{id}/contract-agreement")]
[Produces("text/html", "...
0
votes
0answers
4 views
How can I fill in a table from a file when using flyway migration scripts
I have scripts
/*The extension is used to generate UUID*/
CREATE EXTENSION IF NOT EXISTS "uuid-ossp";
-- auto-generated definition
create table users
(
id uuid not null
...
0
votes
0answers
2 views
Blocking tasks to ensure "atomic" use of JWT before expiry
I have a playbook which runs against 500 or so hosts. For each server, it generates a JWT for use in authentication against the CMDB, then uses that token to update facts about the host in the CMDB. ...
0
votes
0answers
2 views
Issue to convert the ssl certificates from pfx to peem with openssl
when i try to convert the .pfx certifates to .pem to import to ACM, i get this error
Error outputting keys and certificates
8C2B0000:error:0308010C:digital envelope routines:inner_evp_generic_fetch:...
0
votes
0answers
5 views
Music21: remove percussion
I have some midi files [sample] from which I'd like to remove percussion.
Here's what I've been using to read midi files and then save midi back to disk. The resulting sound is great:
path = 'lld.midi'...
0
votes
0answers
5 views
issue with to String
Im trying to get an old Email to PDF script working but can't figure out why this particular function is failing. This feeds into multiple other functions so I'm now stuck. Any help would be GREATLY ...