instruction stringlengths 0 30k ⌀ |
|---|
I am using a storybook version 8. I have a select component that takes in two arguments: number and function. Function is being called on select change event and should change number argument to a new selected value but for some reason it is not working correctly. It is not updating the number when new one is selected.... |
|sass|extjs|sencha-architect|extjs7| |
null |
How do I remove the gaps between the subplots on a mosaic? The traditional way does not work with mosaics:
plt.subplots_adjust(wspace=0, hspace=0)
I also tried using `gridspec_kw`, but no luck.
import matplotlib.pyplot as plt
import numpy as np
ax = plt.figure(layout="constrained").su... |
|python|matplotlib|subplot| |
I suspect that it doesn't work because the option 'Option' is not in the array options. Make sure that exactly such a string 'Option' is present in the array. For example, if you have this array
options = [
new Option('Option1'),
new Option('Option2'),
new Option('Option3'),
];... |
I was trying to not repeat the same code in different switch blocks and could not figure out how to break out a switch script except to return and exit the procedure.
My question is, Is wrapping the switch in a while loop simply to break, when desired, a terrible thing to do and is there a better way?
Thank you.... |
Is there a proper way to "break" out of a switch script and remain in the procedure other than wrapping in a loop? |
Can't resolve undefined reference to box2D C++ |
|c++|windows|compiler-errors|g++|box2d| |
null |
I stumbled on this class when browsing the internet this morning: [`CStrBufT`][1].
I understand that it is meant to be used instead of:
CString::GetBuffer
CString::GetBufferSetLength
CString::ReleaseBuffer
But the documentation lacks a usage example, and my searches on the internet don't seem to ... |
The standard (even as early as [ECMA-262 1st Ed., §15.3.2.1](https://ecma-international.org/wp-content/uploads/ECMA-262_1st_edition_june_1997.pdf), and all later ones too) specifies that invoking the `Function` constructor will only parse and compile the code it is given, not execute it; so on paper, and in modern, mai... |
I don't know if you've already found a solution, but I think the error is in how you animate the frame.
Window frames can be animated with
`window.setFrame(newFrame, display: true, animate: withAnimation)` (https://developer.apple.com/documentation/appkit/nswindow/1419519-setframe)
The animation behaviour of thi... |
I have setup the rocketmq Dashboard and I was exploring it.
What exactly is the NameServerAddressList?. It is somehow defaulted to 127.0.0.1:9876.
[![enter image description here][1]][1]
Also, The dashboard looks empty, How do I monitor RocketMQ clusters.
Do I need to create clusters, topics, producers, consu... |
i got some unfortunate situation here,
I'm using a dual boot computer ( Ubuntu - win10 ) and while I was transfering / writing data on a NTFS HDD on ubuntu, Ubuntu froze for whatever reason so I got to manually reboot the computer.
After reboot the HDD wasn't seen anymore by Ubuntu, and in windows, it was still seen ... |
HDD filesystem turned to RAW after freeze / manual reboot |
|hard-drive| |
I have table a with records and
c1
| 1 1
| 2 1
| 3 1
| 4 1
Table b with records
c3
| 1 1
| 2 1
while running this code
select * from a
inner join b on a.c1=b.c3;
I'm getting output
c1 c3
| 1 1 1
| 2 1 1
| 3 1 1
| 4 1 1
| 5 ... |
MaterialApp(
theme: lightTheme(),
darkTheme: darkTheme(),
themeAnimationCurve: Curves.easeInToLinear,
themeAnimationDuration: const Duration(milliseconds: 1000),
// themeAnimationStyle: AnimationStyle.noAnimation, // disable it
... |
|excel|vba| |
I debugged the code using `{{ dd($order->id) }}` and received the order id value of 100238. However, when I used the following:
```html
<form action="{{ route('admin.pos.update_order', ['id' => $order->id]) }}" method="post">
```
It did not work. When I replaced `$order->id` with the actual id value like this:... |
I found out that there was some secret info committed early in my git repository. Although
it could've been found a long time ago, I still wanted to remove it, so I made a new clone
and then ran
```shell
git-filter-repo --path file1.txt --path file2.txt --invert-paths --replace-text replacements.txt --force
```
... |
Number of commits double after fetching from force pushed repo |
|git|git-filter-repo| |
null |
I had an assignment in which I had to write my own calloc function (as well as a few other Libc functions), the only built-in functions allowed were `malloc()` and `free()`.
For context: the grading for my assignment is fully automated, some tests are run against my code on a server, and I get back either PASS or FA... |
{"Voters":[{"Id":1145388,"DisplayName":"Stephen Ostermiller"}],"SiteSpecificCloseReasonIds":[13]} |
I was trying to explore data using Python and this is my code :
```
import pandas as pd
import matplotlib.pyplot as plt
import seaborn as sns
df = pd.read_csv('transactions-pet_store-clean.csv')
common_category_cat = df[df['Product_Line'] == 'Cat'].groupby('Product_Category')['Quantity'].sum().idxmax()
com... |
{"Voters":[{"Id":785241,"DisplayName":"Daedalus"},{"Id":14853083,"DisplayName":"Tangentially Perpendicular"},{"Id":839601,"DisplayName":"gnat"}],"SiteSpecificCloseReasonIds":[18]} |
{"Voters":[{"Id":8431111,"DisplayName":"J_H"},{"Id":19639413,"DisplayName":"pmacfarlane"},{"Id":9214357,"DisplayName":"Zephyr"}],"SiteSpecificCloseReasonIds":[18]} |
<!-- language: lang-js -->
const text5 = document.querySelector('#p3');
text5.textContent = "Hello World";
const Can = document.querySelector('#Canc');
Can.textContent = '!! No Meeting !!';
<!-- language: lang-css -->
div#Can span#Orig {
display: show;
}
div#Can:hover sp... |
Use `connect()` and `disconnect()`. You can then change the values of any `AudioNode` to change the sound, for example here, repeated `mouseover` events increase the `frequency`.
(The button is because `AudioContext` requires a user action to run in Snippet.)
<!-- begin snippet: js hide: false console: true babe... |
In order for Jackson to deserialize a Json, it either needs a default constructor or a method annotated with `@JsonCreator`. Without any of these two methods, Jackson is not able to instantiate an instance and raises an `InvalidDefinitionException`.
With a default constructor, Jackson first creates a default instanc... |
Remove spaces left and right side of =
-->.....whitelist=ABCD.... |
```
function changeToCross() {
let menu = document.getElementById('navMenu');
let src = '../images/menu.png';
if (menu.src === src) {
menu.src = '../images/close.svg';
} else {
menu.src = src;
}
}
```
I want to change image source when it will be clicked but this co... |
I want make JS toggle button.. How Can I Fix It? |
|javascript|html|css| |
null |
The following code (at [Playground here](https://www.typescriptlang.org/play?#code/MYGwhgzhAEDKCuAHApgJwMLigKAN7ekOgDN4A7YACjFQHMAuaSgW2UYBcALASwgEpoAXgB80LrwH4i06KmTt4qMtBq0CRAL7Yt2UJBgARNNwBuyACaZ90ZAA92yMuZgIUGLBDzrCJmtzAARiDIQmI8EAB0pBSULMgCItCsfADc2ti6APZkEOzQmQEAVoyuaFZQoWTIAO7QRqimFuUQlKlAA)) gives an error `Typ... |
In Typescript "extends" works, but error when assigning derived to super |
|typescript| |
You'd have to edit file `gradle/libs.versions.toml` and add in TOML format:
[versions]
androidx_media3 = '1.3.0'
[libraries]
androidx_media3_exoplayer = { module = "androidx.media3:media3-exoplayer", version.ref = "androidx_media3" }
androidx_media3_exoplayer_dash = { module = "and... |
|tcl| |
To achive that,
You need to add `appBarTheme: AppBarTheme(color: Colors.blue),` in *MaterialApp/theme*
For Example:
MaterialApp(
title: 'App name',
// initialRoute: ,
navigatorKey: _navigator,
theme: ThemeData(
appBarTheme: AppBarTheme( //Add here
... |
1. One can also use `about:config` interface to change the ports above (which will eventually add them to `prefs.js`).
2. In Debian taskbar icon of each instance can be set by removing `/usr/share/applications/torbrowser.desktop` and replacing `Tor Browser2/Browser/browser/chrome/icons/default/default128.png`. |
This is achieved using Box<dyn Any> and the downcast() method, which consumes the boxed trait object and returns a 'Result' containing either the downcasted object or an error if the types don't match. I would need your specific code to provide an implementation for your situation, but here's an example of its use:
... |
I have been reading up about multiple ways one can implement refresh/access token logic. I've received mixed answers on how to tackle it. My API currently requires username/password authentication Where a short life PASETO token is issued, then verified via middleware per each request.
**Here is my current middlewar... |
How to implement Access / Refresh Tokens |
|go|jwt|middleware|go-gin|paseto| |
{"name":"INVALID_REQUEST","message":"Request is not well-formed, syntactically incorrect, or violates schema.","debug_id":"7bf4f312d5676","details":[{"field":"/amount/value","value":"60.00","location":"BODY","issue":"calculation_error","description":"Amount is invalid."}],"links":[{"href":"https://developer.paypal.... |
I am creating catchment zones based on points. I want to know the demographics of the catchment zones. Right now I have two shape files - one with the Census tracts and all of the demographic data and another with Thiessen polygons around points to create the catchment zones.
I need the average of all tracts within ... |
Using [Python][1] (3.10.14 at the time of writing), how could one build a 3D mesh object (which can be saved in either STL, PLY or GLB/GLTF format) using:
- a 3D path as the sweep axis,
- a 2D rectangular shape
with those constraints:
- the 3D path is a true 3D path, which means that each coordinate varies i... |
Sweep shape along 3D path in Python |
|python|3d|computational-geometry|trimesh| |
The problem is before adding a new container, after I added the max number of stock-details-container and I remove one of it then I changed the selected value of the other containers. When I add a new container, the new added container disabled the previously selected item in the other containers even if it is not thei... |
This code manipulates the category page.
```
<?php
function target_main_category_query_atakanau( $query ) {
if ( ! is_admin() && $query->is_main_query() && $query->is_category() && $query->get_queried_object()->parent == 0 ) {
$query->set( 'posts_per_page', 2 );
$query->set( 'no_found_rows', true );
//... |
How to update arg in storybook with a function? |
|javascript|reactjs|typescript|storybook| |
null |
{"Voters":[{"Id":23208226,"DisplayName":"swapnil dhawane"}],"DeleteType":1} |
I'm new into flutter and I want to code a Flashcard App. But at the moment, I don't know how to continue coding. I'm stuck at adding a new flashcard and saving the learning set with the title and description and I literally don't find something similar on yt.
What's the best way to solve this problem?
And is it somet... |
Flutter: How to add items and save it in local storage? |
|arrays|flutter|list|save| |
null |
Your code first calls `failingRequest`, which creates a promise that is rejected immediately. JavaScript pushes this rejected promise to the [microtask queue to be processed right after the `main` function has completed][1].
[JavaScript continues the execution of `main`][2] and when it runs `await sleep(4000)`, it r... |
{"Voters":[{"Id":23208226,"DisplayName":"swapnil dhawane"}]} |
|java|android|navigation-drawer| |
Problem with merge documents with DOM and PHP
I need to include a part of an html file from the server in an existing document in a specific position within the original file, for example using a line number within the original document or below a spedcific node using DOM, how can I do it?
I tried various ways bu... |
PHP Dom merge documents |
|php|dom|document| |
null |
This worked for me:
import { Amplify } from "aws-amplify";
import amplifyconfig from "./amplifyconfiguration.json";
Amplify.configure(amplifyconfig);
|
I just installed Ubuntu 22.04 LTS in VirtualBox, I have assigned **10GB** of RAM, **8** Processors and **256MB** with **3D** video memory to the virtual machine.
I have tried changing the hardware config in virtualbox settings and updating the virtual machine along with installing the vbox guest additions, but ... |
Why when I want to open a folder from Visual Studio Code does the screen go crazy? |
|linux|ubuntu|virtual-machine|virtualbox|ubuntu-22.04| |
null |
[enter image description here][1]I just installed Ubuntu 22.04 LTS in VirtualBox, I have assigned **10GB** of RAM, **8** Processors and **256MB** with **3D** video memory to the virtual machine.
I have tried changing the hardware config in virtualbox settings and updating the virtual machine along with installi... |
Let's assume I have the following code:
```js
(function () {
const largeObject = provideSomeLargeObject();
const largeStaticListOfElements = document.querySelectorAll('span');
const someElementThatWillBeRemoved = document.getElementById('i-will-be-removed');
const elms = document.getElements... |
Would event listeners prevent garbage collecting objects referenced in outer function scopes? |
|javascript|memory|memory-leaks|reference|garbage-collection| |
[enter image description here][1]
I just installed Ubuntu 22.04 LTS in VirtualBox, I have assigned **10GB** of RAM, **8** Processors and **256MB** with **3D** video memory to the virtual machine.
I have tried changing the hardware config in virtualbox settings and updating the virtual machine along with inst... |
Why i'm getting more records while using inner join MYSQL |
|mysql| |
null |
I need to improve geenral heap sort using C# multithreading.
I dont have clear idea about implementation of improvements.
One of the suggestions which i got is to separate array for N part and heapsort each part in specific thread.
And after merge each part of array.
In this case i think it will not be so e... |
Heap sort with multithreading |
|c#|multithreading|algorithm|sorting|heapsort| |
null |
I have a big problem with my printer Neptune 3 Pro. I used Cura, Orca slicer and Prusa slicer and the result are the same. I can't figuring out how can fix the problem. When I print the PLA I got the result like on image. The PLA won't stick on the plate. I clean the plate many times, I calibrate the Z hight. Can you p... |
Neptune 3 Pro, Prusa slicer won't stick on plate |
|printing|3d|neptune| |
{"Voters":[{"Id":807126,"DisplayName":"Doug Stevenson"},{"Id":2851937,"DisplayName":"Jay"},{"Id":466862,"DisplayName":"Mark Rotteveel"}],"SiteSpecificCloseReasonIds":[13]} |
I have created a spring boot app (v3.2.4). I have Chrome installed and installed relevant chrome driver (v 123.0.6312.86 (Official Build) (64-bit)). I have got the selenium from maven (v4.19.1).
I was getting start to build a web scraper. I have literally created a bean of ChromeDriver, set the property to the chro... |
Selenium crashes upon starting in Java |
|java|spring-boot|selenium-webdriver| |
Hey here is an way to get inviter as rest action
```java
private RestAction<User> getInviter(Guild guild, User user) {
return guild.retrieveAuditLogs().type(ActionType.INVITE_CREATE).map(auditLogs -> {
for (AuditLogEntry entry : auditLogs) {
if (entry.getTargetId().equals(us... |
Change this line of code :
chain = cl.user_session.set("chain")
to:
chain = cl.user_session.get("chain")
Because we are already setting the chain variable above, here we have to get that. |
{"Voters":[{"Id":7733418,"DisplayName":"Yunnosch"},{"Id":238704,"DisplayName":"President James K. Polk"},{"Id":37213,"DisplayName":"duffymo"}],"SiteSpecificCloseReasonIds":[18]} |
How Do Schema migration in mongoose & mongodb ?
i wanna know the how to do this i tried to see this in other resource on net i'm not able to find.
please give me example code also if possible then how do. i wanna do in my production environments |