text string | meta dict |
|---|---|
Q: Puppeteer return value without eval So i have created a function that doesnt work as expected, im a completely newb in java script i appreciate any guidance given
current code is
async function bs(client){
const browser = await puppeteer.launch({headless: false, args: minimal_args});
const page = await browser.ne... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75639844",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: Trouble formatting table extracted from HTML to CSV format using javascript in browser console I am trying to extract a table from an HTML format on this website (pick any item from the dropdown box) and I have managed to write a javascript console code that does a pretty good job at extracting the table. However, I... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75639845",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: Adding color to histogram using ggplot and facet_wrap I need help adding color to the two histograms produced using ggplot and facet_wrap
What am I missing:
ObesityDataSet_raw_and_data_sinthetic %>%
ggplot(aes(x=Height)) +
geom_histogram(bins = 14)+
facet_wrap(~Gender)
It would look like this
A: To add colo... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75639846",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: Selenium Unable to find text in webpage I want to locate the first result in the search of this page https://www.se.com/ww/en/search/rxm4ab2bd
with
:"RXM4AB2BD | Product"
<div dir="auto" class="result-card"><a class="link-area" href="https://www.se.com/ww/en/product/RXM4AB2BD"><uiaas-search-result-product imagecon... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75639848",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: React-native SvgUri how to send path for image? Hi i am making a small component for input and when i try to send data for icon prop i get error this error.
error: components\commonComponents\IconInput.js: components\commonComponents\IconInput.js:Invalid call at line 20: require("" + this.props.iconName)
This is my ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75639849",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Unrecognized function or variable 'plotGrid' I'm using MATLAB R2022b.
and I get the error :
Unrecognized function or variable 'plotGrid'.
when I use plotGrid. I thought I'm using it wrongly, so I copy pasted an example of MATLAB that is using it:
https://au.mathworks.com/help/5g/ug/nr-channel-estimation-using-csirs.... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75639851",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: React single page Tengo un componente para el contenido de mi pagina... es el siguiente:
import React from 'react';
import '../styles/content.css';
import Home from './home';
const Content = ()=>{
return(
<div className='contain-content'>
<Home/>
</div>
);
}
expo... | {
"language": "es",
"url": "https://stackoverflow.com/questions/75639853",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Python code using While Loops to print the minimum number of quarters, dimes etc to produce the given amt of change Using While loops in Python I have to create a code that will give the minimum amount of quarters, dimes, nickels, pennies needed to produce the given amount of change. The change in this case is 49. T... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75639854",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-4"
} |
Q: Rust Axum Get Full URI request Trying to get the full request URI (scheme + authority + path)
I have found the discussion: https://github.com/tokio-rs/axum/discussions/1149 which says that Request.uri() should have it.
So I tried the following:
use axum::body::Body;
use axum::http::Request;
use axum::routing::get;
u... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75639855",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: After adding foreign key annotations, data is still null in Swagger, using Entity Framework Core I am having trouble fetching data from foreign key table.
It is recognised in swagger, but the JSON list returns null.
Here's a look at my Models:
public class User
{
[Key]
public int UserID { get; set; }
... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75639856",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: If ctx.message.mentions != None always returns true with Discord.py Custom Bot I'm working on a custom Discord bot, and I'm currently trying to make a /spam (message) (amount) command as my first full Discord.py project, but I'm currently running into a problem where when I check if the (message) parameter contains ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75639857",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Dynamic menu using JSON script producing no results I'm trying to produce a menu system that will load buttons that go to a set of videos dynamically, I want to give the menu system button data via a JSON script however I'm having trouble getting the data to display, I have already confirmed my script works with a b... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75639858",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Django+PostgreSQL: creating user with UserCreationForm saves it to auth_user table, but not to the table created for the User model I'm learning Django and now developing a simple food blog app for practice, using Django 4.1 and PostgreSQL. Since I'm not quite good yet at understanding how some concepts work in prac... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75639859",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: What causes: Xcode "No such module 'exp_lib' error for my pure swift app's statement: "import exp_lib"? Created static lib Swift project exp_lib and built its exp_lib.a file.
Created Swift app and dragged in .a file.
Put .a is in Build Phases > Link Binary With Libraries
I put absolute path to .a in Build Settings >... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75639863",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: ERROR TypeError: undefined is not an object (evaluating 'date.toISOString') While working on a React Native project ,I encountered the following error:
TypeError: undefined is not an object (evaluating 'date.toISOString')
As I am practicing as a newbie with 'academind' course, my code is quite similar to his code o... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75639866",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: 'Object is currently in use elsewhere.' while calling draw string when new bitmap is created in each thread I'm trying to make a paint operation where each thread creates a bitmap and a new graphics. That thread draws onto the bitmap until finished then finally draws the bitmap to the control surface which gets lock... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75639869",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Why I'm I getting a 405 Method Not Allowed when submitting forms - Laravel I'm working on a countdown website where I have 2 forms in the same view, every time I submit 1 of those forms I'm getting a error that says:
"message": "The POST method is not supported for route /. Supported methods: GET, HEAD."
The method... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75639870",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Javascript dynamic import returning promise instead of object I'm having an issue coding a dynamic list in JavaScript. I basically have a simple two-layer system that will dynamically generate each list item and pair it with a object which will then be returned to the list with some basic properties. In short each l... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75639871",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: GCP pubsub topic metadata not being delivered I have a Google cloud storage bucket that in projectA that I am trying to configure to send notifications on object creation to a topic in projectB. I do this by the following terraform:
resource "google_storage_notification" "my_bucket_notification" {
bucket ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75639874",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Why dataloader is grouping the captions in wrongly manner? When checked with my __getitem__ function, it is giving an image, caption, and class_id properly. An Image is a tensor of size [3, 256, 256] and a caption is a list of 20 elements.
But when I observed the dataloader, it is grouping captions in the wrong way.... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75639876",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to use tailwindCSS in .hbs file I am facing issues while using tailwindCss in hbs file . Can someone tell me the procedure of integrating the tailwindCss in .hbs file?
I have tried many things but the inline property of tailwindcss is not applying to any element.
| {
"language": "en",
"url": "https://stackoverflow.com/questions/75639878",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Tensorflow is installed in the conda environment, but I can't access any of its attribute functions I have set up a virtual environment using anaconda, and I have successfully installed the relevant libraries to set up tensorflow.
The commands that I ran are:
conda activate tf
conda install -c anaconda tensorflow
T... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75639881",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Flink complains Sort on a non-time-attribute field is not supported when group by proctime I am using Flink 1.12,
I write a simple flink code as follows, it reads Stock record from StockSource, each Stock consists of three fields: id,trade_date,price. pt is the proctime.
When I run the sql as follows, flink complain... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75639883",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Building a Form Here is my situation:
Company A hire new agents and has them fill out a form. Company B is the marketing agency that also needs the data inputed in that original form. Currently they are having to fill out 2 forms.
Is it possible for me to create a JS form that the new agent fills out and the data in... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75639886",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: Can't put another gif aside on video using ffmpeg I want to put 2 gifs side by side onto a video. I use code:
ffmpeg -i tt108_5.mp4 -ignore_loop 0 -i e:\gals\flags\Russie.gif -ignore_loop 0 -i e:\gals\flags\Ukraine.gif -filter_complex \
"[1:v][0:v]scale2ref=oh*mdar:ih/5[ua][b];[ua]setsar=1,format=yuva420p,colorchann... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75639887",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How do you implement a speech-to-text application with Speech Framework without the AVAudioSession class on MacOS? How do you implement a speech-to-text application with Speech Framework without the AVAudioSession class on MacOS?
This example for iOS uses AVAudioSession but doesn't work for MacOS without using Catal... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75639890",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Im trying to make a roblox game where you gain jump power each jump, and im having some errors the error i received when code entered [my code]
(https://i.stack.imgur.com/OKOzW.png)
A: your script looks good, when i first started lua roblox a got the same error while trying to check the players.
Your script runs be... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75639892",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: Students to record, name-space-score and prints the score in decreasing order enter image description here
Our lesson is about array, methods and for loop
Help me solve this problem
| {
"language": "en",
"url": "https://stackoverflow.com/questions/75639893",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-5"
} |
Q: How to add another Android App store to an App in admob with an Android store already I wish to know how, if it is possible to add another App from a supported App store to an App on admob that already have an Android store linked to it. The Apps in the two stores have same App package name and ads ID.
| {
"language": "en",
"url": "https://stackoverflow.com/questions/75639897",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: how do I make this program short and sweet? <html>
<body>
<h3>Java Script fPGM\<\h3>
<script>
var lamb = "Mary";
var array1 = ["handy","Lightweight",18,"Handsome"];
document.write("HELLO WORLD\n");
document.write("\n");
alert(array1);
for (var i = 0; i<5; i++) {
document.write("<br>");
document.write("hi");
}
<\sc... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75639898",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-5"
} |
Q: Creating a constrained 3D Random Walk [Python] I have an implementation of a random walk in 3D that can move in 6 directions at random to create random looking 3D points. Currently this approach creates purely random surface plots. I am trying to add the following constraints to the random walk 1) Make it symmetrica... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75639900",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Why did activating the Conda environment fail? Window11;
Default terminal is git-bash,
with zsh and oh-my-zsh;
https://dominikrys.com/posts/zsh-in-git-bash-on-windows/
But conda activate faild,
~/Desktop conda activate
__conda_exe:1: no such file or... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75639901",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Django - Authentication credentials were not provided for magiclink I am trying to create authenticaiton sytem where a user can loging using a magic link.
i am usign a custom user mode.
class UserAuthView(CreateAPIView):
http_method_names = ['post']
serializer_class = TestUserListSerializer
permission_cl... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75639903",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Broken image path on Vercel deployment I'm deploying an app on Vercel and everything builds correctly except for my header image. I just get the name of the image file. When I open the app through react on the local server, the logo image shows up as it should. Any ideas? Right now the image in just in the public fo... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75639904",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: error C2678 binary '==': no operator found which takes a left-hand operand of type 'const _Ty' (or there is no acceptable conversion) When I compile my c++ code, my visual studio 2022 jumps out an error, the error does not appear in my cpp file but in the xutility file.
template <class _InIt, class _Ty>
_NODISCARD c... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75639906",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-2"
} |
Q: How to return amount of a certain letters from a text file using a method Assuming I have a text file filled with random words or letters, I need to be able to increment the amount of times a letter is seen. For this example, I am trying to find the letter 'a'. While the program does compile and return a number, the... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75639907",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: Is there a way to transform a dataframe to latex codes generating table with multiple panels? Is there a way to transform a multi-indexed dataframe to latex codes generating table with multiple panels correspongding to the first-level index?
multi_index = pd.MultiIndex.from_product([["A", "B"], ["a", "b"]])
df=pd.Da... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75639909",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: LSTM Layer Longer Than Sequence Length I have been reading and watching videos on LSTM networks and how they interact with a sequence of input. In the examples I have found the number of LSTM nodes equals the input sequence length. For example, a sequence of 5 is fed into an LSTM layer of 5 nodes. This makes intuiti... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75639910",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to Get the Size of a Table in CnosDB The new version of CnosDB seems to be compatible to SQL. I am able to create a table as follows according to the manual:
CREATE TABLE air (
visibility DOUBLE,
temperature DOUBLE,
presssure DOUBLE,
TAGS(station)
);
But how could I get the size of each table? Is th... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75639911",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Problem with LST image downlad from Google Earth Engine I am not able to solve the issue with my code chunk here in Google Earth Engine.
The error I encounter are:
Unknown element type provided: object. Expected: ee.Image, ee.ImageCollection, ee.FeatureCollection, ee.Element or ee.ComputedObject.
LST: Layer error:... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75639912",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Create generative art circle pattern I have been teaching myself JavaScript, and I like the idea of code-generated art. I came across this design that is made up of circles changing in size and overlapped by different colors.
How would something like this reference image be coded in JavaScript? I'm guessing for loop... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75639915",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Why is Pandas converting an existing column from int to float when running apply? I am doing some operations on a pandas dataframe, specifically:
*
*Dropping a column
*Using the dataframe.apply() function to add a column based on an existing one
Here's the simplest test-case I've been able to create:
import pand... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75639919",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to find the most similar git commit based on a none-git repo? I'm a researcher. I have found that one paper using a modified version of angr. He doesn't fork the official angr repo. I'd like to compare it from the official repo to see what code he added for the paper.
I have done the following:
*
*the python p... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75639920",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Hosting a React website on Hostinger - error 403 I am trying to create a React website and get it hosted. I've built the website and it works fine on LocalHost:3000, however, problems arrise when I try to host it. I've used commands such as npm run build as well as yarn run build (hoping that it would change somethi... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75639921",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Where can I find the error log for CnosDB v2.2 (Docker version)? I am currently deploying a Docker version for CnosDB v2.2. After deploying the instance, I restart the CnosDB server. Some requests work but others don't.
Where can I find the error log file?
I tried these places: logs/debug.log, messages.log and logs/... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75639924",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Cannot install PHPExcel in Laravel 10 by psr-0 error I have tried to install Laravel Excel in Laravel 10, but I cannot install it.
I am using
composer require maatwebsite/excel
but when I install it, it give an error like this.
> Class PHPExcel_Properties located in
> D:/project/real/laravel/testexcel/vendor/phpoff... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75639928",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Combination of two word into a double word in TwinCAT 3? I am using TwinCAT 3.
I am trying to read the floating variable via MODBUS TCP.
The read variables are in a word array. How can I convert 2 word into float/real? I mean both word first want to combine and then save as another variable as DWORD.
Moreover when I... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75639930",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Getting specific Season and Episode info from OMDBAPI.com using PowerShell Getting a specific Season and Episode back for a Series.
I am getting the data back I want but I think it's in the wrong format.
Here is my code
$Result = [xml] (Invoke-WebRequest "http://www.omdbapi.com/?Season=1&Episode=2&t=Reacher&apikey=$... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75639934",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Extract google's first pages' all href links of any keywords listed in our excel sheet Option Explicit
Private chr As Selenium.ChromeDriver
Sub Test()
Dim i As Long
Dim lastrow As Long
lastrow = Sheet1.Cells(Rows.Count, "A").End(xlUp).row
For i = 2 To lastrow
Dim mykeyword As String
mykeyword = Sheet1.Cells(i, 1).Va... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75639935",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Can Chromium print JS source code before it's parsed? I want to print or log JS source before it's compiled into bytecode. I've tried various js-flags without success so far. Is it possible? If so, what's the process?
Example HTML/JS:
<html> <head>
<script type="text/javascript"> alert('newtext'); </script>
</hea... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75639937",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Why am I getting → error: no matching function for call to 'Date::Date()'? I have 2 classes, each holding private variables and initialized in their own respective constructors that use an initializer list.
The instructions for class Date states that:
In the public part of Date, add a constructor that takes a day, ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75639942",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Making computer attempt to "reread" usb port device Windows 10 This is a very short question but i just wanted to know if there was any way to make a program that would make my computer (windows 10) "reread" a USB port, bu "reread" i mean simulate the same process that would happen when unplugging and replugging a d... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75639944",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: How do I find a specific word that does not start with hyphen or a dot I'm in Visual Studio and want to search trough my CSS files to match a whole word that does not have a hyphen or dot or whitespace at the beginning or the end
For instance just I want to find the word table.
I don't want to get matches for words ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75639945",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Can I use an IEnumerable with different properties for each entry as a method argument? I'm relatively new to C#. I'm trying to use an IEnumerable collection as an argument to a C# function, but I want to define the properties that I want to return as well.
Suppose I have a car IEnumerable with properties such as co... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75639946",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: Access Complex Json value from URL I am trying to access the JSON content from the below URL and parse to extract and print the date value of "data.content.containers.container.locationDateTime"
iff the
"data.content.containers.container.label " has been set as "Empty Equipment Returned"
$url = 'https://elines.cosc... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75639953",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-2"
} |
Q: Forgot user password for the command line - Using code server on NAS I have code server running in a docker container on a Synology box. Everything works great but I need to install pip. So, I ran the command sudo apt-get install python3-pip, however to execute this I need my passord for the user 'abc' I don't remem... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75639955",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-2"
} |
Q: How to filter a trasaction model in django I am trying to make transctions between two users.
models.py
class Trasaction(models.Model):
sender = models.ForeignKey(
Account, on_delete=models.PROTECT
)
receiver = models.ForeignKey(
Account, on_delete=models.PROTECT
)
amount = models... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75639956",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "2"
} |
Q: Alert when color changes_Code in Pine Script on Tradingview I want to get alert on tradingview when color changes to green, it pop-up an alert "Buy" and when color changes to orange it goes with alert "Sell".
But the script keeps showing up "Script could not be translated from: , title="Buy", message="green buy")"
... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75639957",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Create a GUI for Undirected graph For the classes below, I want to go through a file called file.txt of type: 0 1 {'weight': 7} in which 0 and 1 are nodes ID. I want a GUI class that iterates through the file and displays the nodes and edges (for the connected nodes only). I want the nodes to be clickable items (lik... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75639960",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-2"
} |
Q: html anchor href download sees network failure but same line works sans download and pasted in address bar Until the lastest disaster from the Chromium team the following worked perfectly
<td valign="top">
<a href="https://chrysalis-systems.net/shared/tmp/dfmapbCNAPQ1.dot" download="">
<button type="button... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75639961",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to scroll up animation in backLayerContent in jetpack compose I want to scroll first backLayerContent with frontLayerContent in BackdropScaffold. I want to Scroll Up animation inside my backLayerContent in Icon & Text. I am trying to learning from this article about AnimatedContent, but it is very hard to unders... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75639962",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How can I use GeoDataframe Points and Linestrings to build a Networkx graph? I have 2 GeoDataframes, one is points object, the other is Linestrings. Points are on Linestrings. How can I use these 2 gdfs to build a networkx graph?
I hope when I plot the graph, it will be consistent with realistic locations of GeoData... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75639963",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Nextjs app is not recognizing the js and styling of tw-elements library I want to use tw-elemts library with my Nextjs application, but every time I copy a code of some random components its styling and behavior is not working. I have followed all the steps int he quickstart and additionally I put an useEffect for i... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75639969",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: FuncAnimation: Cannot animate a point and a line at the same time I am trying to make an animated plot to show the behavior of a simple harmonic oscillator. I would like for this animation to be a combination of the following two plots. That is, I would like the red square to go up and down, and on the same plot I w... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75639970",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How do you remove unused imports using GolangCI I enabled goimports in my GolangCI tool using my makefile and it's able to spot unused imports but is not automatically remove them. How do I enable my golangCI tool to remove the unused imports automatically?
Below is my makefile command for the golangci linting, I am... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75639971",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to reference resources in the default value of a Terraform variable(type: tuple(object))? I'm trying to deploy multiple ec2 instances. This requires a variable below.
Post my variables:
variable "configuration" {
#description = "The total configuration, List of Objects/Dictionary"
default = [
{
"ap... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75639974",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Rails 7 Error: undefined method `javascript_pack_tag' for # I have this on my application.rb, I wanted to put the stylesheets and the javascript tag, however, this would throw an error:
I commented it here as this will throw an error. I am currently using the default one:
<%= stylesheet_link_tag "application", "da... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75639978",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: r survey package: Geometric means adjusted for covariates From here:
library(survey)
data(nhanes)
nhanes_design <- svydesign(id=~SDMVPSU,
strata=~SDMVSTRA,
weights=~WTMEC2YR,
nest=TRUE, data=nhanes)
agesexmodel <- svyglm(HI_CHOL ~ agec... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75639980",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Django css and javascript app not served in production I have a django project which in development mode css are loaded just fine but not in production.
In my settings.py file I've set these trhee variables
STATIC_ROOT = BASE_DIR / 'staticfiles/' STATIC_URL = 'static/' STATICFILES_DIRS = [ BASE_DIR / 'static', ]
I a... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75639982",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Convert mutable 2D array of pairs to a static 2D array in kotlin How can I convert:
mutableListOf<MutableList<Pair<Int, Int>>>
To a:
Array<Array<Pair<Int,Int>>>
I'm pretty new in the language of Kotlin, I thought that I can loop for the entire 2D array and put the values in the new one, but I was wondering if there'... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75639983",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: Ubuntu 22.04 need to update system without SSL Distributor ID: Ubuntu
Description: Ubuntu 22.04 LTS
Release: 22.04
Codename: jammy
Need "apt update" but without update Openssl
Need to keep *libssl1.1_1.1.1f-1ubuntu2.12_amd64.deb *and not update.
| {
"language": "en",
"url": "https://stackoverflow.com/questions/75639985",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: I am running unit test using Sentinel. Can I get the test result summary using junit AbstractTestResultAction? I am running unit test on sentinel policies using the command “sentinel test test-case-folder”in Jenkins. However, the test results are too extensive, only option available is to provide -json flag while ru... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75639987",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Homework Help - Python For Data Analytics (Linear Regression Modelling) Part I:
Perform linear regression modelling to predict the delay in days (between the Planned
and Actual date) in processing the claims, explaining the approach taken, including
any further data pre-processing needed for modelling.
Part II:
Disc... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75639988",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: While(1) error in C language while working with characters # enter image description hereI made a character detector but when I put the While(1) code, the program seems to repeat the first two lines twice. I've got no idea why.
The error after I tried putting a while(1)
| {
"language": "en",
"url": "https://stackoverflow.com/questions/75639989",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-5"
} |
Q: Is there a way to get the x-axis coordinates of the left and right y axes when the x-axis is discrete in ggplot2? The title sort of says it all. With continuous data on the x-axis this is relatively easy to solve. The issue arises when the x-axis is categorial or discrete. I'd like to place annotations near the left... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75639990",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to configure vscode to find clang libraries Following this SO answer I created a FindClassDecls.cpp file and I try to setup a VSCode in macOS to find the required clang headers. So I've tried to add the output of these two commands:
*
*llvm-config --cflags and
*clang -E - -v < /dev/null 2>&1 | grep "^ /" | gr... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75639991",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Find a missing file inside Bootstrap. please i need this file
php-email-form.php
with bootstrap -> /assets/vendor/php-email-form/php-email-form.php
I did not find this file
| {
"language": "en",
"url": "https://stackoverflow.com/questions/75639992",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: Unity Character Not Moving With Axis System Hello I am trying to make a 2D simple platformer and I am a begginer in Unity. For some reason when I hit arrow keys, my character will play the forward animation, but doesn't move at all. Then when I release it plays the idle animation. Also it won't jump either. Below I ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75639993",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Why do i need Hibernate Validator to run a Custom Spring Validator? I have a custom spring validator to validates a role DTO class but when I called it using @Valid annotation or by any other means (like data binder validation or calling validate method) nothing happens. I didn't understand if i'm doing something wr... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75639994",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: Promotion to Power bi investors workspace We are in the process of giving our investors access to power bi reports and dashboards. Currently these reports and dashboards are in respective workspaces of each departments such as sales, marketing, finance, supply chain etc. each department has their own power bi deploy... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75640000",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Create a For Loop that creates if statements I'm in CS2 for my college program and I've been tasked with creating code for a PokerCard class which extends off of a Card class that carries a bunch of methods which it overrides. In this particular instance, I am overriding the toString method for testing and am in the... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75640001",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: C#: how to capture user input to the textbox while he is entering? When the user types to the textbox, I want to constantly capture the input and as soon as it matches certain condition the program will automatically submit for the user. I haven't found any sample code yet after searching.
| {
"language": "en",
"url": "https://stackoverflow.com/questions/75640004",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: Having a list of yaml cron expressions, how to get them properly in my config and then access them per SpEL expression? In a legacy job system on a Linux system I have a Cron expression like that
30 08 28 * 5 /home/me/myJob.sh
to let myJob run at 08:30 each 28th of a month and every Friday. "And" a Human Being woul... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75640005",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to handle changing the content on a PDF file in a Swift app? I am developing a PDF editing application on iOS using Swift and I am having trouble handling changes to the content on a PDF file. I have tried using Apple's PDFKit, but it does not support changing the content on a PDF.
I want to ask if there is any ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75640007",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-2"
} |
Q: How to safely package youtube api auth inside built electron app I want to include YouTube API auth (such as uploading videos to youtube) inside my electron app, which I build and release for the mac/win/linux desktop app stores.
I have a working proof of concept:
https://github.com/MartinBarker/electron-youtube-upl... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75640009",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Error for the usage of system exit function I have used the System.exit() function inside the if...else block, but
it is showing my syntax errors and runtime errors,
one of the major errors is:
main.java:58: error: method exit in class System cannot be applied to given types;
System.exit();
^
required: int
found: ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75640010",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: actual and formal argument lists differ in length no argument found enter image description here the program
enter image description here the part the causes the error
enter image description here the file that has the error
enter image description here the error
i cannot change the FractionTester file
only the reci... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75640011",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-4"
} |
Q: How to exchange files between Windows 10 guest VM on Linux Arch Host using qemu virtmanger and guestmount while VM is running I am using Garuda, an Arch based Distro with xfce desktop on a Lenovo Thinkpad T480 with i7 8 log. Cores and 32 GB RAM.
I installeda qemu and virt-manager via:
sudo pacman -S qemu virt-manage... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75640014",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Following the Ruby on Rails Tutorial: Microposts Controller Test Error when I tested the Microposts controller, this is what it shows:
1st Error:
Failure:
MicropostsControllerTest#test_should_create_micropost
"Micropost.count" didn't change by 1.
Expected: 3
Actual: 2
2nd Error:
Failure:
MicropostsControllerTest... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75640015",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: creating a view sql with intersect with multiple tables why can't i create this view with intersect
create view vw_Countries
as
select * from (
select distinct country from [dbo].[CO2_Data]
intersect
select distinct country from [dbo].[Maize_Production]
intersect
select distinct country from [dbo].[Maize_Yields]
in... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75640018",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How do I move box to the right corner <html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css"></link>
<script src="https://code.jquery.com/jquery-3.6.3.min.js"></script>
<title>PM</... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75640021",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: how to solve this error java.util.ConcurrentModificationException . i was writing a program to show occurence of letters using thread package thread;
import java.util.Map.Entry;
import java.util.HashMap;
import java.util.Scanner;
//concurrent modification error because of modifying map concurrently
class occuren... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75640024",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-2"
} |
Q: R: argument matches multiple formal arguments in R m <- metagen(TE=metagen$cohen.s.d, se=metagen$se, studlab=paste(metagen$author, metagen$year, sep=","), sm="Cohen'd", backtransf=TRUE)
Error in metagen(TE = metagen$cohen.s.d, se = metagen$se, studlab = paste(metagen$author, :
argument 2 matches multiple formal arg... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75640026",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How can i update the javascript file so the effect applies on the container and it contents only when the page is scrolled? I am creating a project where a container contains images that scrolls inside of the container when the user scrolls the page. the container it self grow or shrink based on the scroll speed so ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75640027",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to correctly layout websites? I want to learn how to correctly layout websites. But there are many forms and properties and tools.
What is the general rule for correctly create the webiste layout?
There are some old properties still usable and some new methods. How to do it?
| {
"language": "en",
"url": "https://stackoverflow.com/questions/75640028",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Appcheck token is not printing any more for Adroid (It was printing fine before) I have Flutter mobile app that I am currently developing locally while using real android device and Firebase emulator in the backend. I am using Appcheck and the token was printing all the time to the console. Recently, I noticed tha... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75640032",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How can i fix the error "Must use import to load ES Module"? I found this error while testing with jest.
Must use import to load ES Module: ...\node_modules\react-markdown\index.js
1 | import React from "react";
2 | import styled from "styled-components";
> 3 | import MDEditor from "@uiw/react-md-e... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75640034",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Why image always shows under buttons? The ImageView is placed under the two buttons in xml file, but when the ImageView is moved programmatically to the buttons' position, the buttons cover the ImageView.
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
x... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75640035",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Can't reach my flask api running on port 5000 from other devices on the network. Tried firewall. Tried router. Stumped I am working on an Android app using a Windows 11 pc as both the app dev environment and also a flask/python backend api for it.
I can get the app in the emulator to reach the api at its address, ie... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75640038",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: How to extract cardinality of key value pairs in a given column I have a table that contains two columns metric and dimensionName=dimensionValue key value pairs such that the data is stored as:
metric
dimensions
A
{x=1, y=2, z=3}
A
{x=1, y=2, z=3}
A
{x=2, y=2, z=3}
A
{x=2, y=3, z=3}
A
{x=3, y=4, z=3}... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75640039",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |