text string | meta dict |
|---|---|
Q: Not sure how to use typenum type in match I'm doing a DNS server, to have a fine-grained control I'm using typenum when I need to use like 3 or 4 bits integer.
use typenum::U4;
pub fn from_num(num: U4) -> ResultCode {
match num {
0 => ResultCode::NOERROR,
1 => ResultCode::FORMERR,
... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634647",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: 404 not found when using beyondcode I am trying to use the beyondcode. But now I am getting this error in my console. Please help me how can I solve this.
# POST http://localhost:5173/broadcasting/auth 404 (Not Found)
| {
"language": "en",
"url": "https://stackoverflow.com/questions/75634651",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Show category in products page woocommerce enter image description hereI would like to put the title of each category at the top of the page (category and subcategories) that the client will be able to navigate. I hope that I have expressed well!, attached image. thank you !!!
| {
"language": "en",
"url": "https://stackoverflow.com/questions/75634653",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to implement Django Admin and Super Admin? Is super admin and Super user are same in Django? I am a beginner in Django..
i am trying to work with, admin,super admin,user in Django.
What is the difference between admin and super admin in Django? how can i implement super admin & Django admin? How can i give separ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634655",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to use 2 different git repos (mutually ignoring each other files) in one common folders tree? I need to use 2 different git repos in the same folder tree.
Let's say I have the following local file tree :
Workspace
Folder 1
Folder A
File x1
File y1
... any other files ...
Folder B
File z1
... any other files ...
... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634658",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: Can XAMPP publish 2 websites with the same public IP but with different ports? I made a virtualhost in XAMPP with this code:
<VirtualHost *:8181>
ServerAdmin website1
DocumentRoot "C:/XAMPP/htdocs/website1"
ServerName transparency
ErrorLog "logs/website1.log"
CustomLog "logs/website1.log" commo... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634659",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Animate fill_between under a curve FuncAnimation - Animation starts already with the fill_between, how do I remove this I found this question/answer with the following code
How do I get a fill_between shape in Funcanimation?
import numpy as np
from matplotlib import pyplot as plt
from matplotlib import animation
X ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634660",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: "getaddrinfo ENOTFOUND Database" when try to connect with Database from TypeORM CLI while basically connection is fine Relevant part of the docker-compose.yaml:
version: "3.5"
services:
Database:
image: postgres
container_name: Example-Local-Database
ports:
- "${DATABASE_PORT}:${DATABASE_PORT}... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634661",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: React props not working when map() function on json file I'm trying to render information from a json file that I made to show on a page. I have used bootstrap for formatting the cards but when I try it without the bootstrap formatting it still doesn't work. Any ideas for what it is missing?
My json file:
[
{
... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634662",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: Node.js javascript I'm stuck with a async/await http get function: the script does not wait until the function is finished the http get In a node.js program I'm struggling with a async/await http get function, in order to get the status of a domotica appliance zigbee gateway.
The script does not wait until http get ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634665",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Why are the headings in my navigation menu not going into the hamburger menu when it is zoomed in by 250%? I have been trying to fix my hamburger menu so that the headings go into it, in the navigation bar. However, it is not working. Does anyone know of a fix to this? I am new to programming so the code might be me... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634667",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: One d3 line on nested data with mouseover I have managed to create the line and the plot that I want but unfortunately I have failed to create a simple hover over the line.
This is the main code:
var groupclusters = d3.nest()
.key(function(d) { return d.clustindex; })
.entries(expsdata);
var... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634669",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to set logo on each page with tikz? I want to set my logo on each page except the front page. Right now I am able to do it on one page with the following:
\begin{tikzpicture}[remember picture,overlay]
\node[anchor=north east,inner sep=15pt] at (current page.north east){\includegraphics[scale=0.2]{Figures/logo.pn... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634671",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: i am not getting data in nextjs from mongodb i am trying to get data from mongodb in nextjs but getting 404 error.
here i will share backend code and frontend code.
please look into this and help me to resolve this error.
exports.publicProfile = async (req, res) => {
try {
const user = await User.findOne({ username:... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634674",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How it is possible to change the IDs to Name after RNA-Seq read counting in R? I have done counting for my RNA-Seq samples based on reference "hg38.knownGene.gtf" that i got from UCSC database by GenomicAlignment package. Output file that I have contains unfamiliar IDs to me and I do not know how can change this str... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634675",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: Create object inside object in jolt I want to create object inside object using jolt
My input is like
{
"rating-primary": 1,
//much more other stuff
}
and expected output should be
{
"rating": {
"id": 1 // it should be the rating-primary
}
//remaining o/p
}
and there are much more in my spec for... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634677",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How use service name for micro services? I have a api gateway and 2 micro services:
users
orders
So, What is the best way for create urls and call services?
I have 2 way for this problem:
1- use service name in url:
/api/users/{id}
/api/orders/{id}
2- use service name in header and remove it from url:
/api/{id} --he... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634679",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Powershel script for install updates on multiple windows servers I need a PowerShell script to install updates or security patches
this is my script but its response failed
# Check for updates
$updates = Get-WindowsUpdate -Classification "Critical,Security"
# Install updates
Install-WindowsUpdate -KBArticleID $upda... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634680",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How does OnBackpreasure work with java reactor I'm starting with java reactor and trying to understand how back pressure works.
I have written the following sample code:
Flux<Long> publisher=Flux.interval(Duration.ofMillis(1));
publisher
.subscribeOn(Schedulers.newSingle("publisher-x"))
... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634682",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: how to include bootstrap css inside TCPDF php page What is the correct way to include Bootstrap styles inside a TCPDF page? I tried including the file in the normal way, but the page did not work at all.
<?php function fetch_data()
{
$output = '';
$connect = mysqli_connect("localhost", "r... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634684",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Stabilize image sequence using FIR Filter instead of Kalman Filter I need help implimenting FIR Filter on a video sequence, in hope to stabilized the video.
There's a Kelman filter algorithm that uses a prediction and update stage on a prev and current pixels, with something called kalman gain looks like that:
... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634685",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Attach an email with attachments with Graph API I have an email1 with 4 file attachments that I am retrieving from a mailbox using Graph API which works fine and can read the attachment bytes so I am certain I have the data. I now want to attach this entire email1 intact (body and attachments) into a new email2 that... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634687",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: resource route within group route does not work properly adonis.js 5 I have a route group with three patch routes and one resource route
when I run node ace list:routes I get this:
here I get one more slash after prefix in GET, PUT and DELETE
why this happining?!
I want have resource route in my group routes but I... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634688",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: GitHub Actions Workflow not getting Triggered I have the following yml file as my GitHub workflow:
name: Lint and Test Charts
on:
push:
branches: [ main/master ]
pull_request:
branches: [ main/master ]
paths:
- 'open-electrons-monitoring/**'
- "!**/README.md"
- "!images/**"
-... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634689",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-2"
} |
Q: Дополнить код на питоне Дополните данный код, используя параллельную итерацию сразу по трем
спискам (функцию zip), так чтобы он вывел информацию о регионе в
следующем формате:
<регион>: столица <Город>, население <количество> тыс. человек.
regions = ["Томская область", "Московская область", "Ленинградская область"]
... | {
"language": "ru",
"url": "https://stackoverflow.com/questions/75634691",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-3"
} |
Q: Redirect a session cookie to Angular and use it I have a web application with multiple users. If a user wants to use it, he has to authenticate and gets a session cookie. The httponly flag is set.
The application has also an api interface that accepts the same cookie. The interface accepts json-requests and answers ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634692",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: Windows BSOD constant coming with with various errors Some days ago, my computer got a BSOD that sat: Attempted execute of noexeute memory in windows. And then I made it restart and did not think of it. After 2 minutes, there was a new BSOD: Page fault in nonpaged area. After that, whenever I boot my computer, it co... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634694",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to merge n number of rows into one faster with less memory utilization by adding columns with the same name as original but with name_1, name_2? I have a large dataset of stock prices that includes columns for open, close, high, low, datetime, and volume. I'm attempting to merge 15 rows of data from a specific t... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634696",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Getting book list by isbn number, author, titles and reviews I'm beginner full stack developer. And i'm causing problems with code when I try to get data of books list by title, author, and isbn number!. Idk how to solve this. here is all of lists and codes. pls help me [code needs to be changed
public_users.post("/... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634697",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: Obfuscated Jar is not running I am using this configuration in my proguard task:
task proguard(type: ProGuardTask) {
dependsOn tasks.extractJar
verbose
injars "${buildDir}/extracted/BOOT-INF/classes"
outjars "${buildDir}/obfuscatedClasses.jar"
// Automatically handle the Java version of this buil... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634700",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: csrf_exempt for class based views class ErrorReportView(View):
def get(self, request, *args, **kwargs):
return HttpResponse('Hello, World!')
@method_decorator(csrf_exempt)
def post(self, request, *args, **kwargs):
return HttpResponse('Hello, World!')
I use Postman, but I get
<p>CSRF v... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634703",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: simple merge sort in python iam learning python so sorry for not coding the pythonic way
iam trying to make a merge sort but its not working
i looked at the debugger it seems the problem it doesnt do line arr1[i] = arr[s+i] and jumb back to the mergeSort function idont know why
def mergeSort(arr,s,e):
if s >= e... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634705",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-2"
} |
Q: How should i write regex and @pattern Validation is not working on spring boot
I write regex for phone number but is not working on entity class.
Is it true to write exception on service class for control the phone input?
| {
"language": "en",
"url": "https://stackoverflow.com/questions/75634708",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: [python-click]bash completion not working after upgrade click version from version 7.0 to 8.1.3 Bash completion is working normally with Click 7.0
Environment:
Python version: 3.9.9
Click version: 7.0
Bash version: 5.1.8
Bash-completion:2.11
This is the code:
import click
@click.group(cls=clicommon.AliasedGroup, con... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634709",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to increase variable Perspective, I am rather new to coding all together let alone python. I am fiddling with a practice little project I made for myself.
My Code:
level_5_max_evocation = 30
evocation = 20
evocation_scaling = random.randrange(0, 101)
skill = "evocation"
if evocation == level_5_max_evocation:
... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634710",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-2"
} |
Q: Validation form before submit is not showing any validation messages? I have jQuery validation library used on application, but when I validate before submit is not working. When inspect the element its said line 1 of this file below, need some help.
$(function (){
$("#personalloan").validate({
rules: {
... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634712",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: Why is this pointer being used, couldn't we directly access by creating object. Why is id initialized outside as 0? enter image description hereenter image description here
tried to initially program it without using this
| {
"language": "en",
"url": "https://stackoverflow.com/questions/75634717",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Visual Studio auto complete is not working - VS 17.5 Mac/Unity3d Visual Studio auto complete is not working after updating to 17.5.
Also, when googling the preference view looks different and the "Insert matching brace" is greyed out. See picture.
I did read somewhere that this may be a bug but I am not sure and I h... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634719",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: Is there an intellij plugin that allows to keep matching words with a color highlighted? I wonder if there is a plugin for Intellij that allows to keep the matching words highlighted with a different color and as Notepad++ allows it, I find it very useful. Here is an image to illustrate what I mean.
I was looking f... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634723",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: ComponentLookupException in Maven project
Failed to execute goal
org.apache.maven.plugins:maven-war-plugin:2.1.1:war (default-war) on
project Gestion_pfe: Execution default-war of goal
org.apache.maven.plugins:maven-war-plugin:2.1.1:war failed: Unable to
load the mojo 'war' in the plugin
'org.apache.maven.plugins:m... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634726",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: C# IDbConnection Query - Guarantee of ordering? I am implementing a Data Layer function using Dapper to get a set of ordered entries.
using (var connection = new OracleConnection(getConnString())
{
var fields = connection.Query<string>($"MyPackage.FieldsStoredProcedure", param: null, commandType: CommandType.Stor... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634728",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Why running yarn install is giving an error- Integrity check failed for "yargs-parser" The problem-
In my existing Vue project I deleted the node_modules directory, and now I am re-installing the packages using the yarn install, but facing the following error-
What I read-
After reading this article (scroll down to... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634734",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: How to handle SIGTERM in Cluster Workers? before termination, I need to do cleanup in all workers but the worker doesn't receive the SIGTERM or SIGINT . Here is the code that I have added
const cluster = require("cluster");
const cpus = require("os").cpus().length;
const server = require("./server.js");
class Cluste... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634738",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Nuxt.js problematic nuxt.config.js/ts with Firebase Cloud Functions while deploying ES5/6 modules / compatibility issue I'm trying to deploy Nuxt.js (2) SSR app to Firebase Hosting/Functions. I'm able to do that, as long as I won't include nuxt.config.ts in functions/src/index.ts. However, I do have some setup there... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634743",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Accept Uppercase and Lowercase as True in C# I want my code to detect my input even if it's Uppercase or Lowercase as true but I don't know how to, someone help me, thanks, here's some examples if you guys are confused:
Input:
y or Y
Output:
True
Code:
string start = "y";
// I want y to be detected as true even if t... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634745",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Can a domain event be emitted without being part of an aggregate state change (DDD) I would like to know how can a domain event be implemented (in DDD) if it is not a natural result of an aggregate's state change.
I will borrow the example of this post.
So lets say that we need an event like: temperatureWasMeasured ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634746",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "4"
} |
Q: I want to get keys as integers using json serialization and deserialization and python I have this dict:
d={0:[1,2,3,None,1],1:[1,2,4,0,3],2:[4,6,2,3,4],3:[4,2,6,1,2],4:[2,2,6,2,None]}
I save it:
fo=open("test.json","w")
json.dump(d,fo, sort_keys=True, indent=2, separators=(',', ': '))
fo.close()
I restore it:
fi.... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634747",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: Angular 15 CKEditor 5 config toolbar I want to have a CKEditor with this toolbar in my angular app
I tried
config = { toolbar: [ 'Cut', 'Copy', 'PasteText', '|', 'Undo', 'Redo', '|', 'Bold', 'Italic', 'Underline', 'Strike' , 'superscript', 'subscript', '|', 'link' ] }
<ckeditor [editor]="Editor" [config]="config" ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634748",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Python Syntax Error: unexpected EOF while parsing when running a tkinter code I am working on a project that uses tkinter to create a visual workflow editor. However, when I run the code, I get a syntax error that says "unexpected EOF while parsing" and points to the end of my code. I am not sure what is causing thi... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634756",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: how to check if there is any alphabet character after @ and before .com in javascript I'm programming a register system in javascript, and the problem is that i want to check if the email format is correct so i write if(regEmail.includes("@" + ".com")) but the problem is that i don't know how to check if there is an... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634760",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Where to set variableObservable for refresh value of nested widget using Obx Getx Flutter I'm trying to refresh value of nested widget using Obx Getx flutter. but whenever i try to refresh the value of nested widget they gives me error.
here is my code of widget.
I'm trying to refresh value of postActivitybuttons(... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634761",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Trigger vs Should in Cypress Can someone please explain me what is the difference between cy.get(selector).trigger('be.visible') and cy.get(selector).should('be.visible')
I've seen that they are working in similar way I and I wanted to know deeper because in official documentation I saw only should('be.visible') is ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634765",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: I’m confused about A/B testing How does A/B testing work if I have a control variant and two other variants.
For example if I have a website and want to see whether making two changes (variant 1 and variant 2) leads to more users performing searches and sending enquiries, which variant, if any is the best choice.
M... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634766",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: Apollo subscription resolver variables are empty I have a apollo resovler to connect a user to a sesion:
connectUserToSession: async (_, args) => {
const session = await prisma.session.update({
where: {
id: Number(args.sessionId)
},
data: {
players: {
connect: {
id: Number... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634768",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to use variables in a loop with consecutive numbers in their names? As mentioned in the question, i want to use variables in a loop with consecutive numbers in their names, the code is as follows:
`define VAR(idx) a_``idx
`define VAR_STR(idx) $psprintf("ENV_PATH.a_%0d", idx)
initial begin
int a_0;
int a... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634770",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to prevent lazy loading after querying with left outer join using QueryDSL when mapped Entity doesn't exist? I have 2 tables Team and Member.
Team and Member have 1:N relationship.
Question
How could I prevent lazy select query when accessing 'team' field which didn't exist after the first left outer join query ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634772",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to perform multiple groups query in MongoDB I have a data in following format.
{
"_id": {
"$oid": "6402f325409ad0430d06f82a"
},
"id": "2",
"firstname": "Hendrik A.",
"surname": "Lorentz",
"born": "1853-07-18",
"died": "1928-02-04",
"bornCountry": "the Netherlands",
"bornCountryCode": "NL",
... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634774",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: CSS background property shorthand How to write the CSS background property in shorthand?
I've seen several background properties but is there a certain way or sequence to write it in one line?
A:
See this: Formal Syntax
<bg-image> || <bg-position> [ / <bg-size> ]? || <repeat-style> || <attachment>
You can wr... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634781",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-2"
} |
Q: Detecting International Phonetic Alphabet (IPA) symbols / character blocks from word strings using R I am trying to figure out the best way to split strings (words) to individual phones using R, but I haven't been able to come up with a good solution. I am aware that one sollution would be to use gruut-ipa module bu... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634783",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Container (with column in it) doesn't adjust to the content inside flutter I'm trying to create something like a review card that will adapt to the amount of text inside it (change the height). However, for some reason the container that is created much larger and I don't understand why
What I get:
What I wanted:
... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634785",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: NPM module compatible to be bundled as AMD module with Typescript compiler The FIRST question would be whether it is possible or not to bundle a Typescript project to AMD module along with 3rd party dependencies from NPM ( imported from node_modules )?
Based on my few days of research mainly focused on tsconfig.json... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634788",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Dataframe to list of lists using split in a %>% pipe I want to turn a dataframe into a list of lists, as in this example:
df <- data.frame(var1=c("A","A","A","B","B","C"),var2=seq(1,6))
> var1 var2
1 A 1
2 A 2
3 A 3
4 B 4
5 B 5
6 C 6
split(df$var2,df$var1)
$A
[1] 1... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634790",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: Remove part from array value and write to new array After modifying a query result, I end up with an array like the following example:
[0] => foo (bar1)
[1] => bar (foo2)
[2] => bas
[3] => foo (bas3)
[4] => bar
As you can see, some of the values contain parentheses, some don't.
I need the parentheses part of each v... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634791",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: Handlebars {{each}} inside of {{#times}} {{#times league.groupNumber}}
<div class="grupDiv" style="width:150px;display:inline-block;border:1px solid black;padding:10px">
<h2>Grup {{this}}</h2>
<select name="" id="" multiple>
{{#each team}}
<option value="{{._id}}">{{teamN... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634793",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to run nextjs app over https in production mode? I can't make it run over https.
I have a domain name well configured on my server.
I have a docker file and a docker-compose, i have "443:443" in the port in the docker-compose.
I created a server.js file in which I have this :
const { createServer } = require("ht... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634795",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Are the View Model equals to the View in UML? I am studying UML OOA and OOD. There are two concepts View Model and View in "Kruchten 4+1 view model":
The terms are not all identical. Do these two picture mean the same thing?
A: In short
Yes, these two view models are the same. It's a slight terminological evolu... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634797",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "2"
} |
Q: Get folder from page C# I have a question. I need to get a folder from user on the page and save hierarchy of folders' names to db. If I use IFormFile it takes only files, but I need exactly folders even if they are empty. How can I implement this?
This is form:
<form action="/Folders/Upload" method="post"
enctype=... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634799",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Modelling a tricky optimization problem using python Optimization Problem Statement
Objective:
Company A is looking to partner with a popular Hotel chain . However, the hotel chain is keen to
test the factory's production line first to ensure that it can handle the daily demand for beverage from its guests. Company ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634801",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: ONVIF compliant wifi camera throws error "error in deserializing body of reply message for operation 'getstreamuri'" I have set up wifi camera (Chinese-made: no exact model number) which is working fine with the ICSee android application.
The problamatic product,
ido.lk/product/ip-camera/
Also, I have tested that wi... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634808",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Using PHP to cURL This API Authentication Request I'm encountering a knowledge gap in presenting the following cURL request via PHP to an API built on GraphQL:
curl --request POST
--url https://a.n.domain/graphql
--header 'content-type: application/json'
--data '{"query":"mutation {\n signIn (apiKey... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634809",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Connection problem in sherlock in kali linux A problem occurred while checking for an update: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer'))
Whenever i search for any user through sherlock , this error occurs !! I want to search the usernames from which i can get all details of it.
| {
"language": "en",
"url": "https://stackoverflow.com/questions/75634817",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-2"
} |
Q: Redux toolkit the problem with async action everyone! I am new at redux toolkit. I have a post request for authorization and need to deal with error if password is wrong.
I have such a code
export const authApi = createApi({
reducerPath: 'authApi',
baseQuery: axiosBaseQuery({
baseUrl: `${process.env.REACT_AP... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634818",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to edit a message with an image in telebot I need the bot to edit the message when the button is clicked. It was edited.
import telebot
from telebot import types
bot = telebot.TeleBot(token)
@bot.message_handler(commands=['help', 'start'])
def say_welcome(message):
buttons = types.InlineKeyboardMarkup(row_... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634819",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Can I use conditionally rendering method in a JSX tag in React Native? Just like the title, can I use conditionally rendering in a JSX tag in React?
What I want to inprement:
There is a button to switch on/off using useState, and if you press the button,
you put a prop into a JSX tag to send to the child component.
... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634823",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: Two containers sharing apps I need help with the following:
Is it possible to build two containers, for example homeassistant and tensorflow, and instead of using the command pip install tensorflow on the first container, use the tensorflow app directly from the second container?
| {
"language": "en",
"url": "https://stackoverflow.com/questions/75634826",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: Google Sheet Change Font/Background Color Function I am tring to fill a cell in google sheet with color using formulas/functions, I'm looking for functions like
=background('yelloe') or =font_color('yellow') but couldn't find any. Is there a way I can fill the cell color using functions?
Conditional formatting do no... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634828",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Mongoose Validation Error : Invalid schema configuration i make a Schema in mongoose and when i start node it crash
const mongoose = require("mongoose");
const { DataView } = require("webidl-conversions");
const productSchema = new mongoose.Schema({
name:{
type:String,
required:[true,"Please Ent... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634831",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: I'm having a problem with a char variable (New to programming with C) I keep getting one bug in the terminal which says:
warning: format specifies type 'char *' but the argument has type 'int' [-Wformat]
scanf("%c", namehumaninput);
~~ ^~~~~~~~~~~~~~
The course I am taking is saying that all I need... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634832",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: Spring: REST-Controller cannot be found by SpringBootApplication I'm building a Spring-REST-API with CRUD-functionality to create, read, update and delete books with a MongoDB-database. My project has the following structure:
BackendBookLibraryApplication.java in main > java > com.lena.backendbooklibrary
BookControl... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634833",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: Pm2-health send to many emails when a process died I am using pm2-health to trigger when a process was managed by pm2 died. But every time a process died, pm2-health send 11 emails about exception threw and 11 more emails about process has stopped. And when I manual stopped the process, pm2 health send 2 emails abou... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634836",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: moment checking date validate How can I check the validity of the date?
whether she passed or not.
I've tried everything. And I read the documentation. But it's not working for me.
I tried it this way:
if ('2023-03-03 12:22:16' > moment().format('DD/MM/YYYY h:mm:ss')) {
} else {
ret... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634837",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: Cannot get latex Output for the code below I am following this video tutorial https://www.youtube.com/watch?v=Dkifb6nytao to get general solution for a differential equation.
from sympy.interactive import printing
printing.init_printing(use_latex = True)
from sympy import *
import sympy as sp
v = sp.Symbol('v')
u =... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634838",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Using a git tag in jenkins pipeline script need deploy Tagging a git repo using jenkins pipeline script and
I am trying to push version and services using Jenkins pipeline script. I am very new to jenkins pipeline script.
Is there a command like , to tag the particular service with version using git tags not using ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634840",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: Error Launching IDEA_How do i can make it work I am having trouble running the following program.
I have downloaded it from the following link https://www.jetbrains.com/idea/download/?_ga=2.219925081.1961582015.1677922450-335394254.1677922450#section=windows
"community edition".
After the installation was done , whe... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634841",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to save and load user prefs (1 txt file) to user's google drive (same as Whatsapp, Viber and other apps) [Android Studio] based on recent google changes to drive (drive api got fully deprecated on feb 2023) and most of answers and git examples are focused around that i would want any opinions or suggestions on h... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634844",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: React useEffect() does not display the recently added elements I get an error saying that the key in the list should have a unique value, I completely agree with this, the problem arises in another. When I try to create a new object on the client side by means of an asynchronous request to the server, I get an objec... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634849",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Bash script unable to communicate with report portal - throws 401 I am getting following error when executing my automated script through jenkins or running bash command from terminal. I am passing report portal credential in jenkins file and tried to pass in mvn command as well (in .sh file) but no success. Can som... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634851",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to fetch and handle large dataset in codeigniter 3? I have one table where the number of records is 200 000. when I fetch the records I'm getting error of php total memory allocation. what is the best way to avoid such memory leak and what should I do?
$params = [];
$params['env'] = 'mfdb';
$params['select_data'... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634853",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Convert hard desk space to Windows after removing Ubuntu I have Ubuntu and Windows on the same machine, I want to remove Ubuntu and use only Windows, how can I convert back the hard disk space which was used by Ubuntu to Windows?
Thank you in advance
| {
"language": "en",
"url": "https://stackoverflow.com/questions/75634857",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-2"
} |
Q: how to check css langueage feature i cannot put media in my css Request textDocument/documentSymbol failed.
my css keep on showing this error tag when i try to create @media (max-width) please help
please help to make it normal
| {
"language": "en",
"url": "https://stackoverflow.com/questions/75634859",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-2"
} |
Q: Problem with SDV library in Python: NameError: name 'load_tabular_demo' is not defined This very short piece of code does not work with me. It seems to be working for many people since I found it posted in many places.
from sdv.demo import get_available_demos
demos = get_available_demos()
data = load_tabular_demo('s... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634860",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: Finding outer contours of an object which can be bigger or smaller compared to another object in the image As you can see in the link provided below, I have some images (and many others) which depict a "main object" (usually a sheet of paper, which can have text and other figures on it) and a colorchart (which unfor... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634869",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Flutter(android-studio) apk build failed flutter build apk
Changing current working directory to: E:\projects\android_ui
Building with sound null safety
FAILURE: Build failed with an exception.
*
*What went wrong:
Execution failed for task ':app:mergeReleaseResources'.
Multiple task action failures occurred:
A f... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634872",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: android kotlin mlkit transtation library version error I am using MLKit to transalte text but whenever i run there is no direct error but the log shows the following and the translated text is always null
W/LibraryVersion: Failed to get app version for libraryName: shared-installation-id D/TransportRuntime.JobInfoSc... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634874",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: JOOQ: ad-hoc converters ignored in union query with multiple converters It seems when running a union query with multiple converters, the second ad-hoc converter is ignored.
For example:
record A(UInteger id, String name) implements Something { };
record B(UInteger id, String name) implements Something { };
// ... ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634880",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to refresh an angular view using Azure function App with signalr negociate I have a problem with using @aspnet/signalr-client, I'm still just starting out and I don't understand where
SignalR connection error: Error: WebSocket failed to connect comes from. The connection could not be found on the server, either... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634881",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: Pyspark - toPandas optimization I have the below transformations, filtering the data frame and converting it to pandas.
new_training_dtf = training_dtf.filter(F.col("levels_dtf_level_id") == lev_info["level_id"])
#training_dtf has 200 partitions
pd_training_dtf = new_training_dtf.toPandas()
Is it advise... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634882",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-2"
} |
Q: Directory listing failed, path = '/storage/emulated/0/Android/data/' (OS Error: Permission denied, errno = 13) Hi guys file manager package working fine in other folders but when I try to open data folder in Android 13 it gives me an error
here is error
here is my AndroidManifest.xml
permission handler implements
fi... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634885",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Do we have to build the heap again after insert? I have a question about the insert operation in heap. Reading it about it says it is in O(logn), but when I saw this implementation:
void max_insert(int* max_heap, int size, int elm) {
if (size == 0) {
max_heap[0] = elm;
}
else {
max_heap[... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634888",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "3"
} |
Q: Why do I get a TypeError "must be a pair of numbers" when trying to use custom Point tuple with pygame? I am trying to make a Point tuple that would work like this:
p1 = (3, 5)
p1.x
# returns 3
p1.y
# returns 5
p1
# returns (3, 5)
p1.x = 7
# mutable
So instead of p1[0] i can just call p1.x and at the same time call... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75634891",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |