text string | meta dict |
|---|---|
Q: ProGuard on Flutter using 3rd party packages Is it necessary to use proguard on your flutter app?
I'm trying to secure my app and the only one things I know is to handle the user data using flutter_secure_storage. I want a maximum security of my application.
A: Firstly you should understand what proguard is and wha... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75562810",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: How do I stop my Object from being Re-Initialized in Java In my program, I have a Screen class that loads objects onto the UI, and these objects are initialized in the Screen's constructor, however whenever I call a method in the UI object, it appears to re-initialize the object which is causing issues.
Screen Const... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75562811",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: How to loop over workbooks in directory, change formulas to values and concatenate sheets I am trying to concatenate a specific sheet within Excel files located in a directory, but first I have to convert the formulas to values, because otherwise they appear as NAN. The code below only returns a single file, with n... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75562812",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Write a PL/SQL block to calculate area of circle of radius varying from 3 to 10. Store radius and area of circle in a table name Areas Write block which store outpot in table form.
Table have two columns : radius and area.
Output like:
Radius area
--‐-----------------------------
5 78.5
| {
"language": "en",
"url": "https://stackoverflow.com/questions/75562814",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-4"
} |
Q: How do I store a DataGridView table in a 2D array and extract a 2D array into DataGridView in C#? I have some code in VB I need to convert to its C# equivalent. I'm not sure the code I wrote is doing what I think its doing. I want to be able to extract a 2D array into a datagridview and the vice versa, move the cont... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75562817",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: Is there a way to restrict the available methods on an object at compile time based on its state? I have a class Transaction that can have one of two states, Unpublished and Published. I would like to be able to limit what methods can be called on this class based on its state such that the compiler throws an error ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75562819",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "2"
} |
Q: spaCy NLP extract intent using wordlist I am following an example from the book Mastering spaCy, and I want to extract the intent of a sentence using a wordlist, using the following code:
from spacy.matcher import Matcher
from collections import Counter
from spacy import displacy
import en_core_web_md
import pandas ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75562820",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Line breaker with CSS I have a checkbox in my form. Here is the code:
input[type="checkbox"] {
transform: scale(1.3);
text-align: center;
padding: 5px;
display: inline;
}
div.checkbox label {
display: inline;
/* margin-left: .5rem; */
<div class="checkbox">
<h2>Choose your favorites progra... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75562822",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "2"
} |
Q: Is a additional ORDER BY neccessary if you use RANK()? based on this website:
https://www.sqlservertutorial.net/sql-server-window-functions/sql-server-rank-function/
There is his code:
[![SELECT * FROM (
SELECT
product_id,
product_name,
brand_id,
list_price,
RANK () OV... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75562824",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "2"
} |
Q: Is it possible to key out green screen from a video in Unity2D? Long story short, I'm making a game over screen for my 2D unity game. Animated it in Da Vinci with a green screen in the back of everything so that I can key it out.
Question is, can it be made transparent in Unity?
To add, my original plan was to creat... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75562826",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: Vscode Strange code formatting on save behavior I found some strange VS Code behavior when I try to save my file. I'm using a blade formatter for my code, the day before nothing weird happens, but after that my VS Code did something strange.
This is a line inside my VS Code, I did not change anything inside this sec... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75562828",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: How to access value in req.body after AJAX Post on server side using Express? I'm using AJAX to post JSON:
app.use(express.json());
app.use(bodyParser.urlencoded({extended:true}))
app.use(express.urlencoded({ extended: true}));
const rowObject=JSON.stringify(rowData)
$.ajax({
type: "POST",
... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75562829",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: Entity Frramework Core publishing to Azure database not working I am new to Azure and EF Core. I am required to publish localhost app to Azure. I am using EF Core with a database-first approach. The database is working if I run on localhost, but after deploying to Azure, the database is not working. I created an Azu... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75562830",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Print a clean table (with not too much else) from raw SQL or ActiveRecord query in rails console? Is there a way to output results of executing raw SQL in the rails console more cleanly?
Example
Is there a way to get raw sql output a little cleaner in the rails console?
For example, this query ActiveRecord::Base.con... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75562831",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: ffmpeg - add logo upper right and extra info on the bottom of an image Today I'm using the following for video and works well:
ffmpeg -i uploads/input.mp4 -i ./assets/logo.png -i ./assets/telefon.png -filter_complex "[1][0]scale2ref=w='iw1/5':h='ow/mdar'[v1];[2][0]scale2ref=w='iw9/10':h='ow/mdar'[v2];[0][v1]overlay... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75562832",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: I created a button several buttons using code. I need to change their background color when clicked I wrote a code to create several buttons based on user input (rows and columns.) I would like to change the background color (individually) for each of them when clicked.
This is the code that creates buttons based on... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75562833",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-2"
} |
Q: Tailwind CSS fontSize extend is not working for added custom class like "text-lg-bold" /** @type {import('tailwindcss').Config} */
module.exports = {
...
theme: {
extend: {
fontSize: {
'lg': ['20px', {
lineHeight: '30px',
fontWeight... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75562840",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Avoid explicit `default` keyword in Python's dataclass field PEP 681 introduced dataclass transforms. Among it features, it provides “field specifiers, which describe attributes of individual fields that a static type checker must be aware of, such as whether a default value is provided for the field"
Is there a way... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75562841",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "2"
} |
Q: JsonSchema, prevent value in array from being the same as a property I have the following JsonSchema I've been working on,
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "JSON schema for DLC Metadata",
"type": "object",
"properties": {
"name": { "type": "string" },
"description": { ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75562842",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to design inline button in the text field using flutter Good day! i'm trying to put an inline button on the text field for my "get a code" function but no success. i tried to search for some tutorials but never met or found what i'm looking for. i'm using vscode for my IDE.
[Get a Code button]
[1]: https://i.sta... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75562843",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to detect that a client of Binder is killed? I am using Binder for communication between two processes.
Suppose process A (server) creates a Binder and passes it to process B (client). Process B calls the relevant interfaces on the received IBinder.
I know that B can monitor if process A is killed by using linkT... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75562844",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How can I flip matrix elements in triple-wise rows in numpy? I have a matrix with the shape (3*k, 3*l) (e.g.: k=2, l=1):
A = np.arange(18).reshape(6, 3)
array([[ 0, 1, 2],
[ 3, 4, 5],
[ 6, 7, 8],
[ 9, 10, 11],
[12, 13, 14],
[15, 16, 17]])
Now I want to expand this to a matri... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75562847",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: Can I mass assign form fields from an AJAX request of JSON data using an array of field names? I am using Laravel to display a form with many input fields using values retrieved from a database. I am using AJAX to grab this data (through a JQuery API call) and return it to my JavaScript function to populate those f... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75562848",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: how do i make an existing class to singleton? i'm new to spring.
i have my class as below in main/module1
public class MainClass extends Thread {
protected final SomeClass someclass;
//constructor
public MainClass(SomeClass s) {
super(s.id);
someclass = s;
}
@Override
public void run(){
//some logic
}
@Override
... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75562849",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: What's the significance of the identifier in a Typescript index signature? In Typescript I can define "dictionaries" (objects with arbitrary keys) using an "index signature":
type DictOfNumbers = {
[foo: string]: number
};
let myDict: DictOfNumbers = {
a: 1,
b: 2,
}
In the example above, what does the ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75562850",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: ValueError plotting contourf in Cartopy Azimuthal Equidistant map projection I would like to use contourf in a Cartopy Azimuth Equidistant map projection. For context, I am trying to plot travel time (in h) of a signal across the globe. Roughly, this is somewhat what I am trying my plot to look like:
(Image credits... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75562851",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: Typescript optional chaining testing branch count I'm having some trouble understanding branch coverage when it comes to optional chaining with typescript.
Here is my code
type testingType = {
b?: { a?: number };
};
export function example(input: testingType) {
return input.b?.a;
}
Here is the test (just fo... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75562852",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: Convert CMake for compiling Apple ARM CPU We inherited an old source code that compiles well for macOS with Intel CPU. However, it doesn't seem to indicate the architecture in the compiler flags.
What are the required changes for generating a binary compatible with Apple ARM CPU (M1/M2), by using the same Intel-base... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75562856",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: How to show array elements at once (at the position %d) I want to make an empty array with size (like x and z below)
--> fill array with elements by looping only (not by scanf, getchar(), or manually type elements in the arrays)
--> and then print out the elements in one line, for example:
"Even numbers are: 2,4,6,8... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75562857",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: How to solve upsert over two linked tables efficiently? I have a problem i can't seem to figure out without using very ineffecient code. The situation is that i have a Quarkus web service using Hibernate for database access and entity mappings. In it, there is a java entity called SanctionedEntity like this:
@Entity... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75562862",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: How to get JSON Object from JSONNode Array? I have a JsonNode which looks like:
[
{
"ObjectIWantToRetrieve": {
"key0": {
"key1": {
"key2": "val3"
]
}
}
}
}
]
I wish to get the ObjectIWantToRetrieve out
The equivalent of JsonNode.get("ObjectIWantToRetrieve"... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75562865",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: How to avoid the 'ERROR: module.whl is not a supported wheel on this platform'? I have following issue with my Python 3.11 installed from source on Linux Mint 18.4:
The installation from source was not able to find the SSL libraries so Python 3.11 was compiled and installed but does not support Internet access. Twea... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75562867",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: jsqsh 2.3 hangs when redirecting stdout in batch mode I am trying to do a small automation of db export/import using jsqsh.
The problem i am facing is that if I have a code like this:
jsqsh --jbdc_url "$SOURCE_JDBC" -P='' --echo --non-interactive -i my_file.sql
the my_file.sql can be as simple as this:
select
'... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75562870",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to manage memory for captured inputs of a lambda? So in modern C++ we use smart pointers to make sure that a shared resource didn't get deleted before we go to use it.
Is there an equivalent for std::function<> for lambda callbacks?
Where you pass out a function of a certain signature rather than a whole class o... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75562871",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Prevent pc w10 to suspend block an always stay active I have a pc in a public place and i want to prevent pc to suspend\block an always stay active showing a web page. The computer is a pc with Windows 10
¿How is the best way to do that?
I create an script in python to move the mouse every 5 minutes i change the ene... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75562876",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: Transaction HexBytes('xxx') is not in the chain after 180 seconds I'm using web3py, and trade on BSC chain. I set my gas price as 5.5 gwei.
Sometimes, web3py shows a error message of
Transaction HexBytes('xxx') is not in the chain after 180 seconds
I think my transaction is not broadcasted as it's not found in the... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75562880",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-3"
} |
Q: how to hide watermark canvasJS trial secara gratis / dengan program please help, how to hide the watermark on the "canvasJS Trial" charts, how do you hide and delete it?
| {
"language": "en",
"url": "https://stackoverflow.com/questions/75562881",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-9"
} |
Q: Why is my python code for finding the intersection between lists not working as intended? First, sorry if this question is too basic, I am still a beginner in programming. I was trying to create a code to generate two random lists and find their intersection, without duplicates, but my idea is not working as intende... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75562883",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-3"
} |
Q: SPEI and SPI index calculation in R I'm trying to implement SPI and SPEI calculation index using SPEI package, but the function plot.spei() could not be found, like below.
I'm using R 4.2.2 version and this is the code:
library(dplyr)
library(SPEI)
library(readr)
data(wichita)
wichita$PET <- hargreaves(Tmin = wich... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75562884",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to use namespace constants across files in php I have what may be a simple syntax problem, but have been unable to find an example. Consider these two files:
foo.php
<?php
namespace abc\def;
define(__NAMESPACE__ . '\MY_DEFINE', 'MyDefine');
class foo
{
...
}
bar.php
<?php
namespace abc\def\ghi;
use const ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75562887",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: My published experience not showing up on my profile My published experience isn't showing on my profile, I can see other experiences I created but the newest one isn't showing up. When I play it, it doesn't show in my "continue" list either. Is there a fix for this?
I published a new experience on my profile, am tr... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75562888",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: word2vec based Recommendation System In my data set ratings are not given so how can I find out the hit rate and other accuracy metrics for word2vec based recommendation system?
I want to know more about the performance evaluation of word2vec based movie Recommendation system
| {
"language": "en",
"url": "https://stackoverflow.com/questions/75562889",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Google Sheets: How to restart Arrayformula execution in two separate tabs I have 2 columns, in 2 separate tabs that I would like to combine in 1 column, in Tab #3. However, To combine them, I have a number of conditions that should be met in order to choose which values in tab#1 or tab#2 to transfer to tab#3
The iss... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75562891",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Postgres: how to make pgcli stop nagging when running a delete: "You're about to run a destructive command" I'm using postgres 14
When running a query in pgcli like "delete from mytable;" I get a prompt about it being a destructive command
I put this at the bottom of postgresql.conf but no difference
client_min_mess... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75562893",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to infer type based on key value? I'm trying to infer the type of getAllRaces() to be () => Race[].
So far I tried:
type CollectionMap = {
races: Race[]
horses: Horse[]
}
type Race = {
date: Date
}
type Horse = {
name: string
}
type UnionizeKeys<T> = {
[k in keyof T]: k
}[keyof T]
type Co... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75562894",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: Auto update HTML table I have an HTML table wherein the data displayed came from my google spreadsheet. What I want is for when I update my google sheet the table on the HTML will automatically update without refreshing the whole page. Can anyone help me? Thanks. Also, when new data is added, it will change the back... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75562895",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: I want to know how to download images. My images are stored in the package instead of in the server. Is there any way for JavaScript to implement this My image is in the assets file. After packaging, I want to implement the click download function for the image in this package
I would like to use JavaScript, but I h... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75562897",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-2"
} |
Q: ERROR conda.core.link:_execute(700): An error occurred while uninstalling package I'm trying to conda update -n base -c defaults conda --force
An error occurred
ERROR conda.core.link:_execute(700): An error occurred while uninstalling package 'https://repo.anaconda.com/pkgs/main::jupyterlab-1.1.4-pyhf63ae98_0'.
Roll... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75562898",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: how to identify oculus vulkan driver logs in logcat I've written an OpenXR application I call MirrorBall VR that simulates infinity mirrors. I runs on Oculus Quest devices and APKs for it can be downloaded from sidequestvr.com and itch.io. It's based on the OpenXR SDK hello_xr sample program.
One problem with the cu... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75562902",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How can I type hint python-polars dataframe row values? I would like to be able to provide seamless type hints for a developer API that exposes a polars.DataFrame to the developer. Currently, in every IDE I've checked, if I do something like this...
tbl : polars.DataFrame[MyType] = polars.DataFrame([])
row1 = tbl.fr... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75562903",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: ConstraintLayout - marginEnd has no effect I'm trying to set the end margin attribute for a view as following:
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75562904",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: Python API OpenAI the openai API in python is used and an error is added in the context parameter request (in order for the history to be taken into account)
response = openai.Completion.create(
model="text-davinci-003",
prompt=prompt,
temperature=0.7,
max_tokens=2586,
top_p=1,
frequency_penalty=0,... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75562905",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: Bar chart labeled with % relative to the Months in X axis I have a data frame like this:
df <- data.frame(
month = month.name[1:6],
shirts = runif(6, min=1000, max=2000),
hats = runif(6, min=1000, max=2000)
) |>
pivot_longer(cols=c("shirts", "hats"), names_to="category", values_to="income")
d... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75562909",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: How to estimate how bad the wire delay can be when I am designing a chip? I am currently working on a program involves designing a Neural Network accelerator architecture. I don't have a very deep background in digital circuit, but I know long wires may incur heavy delay and hence affect frequency.
So how do I know ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75562910",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: Google Sheets Linked with Forms - Link Seems to be Broken When I Delete All Responses I am using Google Sheets to track student attendance in the college classes I teach. Last semester, I created 44 separate forms (one for each class meeting) all linked to the same Google Sheet (each form is linked to a different ta... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75562913",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: React aces show syntax errors I'm trying to figure out how to get javascript syntax validation in myreact-ace editor.
But the docs don't seem to cover how to do this?
I though that the onValidation() prop would provide a list of errors whenever the editor updates, but in the below example, nothing happens?
Ultimatle... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75562916",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: join two columns of different tables error as unrecognized name SELECT
station_id,
name,
number_of_rides AS number_of_rides_starting_at_station
FROM
(
SELECT
start_station_id,
-- Error here as unrecognized name.
COUNT(*)number_of_rides
FROM `bigquery-public-data.new_york_citibike.citibik... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75562917",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-3"
} |
Q: How to translate comments that are in different languages I have a website where people post comments in a discussion area. Mostly it's in English, but sometimes someone will post a comment in another language. I would like to add a translate button to each comment, but the only options I can find will only translat... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75562926",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Windows Tablet directly capture photo for browser upload I'm try to achieve somehow a functionality on Windows 10/11 browser like in mobile browsers on in Android/iOS.
When I open an website there i need to attach a picture in mobile when I press the button first there menu for camera or search files already stored ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75562927",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Error while using red.render() in node js while trying to display a message I am trying to make a simple "reset password machanism", using HTML, node.js and MySql as the database. I am using
app.get('/password-reset', (req, res) => {
res.render('password-reset', {
showSuccessMessage: false,
showErrorMess... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75562930",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to stretch background from top to bottom? I am using an image as my background for my website, but it won't stretch from top to bottom.
This is what the webpage looks like:
As you can see in the bottom right corner, the image is tiling. This is my HTML:
<!doctype html>
<html lang="en" data-bs-theme="dark">
{% l... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75562931",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: How to resize an in-line image within Text in SwiftUI? I want to resize an in-line image that I added to a multi-line Text. How do I resize Image(systemName: "chevron.right") to be smaller? So far I tried adding .resizable(capInsets:) to the Image, but that didn't seem to have an effect.
This is what it looks like c... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75562933",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: OutOfMemoryError when I create model embeddings Just started learning huggingface transformers. I am trying to create embeddings of a large amount of text but I always run into outOfMemoryErrors. I am not sure what I am doing wrong. I am new to python and transformers. Here is my code below.
tokenizer = T5Tokenizer.... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75562937",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Is there any method or way to avoid goto statement in c but alternative way to work the code like goto statement? i am a beginner in the programing language "C".when i write the code i think that if i put all the code in a loop where there is condition like '''Do you want to continue'''.i searched many ways on the i... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75562939",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-5"
} |
Q: How to remove data-testid from production build I want to remove data-testid from the production build, so these attributes can't be found in the prod build
Particularly in this case, I need something that works with .tsx files
I know how to remove it using a function in components, but I think there should be a sma... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75562940",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to translate a postgresql search query to use criteriaBuilder I want to take this query using full text search in postgresql and be able to write it in spring boot using the CriteriaBuilder but without the native query using jpa functions
"SELECT * FROM ideas WHERE to_tsvector(name || description) @@ to_tsquery(... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75562942",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Override the default phone dialer app with a Cordova app when clicking in a phone number I'm trying to make my Cordova app open phone numbers on it and treat the selected number on the app.
When we click on a phone number in some apps, the number is opened on the default phone dialer of the phone. I thought that my ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75562944",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Getting weird error 'db.Close undefined (type *gorm.DB has no field or method Close) I am writing code for a pet-project working with golang 1.19.5, immundb and gorm.io (version 1.22.4) but once I create the db connection object using gorm.Open(xxx). I am able to use the AutoMigrate function from the gorm.DB structu... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75562946",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: Kotlin Native project builds but doesn't run from IntelliJ IDEA on M1 Mac after reinstalling ("runDebugExecutableNative SKIPPED") I've had IntelliJ IDEA on my M1 Mac but only really used it when I wanted to learn Kotlin Native, and started a small commandline project about a month ago.
I switched to building and edi... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75562947",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Cache doesn't update correctly I'm new to using Redux and I have an issue with cached information. I'm trying to create a register system. So I have a form component, and then I send all the information to a database with a REST API. For that, I'm using RTK queries. Then, when the server answers with a successful re... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75562950",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Global variable logic works on a project but not in another one there!
I'm studying some Node REST API's using a JSON file as my database. In my first project, I used global.fileName = "accounts.json"; to declare a global variable that deals with my "database" on my index.js, where I start my Express API. On my acco... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75562955",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How do make a POST/GET call when using the Tumblr API in C#? I'm trying to build a little program that uses Tumblr's API (https://www.tumblr.com/docs/en/api/v2) to fetch and scan a list of recent followers of your blog for spam users (default picture and no blog title), but I can't get any calls to work.
namespace F... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75562956",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Avoiding [Errno 22] Invalid argument when writing rapidly to csv/parquet im trying to write a dataframe to parquet file on 5 different threads, 5 different websockets. All streaming trade data. Within seconds of running the program, it will write anywhere from 40-200 rows of data before locking up and returning [E... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75562957",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Input 'required' attribute still triggers typescript error "type 'string | undefined' is not assignable to parameter of type 'string'" I'm trying to refactor from using useState to useRef when getting text input values in typescript - which I'm reading is the 'righter' way to do when we're not doing any extra manipu... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75562959",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to make a list of keywords to be searched with selenium? How can I make a list of words that should be searched for webscraping?
I made the code below but it only searches for a single keyword, I would like to create a list for example:
Cafeterias in Sao Paulo
coffee shops in london
coffee shops in italy
url = "... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75562965",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: when trying to enable SIP, Terminal reported: command not found in recovery mode macOS 13.2
Terminal in recovery mode tells me 'command not found (Many commands)
And I have no idea how to rectify this bc the command "export" is also not found.
Whilst in the normal working mode many commands are available.
When I do ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75562968",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-2"
} |
Q: Flutter - The operator '[]' isn't defined for the type 'Future>'. Try defining the operator '[]' i'am new in Flutter, and i am still learning, now i learn about Future,
so i have Future function to fetch data from API looks like this:
Future<List> _getDataTransaksi() async {
final response = await http.get(
... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75562973",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: data-bs-spy="scroll" not working how i wanted So i am studying bootstrap and made a website for training, but i cant make scroll spy to work properly.
<header class="navbar navbar-expand-lg sticky-top p-0" id="cabecalho">
<div class="container">
<img class="navbar-brand p-0 m-0" src="./images/head... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75562976",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: What scenarios should unlimitedStorage be used in chrome extensions? This question was probably quoted earlier as well (66454924) but my query didn't get resolved as per the comments.
So, as per the docs, unlimitedStorage permission have a note alongside which states:
This permission applies only to Web SQL Databas... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75562977",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: With bookdown: "No site generator found", yet all appears correct...? I have been happily enjoying bookdown for some time now... but today, when I try to Build Book I keep getting this message:
Error in rmarkdown::render_site(output_format = "bookdown::pdf_book", :
No site generator found.
It was working just yes... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75562978",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How can I identify lost internet connection and timeout MySQL upload in under 1 second? [while using AWS RDS and pymysql] Context:
I have a simple program that gets sensor data once per second and immediately uploads it to AWS RDS MySQL instance. However, I have very spotty network connection that constantly goes in... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75562979",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Keras LSTM return_sequences: INVALID_ARGUMENT: Cannot update variable with shape [16,1] using a Tensor with shape [2,1], shapes must be equal I'm trying to train an LSTM with Keras; here is my model:
def generate_model() -> keras.Model:
model = keras.Sequential()
model.add(keras.layers.LSTM(64, return_sequen... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75562981",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Checking the Numbers Object and it's Properties? I want to have my numbers object property returned with the string "Input number is..." followed by each property "MAX_VALUE", "MIN_VALUE", etc. What would be the best way to go about doing that? This is all I have of code for now, and I also want to check to see if i... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75562982",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: Global form validation in React-Admin In my React-Admin app, I'm using global form validation.
It mostly works as intended. Following the docs, I give the SimpleForm validate prop a function that returns an object with errors indexed by field.
But for one of the fields, I need to make a simple api call to check whet... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75562987",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: is there any python lib to query gcs bucket location We are developing for EU region, and one requirement is before writing to a gcs bucket, we need to make sure the bucket is in EU region, our creds has only Cloud Storage Object Admin permission, so we can not use the cloud.storage.Client(...).get_bucket() call
is ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75562988",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: in python after importing sys how can i import terminal Python
import sys
from terminal import *
it says error: import "terminal" could not be resolved
I am new so I am probably doing something stupid here
I was just following a tutorial to make the game of life in terminal
https://www.youtube.com/watch?v=bNsrHRJQd... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75562990",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "2"
} |
Q: Calling Function when i click the button on processing I so Im making this graphing application. Its with an application called processing. Im pretty sure it uses java but it might be slightly different then java. Anyways So when you open the application (i think you need to have processing downloaded and open it fr... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75562991",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Python code to play arduino speaker based on ultra sonic sensor input Develop Python code to play arduino speaker based on ultra sonic sensor input
Write and submit a program, ranger_sounder.py, to vary a continuous tone on the speaker based on distance. Vary the frequency from 4 kHz for 2 cm, down to 200 Hz at 500... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75562992",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-2"
} |
Q: Can I delete a list from a nested list? I have created a nested list. The parent list contains 5 sublists. Can and how could I delete the last sublist from the parent list? I have tried:
tableau[tableau.Count - 1].Clear();
The items are removed, but the parent list count remains the same at 5. I also tried .Remove... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75562996",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Discord.py kickall command I am trying to make a command that can kick all but all it does is print it can't kick my Bots name how would i fix this
@client.command()
async def kickall(ctx, *, reason=None):
if ctx.message.author.top_role.permissions.administrator:
for member in ctx.guild.members:
tr... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75562998",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to implement 3Des encryption on Zip file in C# We have to implement 3Des encryption and decryption on zip file. Basically We are have to create zip file and then we have to apply 3Des encryption.
If anyone know how we can implement this type of functionality then please share your inputs.
Thanks
Nilesh
We have n... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75563001",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-4"
} |
Q: Why does my code only find some Bombs in the GridPanel? I tried for some days to make a Loop to find Bombs surrounding the clicked Button. Therefore, I used a loop which doesn't work as well as I thought it would. Some Bombs are getting detected, some are invisible to the loop and I don't know why.
This is the Loop ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75563006",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to plot different columns from a file in gnuplot Say, I have a data file with N columns. How to plot using 1:2, 3:4, 5:6 & so on in gnuplot ?
For smaller N values, I tried,
plot 'datafile' u 1:2 w l, '' u 3:4 w l, '' u 5:6 w l ...
I got what I wanted. But clearly this isn't efficient and cumbersome.
A: plot for... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75563008",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Kendo React Circular progress-bar I'm using Kendo React for one of my project and I was wondering if Kendo React library offers Circular Progress Bar. I was able to find linear but not circular?
A: You can use their circular gauge
DEMO
import * as React from "react";
import * as ReactDOM from "react-dom";
import { ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75563010",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How can I build my project on linux for windows using pyarmor pack How can I build my project on linux for windows using pyarmor pack
Help please
| {
"language": "en",
"url": "https://stackoverflow.com/questions/75563011",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: SQLiteException on some Android 9, 10 devices when using CASE, WHEN TRUE The following SQL statement works fine on my Android test devices (Android 13):
SELECT *
FROM portfolio
JOIN holdingCalculations
ON portfolio.uid = holdingCalculations.uid
ORDER BY calc_num_transactions = 0, CASE use_local_currency_for_totals W... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75563013",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: SORT range must be single row or single While Data is in vertical column
I Trying to return month end rows data from daily data in google sheets
Using Formula
=sort(sortn(sort({text(B6:AY6,"mmmm-yyyy"),B6:AY7},1,TRUE,COLUMN(AY6:BY),1),9^9,2,1,TRUE),2,TRUE)
When the data is in horizontal formula works but when data ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75563015",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Does using a lock mitigate issues handled by the volatile keyword? I have a Foo class that I think should not be thread-safe, yet I can't seem to reproduce the issue. One method it has is update which sets the current map from the parameter and mutate the old map. The other method is read which always gets a value f... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75563021",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: Java - Delete directory using File.deleteOnExit() I am learning how to use deleteOnExit() to delete a directory. As far as I know, it can only delete a folder when it is empty. So below is the method that recursively wiping the child files / folders, then eventually the root.
static void deleteFile(File path){
i... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75563022",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: how can you ask for n input from a user and then ask for more inputs based on those n inputs in python? For example: how many products do you sell? input = 2, cookies milk
cookies:
input: how much they cost:
input: sales price:
milk:
input: how much they cost:
input: sales price:
prod_num - (str(input("how many prod... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75563024",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |