Id int64 4 8.51M | PostTypeId int64 1 7 | AcceptedAnswerId int64 7 75.5M ⌀ | ParentId int64 4 41.8M ⌀ | Score int64 -208 27.7k | ViewCount int64 11 12.4M ⌀ | Body stringlengths 0 45k | Title stringlengths 2 150 ⌀ | ContentLicense stringclasses 3
values | FavoriteCount int64 0 225 ⌀ | CreationDate stringdate 2008-07-31 21:42:52 2011-12-14 18:48:47 | LastActivityDate stringdate 2008-08-01 12:19:17 2023-03-05 04:40:26 | LastEditDate stringdate 2008-08-01 13:54:25 2023-03-05 03:12:45 ⌀ | LastEditorUserId int64 -1 21.3M ⌀ | OwnerUserId int64 -1 21.1M ⌀ | Tags listlengths 1 6 ⌀ |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
75,626,015 | 1 | null | null | 0 | 7 | The comments linkedIn api is not working like I would expect:
My code:
```
$res = Http::withHeaders([
"LinkedIn-Version" => "202301",
"X-Restli-Protocol-Version" => "2.0.0",
])
->withToken($post->account->bearer_token)
->pos... | LinkedIn comment api not working, wrong path variables | CC BY-SA 4.0 | null | 2023-03-03T10:40:28.950 | 2023-03-03T10:40:28.950 | null | null | 5,003,932 | [
"linkedin",
"linkedin-api",
"linkedin-jsapi"
] |
75,626,021 | 1 | null | null | -1 | 33 | How to receive information if a user has ever bought something but with using JOIN?
I have this query with subquery
```
SELECT C.*,
(SELECT TOP 1 1 FROM ORDERS O WHERE C.ID = O.CUSTOMER_ID ) AS HAS_ORDER
FROM CUSTOMERS C
```
I tried this
```
SELECT C.ID, C.NAME, C.SURNAME, COUNT(O.ID) AS ORDERS_COUNT
FROM CUSTOMERS C
... | Check if user orders something | CC BY-SA 4.0 | null | 2023-03-03T10:41:07.363 | 2023-03-03T10:49:58.067 | 2023-03-03T10:49:58.067 | 11,310,895 | 11,310,895 | [
"sql",
"sql-server"
] |
75,626,022 | 1 | null | null | 1 | 16 | I'm using the 4tw/cypress-drag-drop plugin to move a draggable element into a div. When the element is properly dragged and dropped, it should trigger some other elements to appear (such as an X on the draggable element to remove it). This is in Vue.js using VueDraggable.
In Cypress, my test case includes:
`cy.get([dra... | Drag and Drop works visually in Cypress Test Runner, but it's not actually having an effect | CC BY-SA 4.0 | null | 2023-03-03T10:41:11.710 | 2023-03-03T20:11:20.477 | null | null | 9,099,916 | [
"drag-and-drop",
"cypress",
"vuedraggable"
] |
75,626,028 | 2 | null | 10,464,502 | 0 | null | When you have class defined make sure you use classname along with the testcase name else it will not work
class Test_class():
@pytest.mark.dependency()
def test1(self):
assert False
@pytest.mark.dependency(depends=["classname::test1"])
def test2(self):
print("lastname")
output: failed=1
skipped =1
| null | CC BY-SA 4.0 | null | 2023-03-03T10:41:41.967 | 2023-03-03T10:41:41.967 | null | null | 19,377,090 | null |
75,626,029 | 2 | null | 75,625,931 | 1 | null | I am not sure how your Window is created but you can try creating a grid inside your window.
```
<Window>
<Grid x:Name="MainGrid">
</Grid>
</Window>
```
and then on your code you can try
```
MainGrid.Children.Add(canvas);
```
| null | CC BY-SA 4.0 | null | 2023-03-03T10:41:42.727 | 2023-03-03T10:41:42.727 | null | null | 1,832,954 | null |
75,626,019 | 1 | null | null | 0 | 24 | B"H
I tried to generate a very large Blob file using the MediaRecorder API (and ondataavailable).
When I was finished recording the video and tried to download it, the object URL gives this error when navigating to it:
blob:null/f1799668-8d3e-41e3-82c6-05ef41cfbfb3
```
This site can’t be reachedThe webpage at blob:null... | retreive internal RAM data of blob from browser MacOS? | CC BY-SA 4.0 | null | 2023-03-03T10:38:28.847 | 2023-03-03T10:40:51.570 | null | null | 2,016,831 | [
"macos",
"javascript"
] |
75,626,032 | 2 | null | 75,625,950 | 0 | null | Using [Perl's rename](https://unix.stackexchange.com/questions/730894/what-about-rename-different-versions-and-usage-what-is-the-recommended-way-to/730895#730895):
```
$ rename 's/(\.\d{8})/"." . sprintf("%0.2d", ++$::c) . $1/e' ./Customer*
```
#### ls -1
```
Customer_Branch_Record.01.20230303.1349.DAT
Customer_Bra... | null | CC BY-SA 4.0 | null | 2023-03-03T10:42:00.510 | 2023-03-03T10:42:00.510 | null | null | 465,183 | null |
75,626,033 | 1 | null | null | 0 | 31 | There is such a function:
```
def underscore_concat(*args):
return "_".join(filter(None, ([*args]))).upper()
```
How to correctly pass multiple parameters using pytest.mark.parametrize?
Something like this:
```
@pytest.mark.parametrize("a, result", [(["underscore", "concat", "test"], "UNDERSCORE_CONCAT_TEST")])
de... | Using parametrize for multiple arguments in pytest | CC BY-SA 4.0 | null | 2023-03-03T10:42:02.443 | 2023-03-03T12:09:02.017 | 2023-03-03T11:20:11.570 | 20,346,273 | 20,346,273 | [
"python",
"pytest",
"parametrize"
] |
75,626,035 | 1 | null | null | 0 | 12 | I working on a game in which user A select any given option and the selected option is going for user B so how user B can see updated option without clicking any button??
I have tried on data change function and many more methods
| How to retrieve updated data from firebase database without clicking button? | CC BY-SA 4.0 | null | 2023-03-03T10:42:19.983 | 2023-03-03T10:42:19.983 | null | null | 21,325,266 | [
"android",
"firebase",
"firebase-realtime-database"
] |
75,626,036 | 1 | null | null | 0 | 10 | `Visual Studio 2022` throws error when building the Web API project as `Program using top-level statements must be an executable`
[](https://i.stack.imgur.com/JhMKs.png)
| Program using top-level statements must be an executable | CC BY-SA 4.0 | null | 2023-03-03T10:42:24.610 | 2023-03-03T10:42:24.610 | null | null | 5,550,507 | [
"visual-studio",
"asp.net-core",
"asp.net-web-api",
"build",
"visual-studio-2022"
] |
75,626,031 | 1 | null | null | 0 | 10 | What's the idiomatic way to handle `3XX` responses in an addon without letting the client know?
Say a client issues a request to `example.com`. We pass the request to the server and receive a `301`, `Location: https://www.example.com`. We don't want the client to see this, so we issue a new request to this new location... | mitmproxy: follow 3xx redirect without letting the client know? | CC BY-SA 4.0 | null | 2023-03-03T10:41:47.773 | 2023-03-04T15:13:59.907 | null | null | 1,671,505 | [
"mitmproxy"
] |
75,626,037 | 2 | null | 75,626,036 | 0 | null | The issue was that the output type of the `Web API` project was set to `Class Library` instead of `Console Application`, changing that fixed the issue. You can get into the screen by right-click on the project and by selecting Properties.
[](https://i.stack.imgur.com/E3Xus.png)
| null | CC BY-SA 4.0 | null | 2023-03-03T10:42:24.610 | 2023-03-03T10:42:24.610 | null | null | 5,550,507 | null |
75,626,030 | 2 | null | 75,623,430 | 0 | null | The above code you shared is for listing the containers in the Azure Storage Emulator using shared key authorization and it does not provide a way to connect to a table storage and read its data.
I check the same thing in [MS-DOCS](https://learn.microsoft.com/en-us/rest/api/storageservices/table-service-rest-api), I co... | null | CC BY-SA 4.0 | null | 2023-03-03T10:41:45.307 | 2023-03-03T10:41:45.307 | null | null | 19,144,428 | null |
75,626,038 | 2 | null | 75,621,545 | 1 | null | There are 2 issues:
1. CS low and high were confused
2. There wasn't waiting for data transfer completion
The correct version:
```
void sendData(uint8_t address, uint8_t data)
{
GPIOA->BSRR = GPIO_BSRR_BR4; // CS LOW
while(!(READ_BIT(SPI1->SR, SPI_SR_TXE) == (SPI_SR_TXE))) {}
SPI1->DR = address;
whi... | null | CC BY-SA 4.0 | null | 2023-03-03T10:42:31.080 | 2023-03-03T10:42:31.080 | null | null | 1,793,353 | null |
75,626,034 | 1 | null | null | 0 | 17 | I am making a review section for my record company, but I have a hard time figuring out how I can get the specific reviews for the specific album, I pass in an id to a template called "Albumin" to get the exact album, but how do I get the reviews?
models:
```
class albums(models.Model):
title = models.CharField(max... | I want to get the specific reviews from a different model Django | CC BY-SA 4.0 | null | 2023-03-03T10:42:12.897 | 2023-03-03T11:23:44.260 | 2023-03-03T11:23:44.260 | 17,562,044 | 21,067,499 | [
"python",
"django",
"django-models",
"django-views",
"django-urls"
] |
75,626,043 | 2 | null | 72,581,257 | 0 | null | Using Spring Boot, you can simply add this configuration to `application-test.yml` file:
```
logging:
level:
WireMock: WARN
```
| null | CC BY-SA 4.0 | null | 2023-03-03T10:43:11.500 | 2023-03-03T10:43:11.500 | null | null | 3,263,041 | null |
75,626,027 | 1 | 75,626,191 | null | -1 | 31 | This is database. php file: and I am getting fatal error on line 30($result = $stm->execute($data);)
The data and query there goes from the read function in the folder named user.class.php and I carry that function with it.
```
Class Database
{
public static $con;
public function __construct()
{
tr... | PHP mysql read function error (Uncaught PDOException: SQLSTATE[42000]: Syntax error or access violation: 1064 You have an error in your SQL syntax;) | CC BY-SA 4.0 | null | 2023-03-03T10:41:39.997 | 2023-03-03T10:57:50.277 | 2023-03-03T10:46:59.353 | 5,947,043 | 21,179,239 | [
"php",
"mysql",
"sql",
"pdo",
"mysql-error-1064"
] |
75,626,039 | 1 | null | null | 0 | 16 | I am trying to get total revenue from subscriptions of all plans..
```
public function subscriptionsIncome()
{
Stripe::setApiKey(config('services.stripe-keys.stripe-secret-key'));
$packages = Package::all();
$invoices = Invoice::all(['limit'=> 100]);
$total_revenue = 0;
forea... | How to get all invoices's revenue total from stripe api? | CC BY-SA 4.0 | null | 2023-03-03T10:42:41.743 | 2023-03-03T10:42:41.743 | null | null | 21,325,273 | [
"laravel",
"api",
"stripe-payments",
"invoice",
"laravel-cashier"
] |
75,626,041 | 1 | null | null | 0 | 18 | [EDIT]
I seem I cannot even SSH from DDEV to an external site. From within DDEV SSH:
`ssh -v bla@apiservice.nl`
`ssh: connect to host bla@apiservice.nl port 22: Cannot assign requested address 22`
[/EDIT]
What I really need is:
I want to make an SSH tunnel in DDEV to an external service.
On my Mac this works with `ssh ... | DDEV SSH to external ip | CC BY-SA 4.0 | null | 2023-03-03T10:43:00.093 | 2023-03-03T12:00:16.947 | 2023-03-03T12:00:16.947 | 6,003,035 | 6,003,035 | [
"ddev"
] |
75,626,046 | 1 | null | null | 0 | 8 | I have a function in a serviceworker to check, if a device is connected or not. If not, a simple offline page from the cache should be called, otherwise go to the requested url. Here is the code for:
```
self.addEventListener('fetch', (event) => {
if (event.request.mode === 'navigate') {
event.respondWith(
... | Fetch 502 in Serviceworker an redirect to cached page | CC BY-SA 4.0 | null | 2023-03-03T10:43:26.443 | 2023-03-03T10:43:26.443 | null | null | 5,402,437 | [
"javascript",
"progressive-web-apps",
"service-worker"
] |
75,626,051 | 2 | null | 39,615,376 | 0 | null | Below import worked for me:
```
implementation 'com.google.code.gson:gson:2.8.9'
```
| null | CC BY-SA 4.0 | null | 2023-03-03T10:44:07.210 | 2023-03-03T10:44:07.210 | null | null | 20,088,596 | null |
75,626,050 | 2 | null | 75,597,770 | 0 | null | You can refer to all the function which AGE provides, which are listed in [this](https://github.com/apache/age/blob/master/age--1.2.0.sql) file. You can use the function `age_properties` to get the properties.
| null | CC BY-SA 4.0 | null | 2023-03-03T10:44:04.213 | 2023-03-03T10:44:04.213 | null | null | 20,939,573 | null |
75,626,042 | 1 | null | null | 0 | 5 | I try to bring up a device using spi in a old kernel (mean no device tree). The kernel uses platform device, it uses jz_spi with spi_bitbang_start to register spi controller.
In my device driver source code, I use spi_register_board_info function before call spi_register_driver. The problem is struct spi_board_info has... | Bring up spi device driver with spi_bitbang in jz_spi kernel | CC BY-SA 4.0 | null | 2023-03-03T10:43:05.667 | 2023-03-03T10:43:05.667 | null | null | 20,776,644 | [
"linux-kernel",
"linux-device-driver",
"embedded-linux",
"spi"
] |
75,626,049 | 1 | null | null | 0 | 26 | everyone! I'm not familiar with VBA, I'm using ChatGPT, but sometimes it fails. The code is
```
Sub CriarBotaoLaranja()
Dim ws As Worksheet
Dim btn As Button
Set ws = ThisWorkbook.Sheets("Worksheet1")
Set btn = ws.Buttons.Add(100, 100, 120, 50)
btn.Caption = "Name in the button"
End Sub
``... | How to set a background color in a button of command in Excel using VBA | CC BY-SA 4.0 | null | 2023-03-03T10:43:53.677 | 2023-03-03T12:49:21.523 | null | null | 13,691,156 | [
"excel",
"vba"
] |
75,626,048 | 2 | null | 75,544,516 | 1 | null | It could be possible that there is one error in your query in the statement for “bin” Function. Below is the correct query which you can follow:
```
let t1 = Usage
| where StartTime >= startofday(ago(2d)) and EndTime < endofday(ago(2d))
| where IsBillable == true
| summarize BillableDataGB = sum(Quantity) / 1000.... | null | CC BY-SA 4.0 | null | 2023-03-03T10:43:53.313 | 2023-03-03T10:43:53.313 | null | null | 20,069,505 | null |
75,626,052 | 1 | null | null | -2 | 32 | Given an input String, how to efficiently determine if it represents a valid JSON?
Preferably light-weight - without building the internal memory representation of JSON.
Update: the problem I am trying to solve is the following: payload sent between numerous services is expected to be a JSON object. Sometimes the paylo... | Determine if String is valid JSON without building the underlying AST | CC BY-SA 4.0 | null | 2023-03-03T10:44:22.793 | 2023-03-04T23:28:13.237 | 2023-03-04T23:28:13.237 | 5,251,078 | 5,251,078 | [
"json",
"scala",
"performance",
"abstract-syntax-tree"
] |
75,626,045 | 1 | 75,626,502 | null | 0 | 15 | I am writing a Shiny app where I am rendering an editable datatable. In some instances I would like the user to filter the table or go to a different page and then make edits to the table. After this editing, I would like the current view of the table to remain while showing the edits in the table. The editing of a col... | How to retain the filtered (or different page) view of a datatable after editing in a Shiny app? | CC BY-SA 4.0 | null | 2023-03-03T10:43:25.813 | 2023-03-03T11:26:51.323 | 2023-03-03T11:14:09.797 | 1,100,107 | 5,110,907 | [
"r",
"shiny",
"dt"
] |
75,626,058 | 1 | 75,628,321 | null | 0 | 17 | iam new to elasticsearch, i had deployed elasticsearch with kibana and logstash, all the logs is parsed and searchable. i need to integrate any software that helps in network descovery to find the devices on my network.
what is the best integration found that can help me
| Elasticsearch network discovery integration | CC BY-SA 4.0 | null | 2023-03-03T10:45:21.810 | 2023-03-03T14:27:41.493 | null | null | 21,325,171 | [
"elasticsearch",
"networking"
] |
75,626,047 | 1 | null | null | -1 | 18 | trying to upload and make work my first flask app online. I choose heroku but I am getting this error (error H10 status 503) over and over again. I tried everything I find online, but I am lost now.
I find few posts here with the same porblem, but they were not answered or the sollution doesnt help me.
[https://github.... | Heroku error H10 status 503 Python flask app | CC BY-SA 4.0 | null | 2023-03-03T10:43:26.517 | 2023-03-04T08:44:54.010 | null | null | 21,325,179 | [
"python",
"flask",
"heroku"
] |
75,626,061 | 2 | null | 44,460,834 | 0 | null | As you are using Spring Boot, you could simply add this configuration: [https://stackoverflow.com/a/75626043/3263041](https://stackoverflow.com/a/75626043/3263041)
| null | CC BY-SA 4.0 | null | 2023-03-03T10:45:54.543 | 2023-03-03T10:45:54.543 | null | null | 3,263,041 | null |
75,626,056 | 2 | null | 75,610,880 | 2 | null | VS Code engineer here.
This issue is caused by a change in the bracket matching logic of VS Code ([see changelog](https://code.visualstudio.com/updates/v1_76#_independent-bracket-pairs-for-matching-and-colorization)) in combination with some extensions.
As of now, both brackets configured in `editor.language.brackets` ... | null | CC BY-SA 4.0 | null | 2023-03-03T10:44:51.703 | 2023-03-03T10:44:51.703 | null | null | 11,045,512 | null |
75,626,063 | 2 | null | 75,568,105 | 0 | null | Docker has support for [security scoped tokens](https://www.docker.com/blog/level-up-security-with-scoped-access-tokens/) to create limited PATs. Unfortunately, that's a paid feature. You can follow that and see many other linked issues in [roadmap issue #115](https://github.com/docker/roadmap/issues/115).
| null | CC BY-SA 4.0 | null | 2023-03-03T10:46:11.100 | 2023-03-03T10:46:11.100 | null | null | 596,285 | null |
75,626,059 | 2 | null | 68,109,131 | 0 | null | So i am using InAppWebView and in my case after enabling the dark mode a black screen in coming till my data doesn't load on web view
to avoid black screen in dark mode i have disabled the dark mode of the app and enabled the "transparentBackground"
```
class MyApp extends StatelessWidget {
const MyApp({super.key});... | null | CC BY-SA 4.0 | null | 2023-03-03T10:45:27.783 | 2023-03-03T10:45:27.783 | null | null | 11,598,759 | null |
75,626,060 | 1 | null | null | 0 | 14 | I have this `Gender` class which I am using for validation on a field:
```
class Gender(str, Enum):
male = "m"
female = "f"
```
I am getting a dropdown for this on my doc pages, but they are displaying `m` and `f` as the text node on the generated HTML select field.
```
<select class=""><option value="">--</op... | Display full text on fastapi documentation dropdown and short text as its value | CC BY-SA 4.0 | null | 2023-03-03T10:45:31.587 | 2023-03-03T12:51:46.720 | 2023-03-03T12:51:46.720 | 113,116 | 19,135,164 | [
"fastapi",
"swagger-ui",
"openapi"
] |
75,626,057 | 1 | null | null | 0 | 10 | I am getting kotlin version incompatibility issue. I had made changes to my project level build.gradle file then also the issue persist.
I am getting the following error after Gradle sync:
C:/Users/ADMIN/.gradle/caches/8.0.1/generated-gradle-jars/gradle-api-8.0.1.jar!/META-INF/configuration-cache.kotlin_module: Module ... | Kotlin version issues: The binary version of its metadata is 1.8.0, expected version is 1.6.0. Not working by changing the version in build.gradle | CC BY-SA 4.0 | null | 2023-03-03T10:45:18.170 | 2023-03-03T10:52:55.527 | null | null | 16,732,933 | [
"java",
"android",
"react-native",
"kotlin",
"gradle"
] |
75,626,064 | 2 | null | 45,432,742 | 0 | null | `pyth` package is now available for python3 as well. Install `pyth3` package:
```
py -3 -m pip install pyth3
```
| null | CC BY-SA 4.0 | null | 2023-03-03T10:46:15.423 | 2023-03-03T10:46:15.423 | null | null | 3,004,868 | null |
75,626,065 | 1 | null | null | 0 | 3 | I have a Sagemaker studio setup with custom images attached. Currently, every time I add a new image, I maintain a json file containing all the images/settings that needs to be attached and update the domain accordingly using cli.
Is it possible to just add a new image configurations from the cli? rather than having al... | sagemaker studio cli update domain, how to add new custom image without overwriting existing settings | CC BY-SA 4.0 | null | 2023-03-03T10:46:16.757 | 2023-03-03T10:46:16.757 | null | null | 18,219,269 | [
"amazon-sagemaker",
"amazon-sagemaker-studio"
] |
75,626,062 | 1 | null | null | 0 | 11 | How can I use string literal to query tables if the raw value in the table is different from the value I use in the string literal?
I made a Z table that uses `MATNR` and 2 other fields as primary keys. In a dummy programm I filled the table with 4 rows using this code
```
delete from z_test_db.
data ls_tab type z_test... | Query for apha field using string literal | CC BY-SA 4.0 | null | 2023-03-03T10:46:08.010 | 2023-03-03T16:25:26.243 | 2023-03-03T16:25:26.243 | 9,150,270 | 6,635,287 | [
"abap",
"opensql"
] |
75,626,068 | 2 | null | 75,626,021 | 0 | null | ```
SELECT C.ID,C.NAME,ISNULL(X.ID,0)IS_ORDER
FROM CUSTOMER AS C
OUTER APPLY
(
SELECT TOP 1 ORD.ID
FROM ORDERS AS O
WHERE C.ID=ORD.CUSTOMER_ID
)X
```
You can try to USE CROSS APPLY/OUTER APPLY to detect if customer has ordered something at all
| null | CC BY-SA 4.0 | null | 2023-03-03T10:46:28.327 | 2023-03-03T10:46:28.327 | null | null | 14,535,517 | null |
75,626,044 | 2 | null | 75,625,675 | 0 | null | This part of the error reveals the problem:
> Response [https://api.openai.com/v1/chat/completions] Date: 2023-03-02
16:28 Status: 400 Size: 158 B {
“error”: { “message”: “‘user’ is not of type ‘object’ - ‘messages.0’”,
“type”: “invalid_request_error”, “param”: null, “code”: null } }
ChatGPT Completions endpoint (i.e.... | null | CC BY-SA 4.0 | null | 2023-03-03T10:43:18.120 | 2023-03-03T15:27:33.403 | 2023-03-03T15:27:33.403 | 10,347,145 | 10,347,145 | null |
75,626,066 | 1 | null | null | 0 | 51 | With the `bt` instruction, I can get the value of the n-th bit in a byte in one instruction. When converting that operation to SIMD, I currently put the source bytes, indices and a `0x1` constant into separate registers and use `vpsravd` followed by `andps` to do `(byte >> index) & 0x1` in every lane. Is there an instr... | Is there a SIMD equivalent for the bt instruction in x86_64 assembly? | CC BY-SA 4.0 | null | 2023-03-03T10:46:18.667 | 2023-03-03T12:42:32.207 | 2023-03-03T12:42:32.207 | 224,132 | 1,726,797 | [
"assembly",
"x86-64",
"simd",
"avx2"
] |
75,626,070 | 1 | null | null | 0 | 9 | Hy as a user I have logged into three google account when I generated the link using one of my account refresh tokens. I want that it opens with the right account when i click on the link generated using below code without the manual need to switch account. How can do that?
```
const meet = await calendar.events.insert... | How to open google meeting link in right account | CC BY-SA 4.0 | null | 2023-03-03T10:47:01.453 | 2023-03-03T10:47:40.527 | 2023-03-03T10:47:40.527 | 11,626,178 | 11,626,178 | [
"google-api",
"google-calendar-api",
"google-meet"
] |
75,626,073 | 2 | null | 75,625,836 | 0 | null | It seems that the outdated version of firebase was the cause of it all. Before, I simply installed firebase with "npm install firebase" in the console, and it has been installing the old version. Now that I have typed "npm install firebase@9.17.2", it finally updated to the latest version and solved the problem.
| null | CC BY-SA 4.0 | null | 2023-03-03T10:47:37.157 | 2023-03-03T10:47:37.157 | null | null | 19,606,266 | null |
75,626,074 | 2 | null | 75,242,844 | 0 | null | As Burak Serdar and Frank Heikens have pointed out, a repeatable read isolation level was the solution, easily achieved by starting a transaction with the required option (using `sqlx`):
```
tx, err := DB.BeginTxx(ctx, &sql.TxOptions{
Isolation: sql.LevelRepeatableRead,
ReadOnly: true,
})
```
| null | CC BY-SA 4.0 | null | 2023-03-03T10:47:37.250 | 2023-03-03T10:47:37.250 | null | null | 4,807,959 | null |
75,626,067 | 1 | null | null | 0 | 22 | I am trying to use my string array defined in strings.xml into a `PlaceholderContent.kt` for a display fragment.
I know how to do this for a drop-down menu list but I can't figure out how to do this using the list fragments and placeholders.
My string array is called `fleet_selection_array`
The code I have in the `Plac... | Referencing string array in Placeholder Content using Kotlin | CC BY-SA 4.0 | null | 2023-03-03T10:46:24.497 | 2023-03-03T11:04:14.730 | null | null | 18,088,733 | [
"android",
"kotlin",
"arraylist"
] |
75,626,072 | 1 | null | null | 2 | 35 | To make this code compile (Scala 3.2.2 with `-language:strictEquality` and `-Yexplicit-nulls`):
```
val cause: Option[Throwable] = None
cause match
case c: Some[Throwable] => c.value
case None => null
```
I add this line:
```
private given CanEqual[Option[Throwable], Option[Throwable]] = CanEqual.derived
```
Ho... | Scala 3 with strict equality and explicit nulls - Proper way to deal with pattern matching and Option | CC BY-SA 4.0 | null | 2023-03-03T10:47:20.367 | 2023-03-03T14:46:35.160 | 2023-03-03T14:46:35.160 | 8,193,679 | 8,193,679 | [
"scala",
"pattern-matching",
"option-type",
"scala-3",
"dotty"
] |
75,626,076 | 2 | null | 75,565,252 | 0 | null | With the hot-connect feature you can create optional IO devices in the EtherCat bus.
Making it possible to add/remove hardware on the fly without the need to reconfigure. See [InfoSys](https://infosys.beckhoff.com/content/1033/ethercatsystem/2469078667.html).
With the experience I have with it, it was possible to add h... | null | CC BY-SA 4.0 | null | 2023-03-03T10:47:41.037 | 2023-03-03T10:47:41.037 | null | null | 18,079,658 | null |
75,626,075 | 1 | null | null | 0 | 17 | Here my dependencies:
```
<!-- Spring Core -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
<version>${spring.version}</version>
</dependency>
<!-- Spring Context -->
<dependency>
<groupId>org.springframework</groupId>
... | slf4j: binder not found | CC BY-SA 4.0 | null | 2023-03-03T10:47:37.473 | 2023-03-03T10:52:18.113 | null | null | 3,227,319 | [
"java",
"logback",
"slf4j",
"spring-logback"
] |
75,626,080 | 2 | null | 75,625,924 | 1 | null | `markedDates` is initialized as an object, not an array. Therefore, you cannot use the `push()` method on it.
| null | CC BY-SA 4.0 | null | 2023-03-03T10:48:19.970 | 2023-03-03T10:48:19.970 | null | null | 21,288,555 | null |
75,626,071 | 2 | null | 75,625,845 | 6 | null | The is that the constructor `std::string::string(const char*)` is (and `0` is a ) which means that the both the overloads `Foo::Foo operator[](int) const` and `Foo::Foo operator[](const std::string&)` are viable but have the same rank. This in turn means that the call is ambiguous since neither of them is better than... | null | CC BY-SA 4.0 | null | 2023-03-03T10:47:15.843 | 2023-03-03T13:22:13.333 | 2023-03-03T13:22:13.333 | 12,002,570 | 12,002,570 | null |
75,626,078 | 2 | null | 67,121,955 | 0 | null | I had the same problem. I found how to do :
In the `<table …>`, add this (by example) :
```
data-buttons-order="refresh, fullscreen, paginationSwitch, columns, advancedSearch, toggle"
```
(do not add `[…]` and `'…'`)
| null | CC BY-SA 4.0 | null | 2023-03-03T10:47:59.780 | 2023-03-03T10:47:59.780 | null | null | 21,325,278 | null |
75,626,077 | 2 | null | 75,621,214 | 1 | null | By setting `chartOptions` directly you replace your reactive property with a new object and lose the reactivity.
I would suggest you to use `ref()` instead of `reactive()`.
```
chartOptions = {
...chartOptions,
title:{text:"New Updated Chart " + Date.now()},
}
let chartOptions = ref({
chart: {
```
A... | null | CC BY-SA 4.0 | null | 2023-03-03T10:47:49.353 | 2023-03-03T10:47:49.353 | null | null | 2,487,565 | null |
75,626,053 | 1 | null | null | 0 | 45 | On this horizontal bar chart I am trying not to show the 0%, I have tried a lot and I am stuck.

```
library(plotly)
y <- c('The course was effectively<br>organized',
'The course developed my<br>abilities and skills for<br>the subject',
'The course devel... | How to delete a "0%" label from an horizontal bar plot | CC BY-SA 4.0 | null | 2023-03-03T10:44:24.977 | 2023-03-03T20:27:36.460 | 2023-03-03T12:26:13.433 | 1,968 | 21,325,185 | [
"r",
"plotly"
] |
75,626,069 | 1 | 75,626,472 | null | 1 | 17 | I have the following table definition:
```
CREATE TABLE `test` (
`id` INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
`number` INT(10) UNSIGNED NOT NULL,
`revision` INT(10) UNSIGNED NOT NULL,
`autosave` TINYINT(3) UNSIGNED NOT NULL DEFAULT '0',
`created_at` DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,
... | Order by date always uses filesort | CC BY-SA 4.0 | null | 2023-03-03T10:46:49.340 | 2023-03-03T11:24:45.067 | 2023-03-03T10:52:19.097 | 487,813 | 487,813 | [
"mysql",
"sql-order-by",
"filesort"
] |
75,626,079 | 1 | null | null | 0 | 24 | The title is self-explanatory.
I' using Material3, a standard implementation of a swipe to dismiss:
```
val dismissState = rememberDismissState(
confirmValueChange = {
if ((it == DismissValue.DismissedToStart || it == DismissValue.DismissedToEnd) &&
!listState.isScrol... | LazyColumn Swipe to dismiss is triggered when scrolling | CC BY-SA 4.0 | null | 2023-03-03T10:48:09.357 | 2023-03-03T21:00:16.590 | null | null | 15,834,123 | [
"kotlin",
"android-jetpack-compose",
"android-jetpack-compose-material3"
] |
75,626,083 | 2 | null | 75,625,963 | 1 | null | You can try assigning the sentence that needs double quotes in a variable and assign that to v-b-tooltip.
```
<template>
<label>Encoding
<feather-icon
icon="AlertCircleIcon"
class="mr-50 my-icon"
v-b-tooltip.hover.right="tooltipText"/>
</label>
</template>
<script>
export defaul... | null | CC BY-SA 4.0 | null | 2023-03-03T10:48:45.090 | 2023-03-03T10:52:54.593 | 2023-03-03T10:52:54.593 | 12,884,733 | 12,884,733 | null |
75,626,081 | 2 | null | 75,625,359 | 2 | null | IIUC, what you want is to replace the `Age` by a formula for each group `('Sex', 'Pclass')` when the `Age` is null:
```
import numpy as np
import pandas as pd
train_df = pd.read_csv('train_df.csv', index_col=0)
test_df = pd.read_csv('test_df.csv', index_col=0)
guess_age = lambda x: int(x.median() / 0.5 + 0.5) * 0.5
... | null | CC BY-SA 4.0 | null | 2023-03-03T10:48:26.047 | 2023-03-03T10:53:42.407 | 2023-03-03T10:53:42.407 | 15,239,951 | 15,239,951 | null |
75,626,090 | 2 | null | 50,480,689 | 0 | null | For anyone facing this issue, in my case it was related to memory overflow. I simply ran out of RAM.
In my case I was striding long audio and passing numpy arrays as arguments to map function, which blown the memory usage above 32GB of RAM, causing the error.
Some possible solutions:
1. reduce memory usage
2. increase... | null | CC BY-SA 4.0 | null | 2023-03-03T10:49:17.187 | 2023-03-03T10:49:17.187 | null | null | 8,808,302 | null |
75,626,088 | 1 | null | null | 1 | 49 | I have the same function - Attack() in two scripts and i would like to inherit them from a class which has this function. So my question is can a script be set as a parameter of a function in c# Unity?
```
public void Attack()
{
_animator.SetTrigger("Attack");
Collider2D[] hitEnemies = Physics2D.OverlapCircleA... | Can a script be set as a parameter of a function in c# Unity? | CC BY-SA 4.0 | null | 2023-03-03T10:49:05.627 | 2023-03-03T12:59:00.053 | 2023-03-03T12:00:46.410 | 14,796,531 | 20,324,932 | [
"c#",
"unity3d"
] |
75,626,094 | 1 | null | null | 0 | 8 | Is there any way to prompt the user to exit the GUI program written in Python?
Something like "Are you sure you want to exit the program?" when they click on the `X` button in Title Bar or if the app tries to be closed somehow else?
I'm using the [DelphiFMX GUI Library for Python](https://github.com/Embarcadero/DelphiF... | Confirmation Prompt on exit in Python FMX GUI App | CC BY-SA 4.0 | null | 2023-03-03T10:49:39.117 | 2023-03-03T10:49:39.117 | null | null | 2,908,017 | [
"python",
"user-interface",
"firemonkey"
] |
75,626,096 | 1 | null | null | 0 | 6 | When i want to register as a customer on my own website, the form redirect me in the same page and nothing happen. This problem appeared since i deleted the YITH Wishlist Plugin.
I tried to reinstall it to fix the problem but nothing happened, but when i change the current theme to twenty two, the register form work.
I... | Woocommerce register stopped working after Yith wishlist deletion | CC BY-SA 4.0 | null | 2023-03-03T10:49:42.043 | 2023-03-03T10:49:42.043 | null | null | 17,624,996 | [
"wordpress",
"woocommerce"
] |
75,626,095 | 1 | null | null | 1 | 32 | We have table `deals`, which contains organization_id, won_time.
If the last Deal with this client was won a >3 months ago, that is a lost client.
To calculate the number of customers at a certain moment, you need to calculate the number of Organizations that have Deals marked won <=2 months before the moment. For exam... | How to write SQL bigquery query to calculate quantity of customers for the first and last day of month? | CC BY-SA 4.0 | null | 2023-03-03T10:49:40.760 | 2023-03-03T11:00:39.063 | 2023-03-03T11:00:39.063 | 18,461,576 | 21,325,293 | [
"sql",
"google-bigquery",
"data-analysis"
] |
75,626,097 | 2 | null | 75,625,930 | 0 | null | Try to replace `df` with `trade` in the `fit_model` function as the `fepois` doesnt recognize the df data like this :
```
fit_model <- function(trade) {
fepois(Euros ~ log(dist_km) | Origin + Destination, data = trade)
}
mod2 <- fit_model(trade)
update(mod2, . ~ . + log(Year))
Poisson estimation, Dep. Var.: Euros
... | null | CC BY-SA 4.0 | null | 2023-03-03T10:49:42.773 | 2023-03-03T10:49:42.773 | null | null | 12,517,976 | null |
75,626,092 | 2 | null | 75,624,432 | 1 | null | The C language definition of , C17 3.6:
>
addressable unit of data storage large enough to hold any member of the basic character
set of the execution environment
As for how many bits a byte has, it is not defined by C, other than that it must be 8. C17 5.2.4.2.1:
> - `CHAR_BIT 8`
`sizeof` is guaranteed to return the... | null | CC BY-SA 4.0 | null | 2023-03-03T10:49:23.860 | 2023-03-03T10:49:23.860 | null | null | 584,518 | null |
75,626,089 | 2 | null | 75,626,000 | 2 | null | What you want is unclear, but assuming you want to get the min and max Times that is present in all groups, first [groupby.agg](https://pandas.pydata.org/docs/reference/api/pandas.core.groupby.DataFrameGroupBy.aggregate.html) to get the min/max per group. Then [aggregate](https://pandas.pydata.org/docs/reference/api/pa... | null | CC BY-SA 4.0 | null | 2023-03-03T10:49:12.643 | 2023-03-03T10:55:47.570 | 2023-03-03T10:55:47.570 | 16,343,464 | 16,343,464 | null |
75,626,098 | 1 | null | null | 0 | 11 | I want make a custom class that can take a nsview as initialization, here is my code:
```
class MyTestNSView: NSView {
init(nsView: NSView) {
super.init(frame: NSRect(origin: .zero, size: .zero))
self = nsView
}
required init?(coder: NSCoder) {
fatalErro... | How can I make an initialization for a custom NSView with another NSView in Swift? | CC BY-SA 4.0 | null | 2023-03-03T10:49:44.517 | 2023-03-03T10:49:44.517 | null | null | 21,321,165 | [
"swift",
"cocoa"
] |
75,626,093 | 1 | 75,627,000 | null | 0 | 17 | I'm trying to create a simple docker-compose that would launch 2 containers one for the app as seen below:
```
from fastapi import APIRouter
router = APIRouter()
@router.get("/")
async def root():
return {"message": "This is a Test"}
```
```
from fastapi import FastAPI
import uvicorn as uvicorn
from routers im... | FastAPI + NGINX + Docker connection refused | CC BY-SA 4.0 | null | 2023-03-03T10:49:34.427 | 2023-03-03T12:27:25.817 | null | null | 21,325,277 | [
"docker",
"nginx",
"fastapi"
] |
75,626,100 | 1 | null | null | 0 | 13 | I have multiple implementations of an ICombiService interface. I want to inject one of these implementations based on a string value from appsettings.json. I can find the configured type thus
```
private static Type? GetConfiguredCombiServiceType(Settings settings)
{
var type = typeof(ICombiService);
var cst =... | .Net 6.0. Dependency Injection. How do I inject by type? | CC BY-SA 4.0 | null | 2023-03-03T10:49:47.137 | 2023-03-03T11:54:24.970 | null | null | 2,026,382 | [
"dependency-injection",
".net-6.0"
] |
75,626,099 | 2 | null | 75,625,903 | -1 | null | Ok I have figured it out myself:
```
public static void Encrypt(FileStream fileWriteStream,
FileStream fileReadStream,
byte[] key,
byte[] iv)
{
const int megabyte = 1024 * 1024;
AesCryptoServiceProvider aes = new AesCryptoServiceProvider();
... | null | CC BY-SA 4.0 | null | 2023-03-03T10:49:44.673 | 2023-03-03T10:49:44.673 | null | null | 902,012 | null |
75,626,086 | 1 | null | null | 0 | 28 | I am a beginner with SvelteKit and trying to build a todo app. This question focuses on the following problem I have, but also asking if it's the correct logic to do data fetching and UI update.
My form is this:
```
<form
action="?/create"
method="POST"
class="flex flex-col gap-5 justify-center items-... | SvelteKit Form actions and update UI | CC BY-SA 4.0 | null | 2023-03-03T10:48:52.130 | 2023-03-03T11:51:32.440 | 2023-03-03T11:11:36.103 | 546,730 | 13,900,520 | [
"forms",
"svelte",
"sveltekit"
] |
75,626,101 | 2 | null | 75,624,155 | 0 | null | Your question is a little hard to notice for me. But I believe you have problem by receiving touch event, if so, the problem is this.
write your touch event outside of your computed variable.
```
import UIKit
class ViewController: UIViewController {
var drawerImageView :UIImageView = {
var drawer... | null | CC BY-SA 4.0 | null | 2023-03-03T10:49:59.063 | 2023-03-03T13:56:35.367 | 2023-03-03T13:56:35.367 | 653,122 | 653,122 | null |
75,626,110 | 2 | null | 75,616,438 | 1 | null | firebase.firestore().collection("ALL_quote")....
const ans = await auto_quote_no_generator();
don't forget the async
| null | CC BY-SA 4.0 | null | 2023-03-03T10:51:19.533 | 2023-03-03T10:51:19.533 | null | null | 21,187,618 | null |
75,626,109 | 1 | null | null | -8 | 48 | I need to swap the first value with the second within a column, the values are separated by comma.
Row I have:
```
"01, 20, 1960"
```
Row I need:
```
"20, 01, 1960"
```
I am using Snowflake
| How to swap values in a row, separated by comma | CC BY-SA 4.0 | null | 2023-03-03T10:51:11.837 | 2023-03-03T12:47:00.830 | 2023-03-03T11:06:35.430 | 3,706,016 | 21,280,002 | [
"sql"
] |
75,626,103 | 1 | null | null | 0 | 20 | I currently have a (large) amount of text data in (hundreds of) .pdf and .docx files. I would like to extract the text per page as later in the analysis, page numbers become relevant.
For the pdf files, I'm using the pdftools package, which works quite well and returns a vector with character strings where each element... | Extract the text of word documents by page instead of paragraph (R) | CC BY-SA 4.0 | null | 2023-03-03T10:50:27.390 | 2023-03-03T10:50:27.390 | null | null | 6,041,904 | [
"r",
"text-parsing",
"officer",
"pdf-scraping"
] |
75,626,107 | 2 | null | 75,625,740 | 2 | null | If you look into [yup type definitions](https://github.com/jquense/yup/blob/f37a53f45048eefe445c14b27b1b031583f9585d/src/mixed.ts#L24), you can see that generic argument of `yup.mixed` must extend `AnyPresentValue` type, which is an alias for `{}` type.
Solution would be to also mark your generic parameter as extending... | null | CC BY-SA 4.0 | null | 2023-03-03T10:50:42.967 | 2023-03-03T10:50:42.967 | null | null | 11,268,398 | null |
75,626,115 | 1 | null | null | 0 | 42 | I have an Node.js application, which does a lot of computing indefinitely. It can be simplified to this:
```
async function doWork()
{
await worker.doWork().then(data => {
// process the data...
}).catch(e => {
// log an error
}).finally(() => setTimeout(() => doWork(), 1000))
}
```
The iss... | Node.js - setTimeout is sometimes not being fired | CC BY-SA 4.0 | null | 2023-03-03T10:51:44.067 | 2023-03-03T11:00:39.550 | 2023-03-03T11:00:39.550 | 14,924,239 | 14,924,239 | [
"javascript",
"node.js",
"async-await"
] |
75,626,102 | 1 | null | null | 0 | 10 | I was on my windows desktop trying to test with streamlit module by following the script "web.py":
```
import streamlit as st
st.title("My Todo App")
```
and in the terminal executing by:
```
streamlit run web.py
```
And then the error shows up:
```
File "<frozen runpy>", line 198, in _run_module_as_main
File "<fr... | .py imported streamlit module showing PermissionError | CC BY-SA 4.0 | null | 2023-03-03T10:50:26.677 | 2023-03-03T10:50:26.677 | null | null | 21,325,295 | [
"python",
"python-3.x",
"permissionerror"
] |
75,626,108 | 1 | null | null | 0 | 8 | I upload images in `strorage/app` folder and I want to show image in `<body>` of email message with `<img>` tag.
I have created my custom route and function to show image in web that working fine. But when I put this route in email `<img src="route('custom.route')" >` Image is not showing on email. Showing blank on ima... | How to Add `local` storage image in email message <img> with email template using notification markdown | CC BY-SA 4.0 | null | 2023-03-03T10:50:46.590 | 2023-03-03T10:50:46.590 | null | null | 11,170,125 | [
"image",
"email",
"notifications",
"local-storage",
"laravel-6"
] |
75,626,111 | 1 | null | null | 0 | 38 | Hi I have a dataset with many observations but here's an example:
```
dt <- data.table(ID = c(1,1,1,1,2,3,3, 4, 5,5),
diagnosis = c("A", "A", "B", "A", "A", "A", "B", "B", "C", "A"),
Date = c("2013-01-01","2010-01-01","2010-01-12", "2013-01-12", "2013-01-26", "2010-01-02", "2010-01-02"... | Group values based on criteria | CC BY-SA 4.0 | null | 2023-03-03T10:51:22.213 | 2023-03-03T12:25:27.927 | 2023-03-03T12:25:27.927 | 1,968 | 19,766,411 | [
"r",
"database",
"data.table"
] |
75,626,116 | 2 | null | 75,625,748 | 0 | null | The Element API in Vaadin does not hold everything on the server-side memory. You should think of it more as a proxy that just communicates what is necessary to the client side and back. What the getOuterHTML returns is just a fraction of the actual content on the browser side. Pretty much everything inside your elemen... | null | CC BY-SA 4.0 | null | 2023-03-03T10:51:48.090 | 2023-03-03T10:51:48.090 | null | null | 2,187,063 | null |
75,626,118 | 2 | null | 75,623,891 | 1 | null | You can enable (but of course is not retroactive) [S3 Server Access Logging](https://docs.aws.amazon.com/AmazonS3/latest/userguide/ServerLogs.html) to log the detailed operations executed on a bucket.
> Server access logging provides detailed records for the requests that
are made to a bucket. Server access logs are us... | null | CC BY-SA 4.0 | null | 2023-03-03T10:51:55.633 | 2023-03-03T10:51:55.633 | null | null | 21,250,520 | null |
75,626,119 | 2 | null | 75,626,012 | 0 | null | You can do this easy with $reduce:
```
db.collection.aggregate([
{
"$project": {
"full_name":1,
"platforms": {
"$reduce": {
"input": "$posts",
"initialValue": [],
in: {
$concatArrays: [
"$$value",
[
"$$this.platform"
]
]
}
}
... | null | CC BY-SA 4.0 | null | 2023-03-03T10:51:57.353 | 2023-03-03T10:51:57.353 | null | null | 10,415,047 | null |
75,626,112 | 2 | null | 75,623,354 | 0 | null | In my opinion you have two options.
1. use postprocess.df = pandoc.table.return and style = "rmarkdown" in etable.
:
```
---
output: html_document
---
```{r, results='asis', echo = FALSE}
library(fixest)
library(pander)
data(airquality)
# Setting a dictionary
setFixest_dict(c(Ozone = "Ozone (ppb)", Solar.R = "So... | null | CC BY-SA 4.0 | null | 2023-03-03T10:51:24.470 | 2023-03-03T10:51:24.470 | null | null | 14,137,004 | null |
75,626,114 | 2 | null | 75,625,753 | 1 | null | > The issue is how do I get `&Py<ClassA>` from the receiver of the method so as to return another object where the receiver is referred to as a field in that object?
If I understood correctly your problem is constructing `Py<ClassA>` from `&ClassA` available in your method through `&self`. I think what you are looking ... | null | CC BY-SA 4.0 | null | 2023-03-03T10:51:27.690 | 2023-03-03T10:51:27.690 | null | null | 20,665,825 | null |
75,626,121 | 2 | null | 75,625,963 | 0 | null | Try like this-
```
<feather-icon
icon="AlertCircleIcon"
class="mr-50 my-icon"
v-b-tooltip.hover.html="tipMethod"
/>
```
```
methods: {
tipMethod() {
return 'The encoding used inside the feed. Leave "Automatically" if you are uncertain'
}
}
```
| null | CC BY-SA 4.0 | null | 2023-03-03T10:52:09.503 | 2023-03-03T10:52:09.503 | null | null | 11,834,856 | null |
75,626,123 | 2 | null | 75,626,075 | 0 | null | It looks like you missed binding jar for SLF4J and Java Logging. Feel free to modify artifact version as required
```
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-jdk14</artifactId>
<version>1.7.25</version>
</dependency>
```
| null | CC BY-SA 4.0 | null | 2023-03-03T10:52:18.113 | 2023-03-03T10:52:18.113 | null | null | 2,511,915 | null |
75,626,120 | 2 | null | 75,625,931 | 0 | null | This is what I expect is happening, but I'm not a wpf expert, so take it with a grain of salt.
When you render the canvas to a bitmap no background will rendered. So the background of the bitmap should be transparent black. When you set this bitmap as the rendering brush of the window background the renderer cannot can... | null | CC BY-SA 4.0 | null | 2023-03-03T10:52:02.173 | 2023-03-03T10:52:02.173 | null | null | 12,342,238 | null |
75,626,117 | 1 | 75,626,309 | null | 0 | 29 | Once again i'm struggling with map functions of purrr.
I've got a list of dataframes, all with ID and Name columns.
I want to perform some recoding and then aggregation on rows with some specific values.
For that purpose, i've got another dataframe with a vector of ID and newID that I want to replace before doing som... | writing test conditions in a map_if function : apply function on all dataframes with a column that includes specific values | CC BY-SA 4.0 | null | 2023-03-03T10:51:54.507 | 2023-03-03T11:27:32.043 | null | null | 12,398,531 | [
"r",
"list",
"select",
"tidyverse",
"purrr"
] |
75,626,128 | 2 | null | 75,626,057 | 0 | null | Looks like a gradle version compatibility issue.
You can try to upgrade the kotlin version to 1.8(Modify in build.gradle).
Or downgrade the gradle version to below 7.6(Modify in project/gradle/gradle-wrapper.properties).
See more about gradle version compatibility:
[https://docs.gradle.org/current/userguide/compatibili... | null | CC BY-SA 4.0 | null | 2023-03-03T10:52:55.527 | 2023-03-03T10:52:55.527 | null | null | 10,388,981 | null |
75,626,126 | 1 | null | null | -1 | 7 | I konw that many questions were discussed about the same problem. But the difference is these questions were talked about Java code.
I use Weka 3.6.9 platform. By using GUI, I applied SMOTE technique to a dataset, then I faced a message error: "Problem filtering instances: Comparison method violates its general contrac... | How can I solve this error: "comparison method violates its general contract" in Weka? | CC BY-SA 4.0 | null | 2023-03-03T10:52:42.903 | 2023-03-03T10:52:42.903 | null | null | 20,845,344 | [
"error-messaging"
] |
75,626,122 | 1 | 75,628,946 | null | 1 | 88 | In C# I have the following function:
```
public bool Set(int id, string columnName, object value)
{
/// <summary>
/// This function sets the given column name to the given value for the given id.
/// Returns true if the operation was successful, false otherwise.
/// </summary>
string query = "UPDAT... | Sanitize user given column name in SQL Server via C# | CC BY-SA 4.0 | null | 2023-03-03T10:52:15.553 | 2023-03-03T16:05:39.667 | 2023-03-03T11:02:16.050 | 1,127,428 | 14,023,736 | [
"c#",
"sql",
"sql-server"
] |
75,626,130 | 1 | 75,626,777 | null | 1 | 27 | I am experimenting with different ways to load data into dataframes.
One of the frameworks I am looking into is PySpark, but when I load a CSV with 14149 Rows and return the length of the df, it returns 14153, while pandas return 14149.
```
#pandas
df = pd.read_csv("data_file.csv")
print df.shape
#spark
spark... | Length of pySpark is bigger than when using pandas | CC BY-SA 4.0 | null | 2023-03-03T10:52:57.093 | 2023-03-03T11:57:17.750 | 2023-03-03T11:26:44.837 | 4,065,451 | 4,065,451 | [
"python",
"pandas",
"pyspark"
] |
75,626,131 | 1 | null | null | 0 | 11 | i want to create a flutter app in which music player is created
1)first screen will be list of audio ,which is from network url (with just audio package)
2)after click on one audio it will redirect to next screen on that screen audio player is playing(with audio image,artis name,and shor description)
3)after that audio... | How to create flexible audio player with background services and mini player in flutter | CC BY-SA 4.0 | null | 2023-03-03T10:52:57.443 | 2023-03-03T10:52:57.443 | null | null | 16,559,637 | [
"flutter",
"dart",
"avaudioplayer"
] |
75,626,124 | 1 | null | null | 3 | 82 | The following code
```
#include <iostream>
#include <string_view>
#include <string>
using namespace std::string_view_literals;
int main() {
const char bar{'a'};
std::string_view sep{"a"sv};
std::cout << sep.compare(&bar) << std::endl;
std::cout << sep.compare(std::string_view(&bar)) << std::endl;
std::cout << (... | Comparing an std::string_view and a char | CC BY-SA 4.0 | null | 2023-03-03T10:52:42.023 | 2023-03-03T13:50:18.740 | null | null | 307,681 | [
"c++",
"c++17",
"string-view"
] |
75,626,135 | 2 | null | 75,625,686 | 0 | null | Try rebuilding OpenCV with FFMpeg and `-DWITH_FFMPEG=ON`. All the four links i pasted to you revolve around the identical problem and identical solution.
| null | CC BY-SA 4.0 | null | 2023-03-03T10:53:24.673 | 2023-03-03T10:53:24.673 | null | null | 1,101,692 | null |
75,626,125 | 1 | null | null | 1 | 64 | I came across something and I am unable to find any explanation for it, consider the following two code snippets.
THIS RUNS
```
Program Hello
implicit none
print *, "hello world"
1 print *, "one"
print *, "bye world"
End Program Hello
```
output:
hello world
one
bye world
THIS DOES NOT COMPILE
```
Program Hello
... | constant number before a statement in fortran code | CC BY-SA 4.0 | null | 2023-03-03T10:52:42.957 | 2023-03-03T12:02:24.663 | 2023-03-03T12:02:24.663 | 1,280,439 | 11,553,066 | [
"fortran"
] |
75,626,138 | 1 | null | null | 0 | 16 | I have some doubts about the definition of the algoritm Blum-Blum-Shub. I found some texts that identify it as PRNG (pseudo-random number generatore) and other texts that identify it as PRBG (pseudo-random bit generator).
I would like to know the major difference between the two and witch definition is more correct (or... | PRNG and PRBG, what's the difference? | CC BY-SA 4.0 | null | 2023-03-03T10:53:41.730 | 2023-03-03T10:53:41.730 | null | null | 20,715,475 | [
"string",
"random",
"numbers",
"bit"
] |
75,626,134 | 1 | null | null | 0 | 12 | I'm trying to understand where I should store data regarding the project that I might manually edit or programmaticaly change outside of execution of the project itself (ex: during build, after a git commit or after a nugetPackage deployement).
A concrete exemple would be to manage version numbers.
I would like to crea... | Where should I store project related properties in visual studio 2022 ? (AssemblyInfo) | CC BY-SA 4.0 | null | 2023-03-03T10:53:05.607 | 2023-03-03T10:53:05.607 | null | null | 21,296,309 | [
"version-control",
"msbuild",
"version",
"visual-studio-2022"
] |
75,626,139 | 1 | null | null | -2 | 19 | can you tell me how to change the key of all notes of a midi file during playback. I tried with this code but nothing happens.
on click i write
midiFile.ProcessNotes(n => n.NoteNumber -= (SevenBitNumber)1,);
one semitone less or
midiFile.ProcessNotes(n => n.NoteNumber += (SevenBitNumber)1,);
one semitone more.
but not ... | Transpose midi with Drywetmidi | CC BY-SA 4.0 | null | 2023-03-03T10:53:44.040 | 2023-03-03T11:54:52.227 | null | null | 21,325,314 | [
"c#",
".net",
"midi"
] |
75,626,140 | 2 | null | 75,625,173 | 0 | null | can you try encode url after stringnifing the json. i hope this helps!
```
var request = fetch("http://10.0.2.2/react_php?json="+encodeURIComponent(json2),requestObject);
request.then(response => response.json()).then(json=>{
setT1(json.name);
setT2(json.gender);
setT3(json.mobile);
setT4(json.x);
s... | null | CC BY-SA 4.0 | null | 2023-03-03T10:53:49.000 | 2023-03-03T10:53:49.000 | null | null | 5,011,051 | null |