79246898

Date: 2024-12-03 09:06:26
Score: 1.5
Natty:
Report link

During the execution of the necessary to me PHP scripts that I knew required more memory for their execution, they were interrupted regardless of the fact that exactly 4G of memory was available. At first I thought that there was an option in Apache configuration that defines the maximum allowed memory for Apache. And I mistakenly thought that php memory_limit is limited to the remaining "possible allowed memory for Apache".

Later I remembered that this is the exact value I recently set in MySQL settings - myisam_max_sort_file_size = 4G. It was this option that reduced the available memory in the system, which caused the above error "Fatal error: Out of memory (allocated".

So the main solution would be the following - observe the exact amount of free memory on your server at the moment your php script gets an error "Fatal error: Out of memory (allocated". Think about what could be blocking free memory in the system.

Reasons:
  • Blacklisted phrase (1): what could be
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: tecdoc ukr net

79246880

Date: 2024-12-03 09:01:24
Score: 1
Natty:
Report link

I got same error too and i tried all of the things that what already wrote but it didn't work. The problem wasn't about ujs, turbo, importmap. Another post guiding me while i was solving the problem.

devise_scope :user do
  get '/users/sign_out' => 'devise/sessions#destroy'
end

enter link description here

Reasons:
  • Blacklisted phrase (0.5): enter link description here
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: öykü parlak

79246877

Date: 2024-12-03 09:00:23
Score: 8.5 🚩
Natty:
Report link

@Zenilogix i am working for mobile phone which supports SyncML for contact synchronisation using OBEX serial(USB) with outlook. But i want to get contacts from it without syncking it to outlook or else i need to get that contacts before it syncs to outlook. How can i do it please help. that phone has its own tool to sync contacts with outlook, so i captured packets of it using wireshak then i got

02 00 2d cb 00
   00 00 00 42 00 20 61 70 70 6c 69 63 61 74 69 6f
   6e 2f 76 6e 64 2e 73 79 6e 63 6d 6c 2b 77 62 78
   6d 6c 00 c3 00 00 00 cd 

pls see pcapimg1. when i am trying to send same packet using my code i am not getting 90 00 03 this expected response from phone.pls see pcapimg2 i am attaching pacap file for packets captured for tool given by phone itself. i got success in getting serial connection to device using

LPCWSTR szPort2 = L"\\\\?\\usb#vid_1f58&pid_1f20&mi_03#dummy_03#{86e0d1e0-8089-11d0-9ce4-08003e301f73}";
HANDLE hSerial = CreateFile(szPort2, GENERIC_READ | GENERIC_WRITE, 0, 0, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, 0);

//FILE_ATTRIBUTE_NORMAL,FILE_FLAG_OVERLAPPED also i sucessfully sent AT command for obex // Sending the AT+ISAT_OBEX=1 command

const char* command = "AT+ISAT_OBEX=1";
DWORD bytesWritten;
if (!WriteFile(hSerial, command, strlen(command), &bytesWritten, NULL)) {
    std::cerr << "Error writing to serial port\n";
    return;}

after this i sent packets by reffering this pdf OBEX Connect Example page 23 ( ) OBEX Connect Example

i also got success in OBEX Connect. but i dont know how to move further pcapimg1 for obex put with wbxml , pcapimg2 this is expected response from device, wich i am not getting this is first packet i sent

0x80, 0x00, 0x15, 0x10, 0x00, 0x04, 0x00, 0x46, 0x00, 0x0e, 0x53, 
0x59, 0x4e, 0x43, 0x4d, 0x4c, 0x2d, 0x53, 0x59, 0x4e, 0x43,0x00,0x00,0x00

i got sucess reponse for this as

a0 00 1a 10 00 10 00 cb 00 00 00 00 4a 00 0e 53 59 4e 43 4d 4c 2d 53 59 4e 43

but this sencond packet i am sending

0x02,0x00,0x2d,0xcb,0x00,0x00,0x00,0x00,0x42,0x00,0x20,0x61,
0x70,0x70,0x6c,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x2f,
0x76,0x6e,0x64,0x2e,0x73,0x79,0x6e,0x63,0x6d,0x6c,0x2b,
0x77,0x62,0x78,0x6d,0x6c,0x00,0xc3,0x00,0x00,0x00,0xcd

, am not getting any respose from device

Reasons:
  • Blacklisted phrase (0.5): How can i
  • Blacklisted phrase (1): can i do
  • Blacklisted phrase (0.5): i need
  • Blacklisted phrase (1): i am trying to
  • RegEx Blacklisted phrase (3): please help
  • RegEx Blacklisted phrase (1): i want
  • RegEx Blacklisted phrase (1): i do it please
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @Zenilogix
  • Low reputation (1):
Posted by: Mahesh Gadhari

79246876

Date: 2024-12-03 09:00:23
Score: 2
Natty:
Report link

Check the below query for getting the desired result.

SELECT p.Name, p.Id, p.Food, c.Email, c.Phone FROM people p LEFT JOIN contacts c ON (p.Name = c.Name OR p.Id = c.Id) GROUP BY p.Food Order By p.Food;

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Rajesh Vishwakarma

79246870

Date: 2024-12-03 08:58:22
Score: 2
Natty:
Report link

Its true that NodeJs and Chrome browser both have V8 JS Engine, But setTime out is a API (Web API in terms of browser) and in the end NodeJS and Chrome both have different Javascript runtime Environment, conclusion both have same JS Engine but different JavaScript Runtime environment so they have implemented APIs there own way

Reasons:
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: kamil_1

79246867

Date: 2024-12-03 08:57:21
Score: 8 🚩
Natty: 6.5
Report link

I've also encountered the same problem using either the greenwood or the aalen method. Did you manage to solve it or at least get more information about it?

Best regards

Reasons:
  • Blacklisted phrase (0.5): Best regards
  • Blacklisted phrase (1): regards
  • RegEx Blacklisted phrase (3): Did you manage to solve it
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: João Carmezim Correia

79246861

Date: 2024-12-03 08:56:20
Score: 7.5 🚩
Natty: 5
Report link

An exception occurred: java.time.format.DateTimeParseException: Text '2024-05-04 11:23:26.646017' could not be parsed at index 10--->anyone help me out here why I am getting this error

Reasons:
  • Blacklisted phrase (1): help me
  • Blacklisted phrase (1): I am getting this error
  • RegEx Blacklisted phrase (1): I am getting this error
  • RegEx Blacklisted phrase (2): help me out
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Siddhes Tripathy

79246854

Date: 2024-12-03 08:54:19
Score: 2
Natty:
Report link

i had the same issue, after moving (changing directory name of main method), and IDE DID recognize that, but somehow the execution-configuration did not. 'had to remove and add configuration again and it did work out just right.

Reasons:
  • Whitelisted phrase (-1): i had the same
  • Low length (0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user28603005

79246827

Date: 2024-12-03 08:44:17
Score: 0.5
Natty:
Report link

A similar issue occurs, if the FMU dll requires another dll which is not included in the FMU, or if the importing tool does not handle the dependent dlls correctly. So, you must make sure that the dependent dlls are available on the executing computer or in the FMU. You can also try to avoid dependencies by linking statically.

You can observe the dependency tree with the dependency walker (https://www.dependencywalker.com) or reimplementations of that tool (https://github.com/lucasg/Dependencies).

Visual Studio binaries depend on the runtime libraries (e.g. msvcr*.dll) if you set the switch "/md". If you set the switch "/mt" the dependency is linked statically to your library.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: CSchulzeTLK

79246826

Date: 2024-12-03 08:43:16
Score: 3
Natty:
Report link

I think you can create teamsapp to create a custom page or whatever you want show in your custom app. Check this out! teamsapp CLI You can create teamsapp and enable it work with outlook

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Abdulrahman Elheyb

79246813

Date: 2024-12-03 08:39:15
Score: 3.5
Natty:
Report link

can we call flow from apex here? triggering on every update when conditions are met while leveraging Flow to handle the callout or other declarative automation tasks.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): can we
  • Low reputation (1):
Posted by: shikhar sharma

79246793

Date: 2024-12-03 08:31:13
Score: 0.5
Natty:
Report link

Solution

net <- networkDynamic(vertex.spells=vertexData[,c(2,3,4,1)],
                           edge.spells=edgeData[,c(3,4,6,7,5)],
                           create.TEAs=TRUE,
                           edge.TEA.names="weight",
                           vertex.TEA.names="vertex")


?reconcile.edge.activity: "When networkDynamic objects are created from real-world data it is often the case that activity information for vertices and edges may not come from the same source and may not match up exactly. Vertices may be inactive when incident edges are active, etc. The reconcile.vertex.activity function modifies the activity of a network's vertices acording to the mode specified"

reconcile.edge.activity(net,mode="match.to.vertices")

For the following, check skyebend's answer to this question:

render.d3movie(net,displaylabels = T,edge.lwd = function(slice){slice %e% "weight"*10},
               label=function(slice){slice %v% "vertex"})
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: mark

79246792

Date: 2024-12-03 08:31:13
Score: 3
Natty:
Report link

First you need to set the class path of all jar files then access database of Ms access from cmd console.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user28602664

79246779

Date: 2024-12-03 08:25:11
Score: 0.5
Natty:
Report link

It looks like Flutter's AudioSessionConfiguration doesn't map exactly on to iOS's AVAudioSession categories, however if you need to ignore the mute switch and integrate with the media controls, you'd use the playback category, which probably correspond's to Flutter's AudioSessionConfiguration.playback(), so why not use that?

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • High reputation (-2):
Posted by: Gordon Childs

79246777

Date: 2024-12-03 08:24:11
Score: 0.5
Natty:
Report link

In case someone is still wondering about this. Adding index to every foreign key is considered a bad practice.

  1. Don’t index every column of the table.
  2. Don’t create more than 7 indexes per table (clustered and non-clustered)
  3. Don’t leave a table as Heap (create a clustered index).
  4. Don’t create an index on every column involved in every foreign key
  5. Don’t rebuild an index too frequently (monthly once is good enough)
  6. Don’t create an index with more than 5 to 7 key columns
  7. Don’t create an index with more than 5 to 7 included columns
  8. Don’t add your clustered index key in your non-clustered index
  9. Don’t change server fill factor, change it at an index level (as needed)
  10. Don’t ignore index maintenance

https://blog.sqlauthority.com/2020/02/13/sql-server-poor-indexing-strategies-10-donts-for-indexes/

Having too many nonclustered indexes can cause numerous problems. First, unneeded indexes take up space. This impacts storage costs, backup and recovery times, and index maintenance times. Indexes must be kept up to date whenever data changes. The performance of inserts, updates, and deletes is impacted by nonclustered indexes. Have you ever heard of a SELECT query that runs more slowly because there are too many indexes on a table? I have seen it happen. When the optimizer comes up with a plan for a query, it must consider the available indexes, three types of joining, order of joins, etc. The number of plan choices increases exponentially. The optimizer won’t take long to come up with a plan, however, and will sometimes stop with a “good enough plan”. It’s possible that the optimizer didn’t have enough time to figure out the best index because there were too many to consider.

https://blog.sqlauthority.com/2015/03/26/sql-server-mistake-to-avoid-duplicate-and-overlapping-indexes-notes-from-the-field-073

SQL Server Indexes are not always as much as helpful as we like to think. Often they work against our overall server performance. In this session, we will see some troublemaking scenarios and their workarounds. Slow Running Queries are the most common problem that developers face while working with SQL Server. While it is easy to blame SQL Server for unsatisfactory performance, the issue often persists with the way queries have been written, and how Indexes has been set up. The session will focus on the ways of identifying problems that slow down SQL Server, and Indexing tricks to fix them. We will see a few different scenarios where indexes will actually negatively affect the performance of queries. By removing some of the indexes, we can easily improve the performance of overall system. This is a very unique session and will explore the dark side of indexes and its resolutions. Developers will walk out with scripts and knowledge that can be applied to their servers, immediately.

https://www.youtube.com/watch?v=pdS7UZ-mAnA

This issue is inbaked in every relational database. It's just inside the fundamentals how they work. Choose your battles, you cannot make every query fast.

Starting from EF Core 7 here's how you remove this feature.

protected override void ConfigureConventions(ModelConfigurationBuilder configurationBuilder)
{
  configurationBuilder.Conventions.Remove(typeof(ForeignKeyIndexConvention));
}

Or by using generics

protected override void ConfigureConventions(ModelConfigurationBuilder configurationBuilder)
{
  configurationBuilder.Conventions.Remove<ForeignKeyIndexConvention>();
}

https://learn.microsoft.com/en-us/ef/core/what-is-new/ef-core-7.0/whatsnew#example-dont-create-indexes-for-foreign-key-columns

Reasons:
  • Blacklisted phrase (1): youtube.com
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Mika Karjunen

79246772

Date: 2024-12-03 08:22:10
Score: 2.5
Natty:
Report link

I guess you can try to use SubstituteDisplayFilter event. In this case you can patch filter criteria before it's applying to an inner source. Here is the GitHub example

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Alex Di

79246770

Date: 2024-12-03 08:21:10
Score: 1.5
Natty:
Report link

You can check directory permissions and set to 755 and for files to 644.

Add below code wp-config.php file

define( 'UPLOADS', 'wp-content/uploads' ); 
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Redsymbol Manage

79246767

Date: 2024-12-03 08:20:10
Score: 2
Natty:
Report link

The decision is:
You have to send the full made string that contains link instance guid and element guid by this pattern:

linkInstanceGuid/elementGuid
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: sza

79246764

Date: 2024-12-03 08:19:10
Score: 1
Natty:
Report link

To position the dialog 20px from the top of the viewport, you can update the position option in the .dialog() call. Here's the adjusted code:

  position: { my: "center top", at: "center top+20", of: window }, // 20px from the top
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: A.moizRiaz

79246761

Date: 2024-12-03 08:19:10
Score: 3.5
Natty:
Report link

Can delete android folder and run react native project once again.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Can
  • Low reputation (0.5):
Posted by: Nitin Patel

79246756

Date: 2024-12-03 08:18:09
Score: 0.5
Natty:
Report link

1- Close Android studio.

2- Find this file in location $HOME/.gradle/caches/journal-1/journal-1.lock and delete those files

3- Open android studio again.

The problem will be fixed!!

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Viroth

79246753

Date: 2024-12-03 08:17:09
Score: 0.5
Natty:
Report link

Now I got it :) Thanks @jared, pcolormesh was the right function, but I have to explicitly map the colors as the plotted variable:

import numpy as np
from matplotlib import pyplot as plt

axes = (np.linspace(-2, 2, 100), np.linspace(-2, 2, 100))
xx, yy = np.meshgrid(*axes, indexing="xy")
fig, ax = plt.subplots()
z = np.abs(xx * yy).astype(int)  # values 0, 1, 2, 3, 4
z[z==0] = 4

cmap = plt.get_cmap("Set1")   
z_color = cmap(z)  # shape (100, 100, 4) with `z` as index
ax.pcolormesh(xx, yy, z_color)

pcolormesh plot

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Probably link only (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • High reputation (-1):
Posted by: ascripter

79246751

Date: 2024-12-03 08:15:08
Score: 2
Natty:
Report link

Sorry about that, we are migrating our website and it broke the redirection.

We'll fix it asap, in the meantime you can change the repo URL to https://download.linphone.org/maven_repository/

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Viish

79246747

Date: 2024-12-03 08:13:08
Score: 2
Natty:
Report link

You cannot have concurrent versions of React running. What you can do however is have two instances of Storybook side by side, one for each framework, and use Storybook composition to combine them into the same UI.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Steve Dodier-Lazaro

79246746

Date: 2024-12-03 08:12:08
Score: 0.5
Natty:
Report link

I suspect that this is related to how localhost is treated in different browsers. If you are able to give it a proper hostname in /etc/hosts, you can check if this is the reason. If it is localhost related, this will not cause any issues in your production environment.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: Halvor Sakshaug

79246745

Date: 2024-12-03 08:12:08
Score: 3
Natty:
Report link

Additionally, for anyone who does have the required permissions to add keys via the portal but receives 'Bad Request: ""', verify that the name and value of your key can be added to the vault as well.

enter image description here

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: shinyshark

79246742

Date: 2024-12-03 08:10:07
Score: 3.5
Natty:
Report link

Don;t make it complex, Just restart the system

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Lakshminarayana tula

79246741

Date: 2024-12-03 08:10:07
Score: 3
Natty:
Report link

It should not be the case to resolve by unpacking. template should support the platform where we are using.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Sathish Gowdnar

79246732

Date: 2024-12-03 08:07:06
Score: 4
Natty:
Report link

I downgraded to exporter version 0.15.0 and the metrics appeared

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: maryam

79246719

Date: 2024-12-03 08:03:05
Score: 1.5
Natty:
Report link

Ok I have found an insight from people in discord which resulted as a solution in my case.

So you will need a web server to host your backend. Thanks to my boss's help, here are the steps:

  1. Setup your DB connection and laravel env file with the web server's credentials
  2. Use the web server's url at the axios request in your frontend
  3. Install filezilla (or any that suits you) to save updated files to the server

Tadaa & you're done!

So in conclusion, you will need a web server to host your backend in android devices.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: nur najihah

79246710

Date: 2024-12-03 08:00:04
Score: 1
Natty:
Report link

Here is posibe solution for your query.. hopefully it can help you.

enter image description here

$(document).ready(function () {
        const time = new Date();
        const options = { month: 'short', day: 'numeric', year: 'numeric' };
        const formattedDate = time.toLocaleDateString('en-US', options); 
        $(".post-time p").text(formattedDate); });
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<div class="post-time">
    <p></p>
</div>

Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Taqi Raza Khan

79246708

Date: 2024-12-03 07:59:04
Score: 3.5
Natty:
Report link

Same here, I have experienced two days since Dec, 02, 2024 to Dec, 03, 2024.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: HoHo

79246688

Date: 2024-12-03 07:51:02
Score: 1.5
Natty:
Report link

I had a similar use case. I developed a single Dialog component and managed it using state management. When the delete button is clicked, I saved the ID of the specific item in the state and opened the delete dialog. I believe this approach avoids rendering multiple dialogs.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Saif Ibrahim

79246679

Date: 2024-12-03 07:49:01
Score: 3
Natty:
Report link

postman proxy I had the issue, when tried starting the proxy, it's working

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Simanta Raj Sarma

79246672

Date: 2024-12-03 07:47:00
Score: 2.5
Natty:
Report link

https://cpulator.01xz.net/?sys=arm-de1soc&d_audio=48000

.global _start
_start:
.data
    arr:
        .byte 83, 12, 35, 23, 47, 33, 50, 91, 101, 55, 63, 85, 78
        .equ len, .-arr
    
Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Steven Low

79246659

Date: 2024-12-03 07:42:59
Score: 2
Natty:
Report link

curl --location 'https://recruit.zoho.in/recruit/v2/Job_Openings'
--header 'Authorization: Bearer YOUR_ACCESS_TOKEN' Use code with caution.

Replace YOUR_ACCESS_TOKEN with your actual Zoho Recruit access token. This command will fetch a list of job openings from Zoho Recruit.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Suman Ghosh

79246657

Date: 2024-12-03 07:40:59
Score: 0.5
Natty:
Report link

The issue you are encountering with Milvus likely stems from two potential causes: connection instability and incomplete collection loading. Despite your query operation working correctly, the search operation introduces additional dependencies on the collection being fully loaded into memory and stable connectivity to the Milvus server.

The "connection refused" error suggests that the Milvus server is either not accessible or experiencing downtime at the time of your search request. This could happen if the server address or port configuration in your script does not align with the actual deployment details. Alternatively, there may be intermittent network issues or resource constraints on the Milvus server, particularly if it is running in a containerized or cloud environment. Ensuring that the MILVUS_HOST and MILVUS_PORT variables in your script correctly point to the active Milvus instance is essential. You should also verify that the server is operational and its logs do not indicate any errors related to resource allocation or connectivity.

The "collection not loaded" error indicates that while the collection.load() method was called, the collection might not have been fully loaded into memory before the search was initiated. This could occur due to high memory usage, server resource limitations, or a delay in the loading process. It is critical to ensure that the collection.load() operation completes successfully before proceeding with the search. You can validate this by using utility.has_collection_loaded(collection_name) to confirm the collection's status.

To address these issues, you should verify the stability and accessibility of the Milvus server, ensure that the correct server configuration is in use, and confirm that the collection is fully loaded and ready for search operations. These steps should resolve the errors and enable the search functionality to work as expected.

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: rjlin

79246644

Date: 2024-12-03 07:35:58
Score: 1.5
Natty:
Report link

You can just write:

NM.LocationChanged -= async (sender, args) => await OnLocationChanged(sender, args);
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: test12

79246643

Date: 2024-12-03 07:35:58
Score: 2.5
Natty:
Report link

I’m confident this solution will work for you as well!

You can just use it for the server components. import { unstable_noStore as noStore } from 'next/cache';

noStore();

Docs:https://nextjs.org/docs/14/app/api-reference/functions/unstable_noStore

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: atif1169

79246640

Date: 2024-12-03 07:34:57
Score: 1
Natty:
Report link

Okey cool let's break the problem into solution step by step

. First Display Installed Libraries and Versions: Using pip: pip list

  1. Using pip show: pip show <package_name>

Next Replace <package_name> with the specific library you want to check.

  1. Uninstall the Old Version: pip uninstall <package_name>

  2. Install the New Version: pip install <package_name>==<version_number>

⁠● Replace <version_number> with the desired version.

Remember to verify the correct version after installation. By following these steps and considering the additional points, you can effectively update your Python libraries and resolve potential issues.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: omkar dodamani

79246635

Date: 2024-12-03 07:32:57
Score: 0.5
Natty:
Report link

I had the same issue with Xcode and was finally able to fix it by following the steps below.

  1. Select "Custom" option for distribution and Next

Select "Custom" option for distribution

  1. Select App Store Connect from the second window and Next

  2. Select Export for the destination and Next enter image description here

  3. After that, the same error message will be displayed, but you will now be able to proceed to the next step. List item

  4. Select the sign-in method for manual signing as shown below.

enter image description here

  1. Go to the Apple Developer account, create a distribution certificate, download it, import it, and select the imported certificate for distribution as shown below.

enter image description here enter image description here

  1. After completing all these steps, you can export a signed .ipa file.

  2. Now, go to the App Store on your Mac and download the Transporter app. Log in to Transporter, then click the '+' icon at the top left corner and select the exported .ipa file. I hope you are able to upload the app to TestFlight without any issues.

enter image description here

Reasons:
  • Whitelisted phrase (-1): I had the same
  • Probably link only (1):
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Nipun

79246631

Date: 2024-12-03 07:31:56
Score: 3.5
Natty:
Report link

It was a company antivirus software related issue. Uninstalling solved it.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Oleg

79246630

Date: 2024-12-03 07:31:56
Score: 2
Natty:
Report link

Use which clang to check which clang you use, If clang is NOT in Android NDK package, Please use sudo apt-get remove clang then try again

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user28601692

79246620

Date: 2024-12-03 07:28:55
Score: 1.5
Natty:
Report link

Update for MUI 6:

<TextField
  slotProps={{
    input: {
      inputProps: {
        style: {
          textAlign: 'center',
        }
      },
    },
  }}
/>
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Alex Hunter

79246616

Date: 2024-12-03 07:27:55
Score: 8
Natty: 7
Report link

Same issues Occur on myside also. Can I known this issue resolve or not?

Reasons:
  • RegEx Blacklisted phrase (1.5): resolve or not?
  • RegEx Blacklisted phrase (1): Same issue
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Yuvi

79246614

Date: 2024-12-03 07:27:54
Score: 3
Natty:
Report link

What I am doing here essentially is discarding the first statement where I declare an array of size 5 and creating an entirely new array of size 6.

Because an array is a reference type the second statement is overriding the first with new keyword (where '[]' is the shorthand of it).

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Starts with a question (0.5): What I am
  • Low reputation (1):
Posted by: Mohammed Imadh

79246604

Date: 2024-12-03 07:23:53
Score: 2.5
Natty:
Report link

You can just downgrade openSSL to 3.3.x while waiting for the fix with openSSL 3.4.0

Reference : https://github.com/facebook/flipper/issues/5680

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Toàn Trần

79246599

Date: 2024-12-03 07:22:53
Score: 1
Natty:
Report link

You are not adding values to the array, you are replacing it.

int[] arr = new int[5]; --> int[] arr = [0,0,0,0,0]
arr = [1,2,3,4,5,6];    --> int[] arr = new int[] {1,2,3,4,5,6} 
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: KriyenKP

79246584

Date: 2024-12-03 07:16:51
Score: 4
Natty:
Report link

timeout issue resolved by doing JDK configuration changes in the function app.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Vara Lakshmi

79246581

Date: 2024-12-03 07:15:51
Score: 1.5
Natty:
Report link

I had that once, I believe the issue was somehow related to window.crypto (https://developer.mozilla.org/en-US/docs/Web/API/Window/crypto) and the crypto library included in node. I wanted to use the window.crypto, but somehow I got the nodeJS crypto Library, which either has a different signature or doesn't work in browsers. Check your files, if you're using crypto anywhere, or if it comes from a library, make sure your dependencies are correct (as start as little as possible, check with some tutorials).

Reasons:
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Dominic

79246580

Date: 2024-12-03 07:14:50
Score: 2
Natty:
Report link

Check below steps to call an Azure Function with Angular app deployed in an Azure App Service.

In API app registration you need to add a scope. enter image description here

In your angular app registration, add API permission that you've created earlier. enter image description here

enter image description here

Thanks to @Pshul for clear explanation, I've referred this doc for the code.

After deploying your angular app to Azure web app, make sure you add the web app URL to app registration. enter image description here

Make sure you enable CORS in your Function app

enter image description here

enter image description here

Please refer this MSdoc for better understanding about adding an Azure Function App as an API in Azure API Management.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-0.5):
  • No code block (0.5):
  • User mentioned (1): @Pshul
  • Low reputation (0.5):
Posted by: Sirra Sneha

79246578

Date: 2024-12-03 07:14:50
Score: 1
Natty:
Report link

If you are trying to connect Oracle RAC database, you can simply use the SCAN IPs. With that way you don't need to write or delete all of the IPs when the situation becomes new nodes added or removed on Oracle RAC databases.

Generally there is a specific domain address for the SCAN IPs and when you use that domain address while connecting, it automatically resolves the SCAN IPs, and with that way the requests will be redirected to the available nodes. It also helps to load-balance on servers.

If you want to get generic information you can check the documentation: About the SCAN

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Mehmet Eren Olgun

79246576

Date: 2024-12-03 07:13:50
Score: 4
Natty:
Report link

try "from tensorflow.python.keras.layers"

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Çağan

79246570

Date: 2024-12-03 07:10:49
Score: 2
Natty:
Report link

If you have connected your GitHub with the code, then you can directly revert the changes in your package.json file and do npm i again. Or if you have your previous package.json file then replace it with the new one and then do the same. It will fix out your issue.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Sahil

79246569

Date: 2024-12-03 07:09:48
Score: 3
Natty:
Report link

I am also facing the same issue, In which i was trying to fetch using

git fetch

But Getting this, **remote: Enumerating objects: 12246, done. remote: Counting objects: 100% (18/18), done. remote: Compressing objects: 100% (15/15), done. error: 23837 bytes of body are still expected1 MiB | 8.14 MiB/s ** So How I resolved this,

  1. Step 1:

git config --global http.postBuffer 524288000
git config --global http.maxRequests 100
git config --global core.compression
git config --global http.lowSpeedLimit 0
git config --global http.lowSpeedTime 999

  1. Step 2:

enter image description here

Now you can check the remote branches. These above Steps will help you to resolved yours.

Reasons:
  • Blacklisted phrase (1): I am also facing the same issue
  • Whitelisted phrase (-2): I resolved
  • No code block (0.5):
  • Me too answer (2.5): I am also facing the same issue
  • Low reputation (1):
Posted by: Abinash Gadsara

79246563

Date: 2024-12-03 07:06:47
Score: 3
Natty:
Report link

Please install the OceanWP theme first. Once installed, the settings will become available.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Furqan Athar

79246554

Date: 2024-12-03 07:02:46
Score: 1
Natty:
Report link

You have to use type="json" in the controller. It will go like the following:

class MySuperController(http.Controller):

@http.route('/devolive/review/<int:product_id>', type="json", method=['GET'])
def get_review_data(self, product_id):
    return result

This will always return the data in JSON format.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Tina Sharma

79246533

Date: 2024-12-03 06:53:44
Score: 1.5
Natty:
Report link

if name == 'main':

with tempconfig({'quality': 'low_quality', 'preview': True}):
    scene = YourClass()
    scene.render()
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: 杨永杰

79246527

Date: 2024-12-03 06:52:43
Score: 4
Natty:
Report link

Solved - use "rb+" to seek and write concurrently.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Pairman

79246525

Date: 2024-12-03 06:52:43
Score: 0.5
Natty:
Report link

Hello Stack overflow Community! 👋

I was working on a project using Lenis smooth scroll and faced some issues with form fields (inputs, selects, textareas) behaving oddly. After some debugging, I found a solution that works great, and I wanted to share it here to help others! 🚀

The Problem

When using Lenis smooth scroll, interactive elements like form fields can lose focus or behave unpredictably due to scroll effects interfering with user input.

The Solution

  1. Update Lenis Initialization Ensure Lenis is properly initialized and allows for seamless interaction:

    import Lenis from '@studio-freight/lenis';

    const lenis = new Lenis({ smooth: true, touchMultiplier: 1.5, });

    function raf(time) { lenis.raf(time); requestAnimationFrame(raf); }

    requestAnimationFrame(raf);

Bonus Resource

If you're creating a stunning website and need high-quality templates, I recommend checking out the Luxrio Multipurpose E-commerce Jewellery HTML Template. It’s fully responsive and works beautifully with Webflow projects and Lenis smooth scroll.

Let me know if this helps, or feel free to share your Webflow read-only link if you need additional assistance! 😊

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Md Mehadi Hassan

79246521

Date: 2024-12-03 06:50:42
Score: 2.5
Natty:
Report link

It’s an interesting concept! I like the idea of having only one food item that changes location randomly. It adds a fun twist, keeping things simple yet unpredictable. Looking forward to seeing how this mechanic evolves.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: andrew

79246517

Date: 2024-12-03 06:47:41
Score: 1.5
Natty:
Report link

Inovine Scientific Meetings cordially invites you to attend the 6th World Congress on Pediatrics & Neonatology (WCPN 2025), scheduled for August 04-05, 2025, in Tokyo, Japan. This esteemed event will bring together leading pediatricians, neonatologists, and child health experts from around the world to explore the theme "Empowering Future Generations: Cutting-Edge Approaches in Child Health and Neonatal Practices." Pediatrics and neonatology conferences are invaluable for the professional advancement of healthcare providers focused on child health. These gatherings provide a unique platform to share knowledge, discuss recent breakthroughs, and explore innovative approaches in pediatric and neonatal care. Attendees can participate in hands-on workshops, attend specialized seminars, and learn from lectures that address the latest treatments, medical technologies, and healthcare policies specific to pediatrics and neonatology. Networking opportunities allow professionals to connect with peers and industry leaders, and poster presentations highlight new research and best practices. Our conference also offer continuing education credits, essential for maintaining licensure. Overall, these events empower pediatric and neonatal professionals to remain at the forefront of their field and support lifelong learning and career development. Thank you!

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Long answer (-1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Elena Watson

79246509

Date: 2024-12-03 06:45:41
Score: 1
Natty:
Report link
                writer = File.AppendText(saveFileDialog.FileName);
                foreach (var item in lbxTekstVak.Items)
                {
                    if (item != null) 
                    {
                        writer.WriteLine(item.ToString());
                    }
                    else
                    {
                        writer.WriteLine("empty item");
                    }
                }
Reasons:
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: tester

79246503

Date: 2024-12-03 06:44:41
Score: 3
Natty:
Report link

Currently from flyway v9.0 the above-mentioned option (ignore-missing-migrations: true) is deprecated and introduced the option ignore-migration-patterns: '*:missing'

please refer https://documentation.red-gate.com/flyway/flyway-cli-and-api/configuration/parameters/flyway/ignore-migration-patterns for more information.

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Sri hari

79246495

Date: 2024-12-03 06:39:39
Score: 1
Natty:
Report link

Shouldn't this work?

SELECT 
  CASE month
    WHEN jan THEN  1
    WHEN feb THEN  2
    WHEN mar THEN  3
    WHEN apr THEN  4
    ELSE 'other'
  END AS monthno
, *
FROM monthly_sales
UNPIVOT (sales FOR month IN (jan as 1, feb as 2, mar as 3, apr as 4))
ORDER BY empid, 1;                                                         
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • High reputation (-1):
Posted by: marcothesane

79246491

Date: 2024-12-03 06:37:39
Score: 1.5
Natty:
Report link
monaco.editor.registerLinkOpener({
            open: (link) => {
                console.log(link); // Uri
                return true;
            },
        });
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: user1866106

79246488

Date: 2024-12-03 06:36:38
Score: 6
Natty: 7
Report link

What steps did you follow to build erlang with FIPS enabled?

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): What
  • Low reputation (1):
Posted by: Megha Bansal

79246481

Date: 2024-12-03 06:32:37
Score: 1
Natty:
Report link

I added a 01/01/2025 in column I.

Formula in C2 is this:

=LET(total, NETWORKDAYS.INTL(C$1, D$1 - 1, 1, ), start, MAX($A2, C$1), end, MIN($B2, D$1 - 1), IF(start > end, 0, NETWORKDAYS.INTL(start, end, 1, ) / total))

You can fill it to the right, then fill it down.

enter image description here

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
Posted by: rachel

79246476

Date: 2024-12-03 06:31:37
Score: 3
Natty:
Report link

I think Suddenly I'm facing the same issue again

import { reactRouter } from "@react-router/dev/vite";
import autoprefixer from "autoprefixer";
import tailwindcss from "tailwindcss";
import { defineConfig } from "vite";
import tsconfigPaths from "vite-tsconfig-paths";
export default defineConfig({
  resolve:{alias:{'@':'/src'}},//this is the extra line I added 
  css: {
    postcss: {
      plugins: [tailwindcss, autoprefixer],
    },
  },
  plugins: [reactRouter(), tsconfigPaths()],
server:{//and this is extra section I added 
    host: true,
    port: 8001,
  }
});

when I run the docker run image_id it gives

> start
> react-router-serve ./build/server/index.js
[react-router-serve] http://localhost:3000 (http://172.17.0.2:3000)

but when I go to localhost:3000, Page can't be reach, why

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): I'm facing the same issue
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Abrar

79246470

Date: 2024-12-03 06:29:36
Score: 1.5
Natty:
Report link

An IDE is mandatory to avoid sintax error, but tools like PHPStan or PHPCS are also mandatory to be sure you are coding in the same way your team colleagues ande your code is well indented.

Without this tools you (or your colleagues) could find tons of changes in github reviews when just a few lines were changed.

You can configure your commits as well to run these tools with others like CSSLint or ESLint before committing to be sure everything's fine (sintatically speaking).

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: cvegabon

79246469

Date: 2024-12-03 06:29:36
Score: 4
Natty:
Report link

Firewall performance. { PERMIT }

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Neutromo

79246468

Date: 2024-12-03 06:28:36
Score: 3
Natty:
Report link

You will find a field named 'E-commerce Description' in Product --> Sales Tab --> at the bottom. This will add product descriptions for any product to the website.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Tina Sharma

79246466

Date: 2024-12-03 06:28:36
Score: 2.5
Natty:
Report link

The user has provided 2 methods. The 2nd method is used while the space complexity is not an issue and also while the user wants Stability; the 2nd approach is used to maintain the order of the elements.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Tirth Shah

79246465

Date: 2024-12-03 06:28:36
Score: 1.5
Natty:
Report link

Unfortunately, fastcall is not available for calling from managed code. It should only work for Mono or NativeAOT

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Yotic

79246464

Date: 2024-12-03 06:27:35
Score: 0.5
Natty:
Report link

$stackPtr is not a class member var in \vendor\squizlabs\php_codesniffer\src\Files\File.php:1888. It is generally thrown when the parser doesn't find the matching brackets during sniff, however it can be confusing what is causing the issue.

In my case, it was php string interpolation with curly brackets.

$settings = \Drupal::config("tmgmt.translator.{$plugin_id}")->get('settings');

Opting for different way or simply commenting the line during sniff may fix the error.

If the number of files are too large to pin point the error causing file, we can print and check the $this->path above this line \vendor\squizlabs\php_codesniffer\src\Files\File.php:1888.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Himanshu Lahare

79246462

Date: 2024-12-03 06:26:35
Score: 1.5
Natty:
Report link

It's just because our manual failover API call eventually is directed to sentinels by internal algorithms. It's quite natural for sentinel to do so as sentinel has responsibilities to monitor nodes.

However, as you wonder, some people try to make changes so that we can deal with it like cluster (ask replicas instead of sentinels). For example, this is an issue in valkey project. https://github.com/redis/redis/issues/13118

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Koji Higasa

79246456

Date: 2024-12-03 06:20:34
Score: 0.5
Natty:
Report link

Please set the value as 'newText'

 <TextInput
      style = {styles.itemText}
      mode="outlined"
      multiline
      value={newText}
      placeholder='FOR TEST' 
      placeholderTextColor={'gray'} 
      onChangeText={(text) => setNewText(text)}
 />
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Avijit

79246454

Date: 2024-12-03 06:19:33
Score: 4.5
Natty:
Report link

To the best of my knowledge, docker login will log you into dokcerhub. In that case, dockerhub does not support GPG authentication, only password and token.

Mybe what you're looking for is using token which can be achieved like below:

How to Generate a Personal Access Token in Dockerhub:

  1. Log in to your Docker Hub account: Docker Hub.
  2. Go to Account Settings > Security.
  3. Click New Access Token. Use this token in place of your password during docker login.

In case this is not what you're looking for, could you please provide more info. Do you get the stated error immediately you type docker login or do you get the error after you input some values after docker login?

Reasons:
  • RegEx Blacklisted phrase (2.5): could you please provide
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Moses Mbadi

79246453

Date: 2024-12-03 06:19:33
Score: 3.5
Natty:
Report link

if DwmCompositionEnabled then begin // This will hide the window. var bValue: Bool; bValue := False; DwmSetWindowAttribute(FMXHandleToHWND(Handle), DWMWA_CLOAK, @bValue, SizeOf(bValue)); end;

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • User mentioned (1): @bValue
  • Low reputation (1):
Posted by: Jeff Taylor

79246428

Date: 2024-12-03 06:08:31
Score: 1.5
Natty:
Report link

From Android Studio doesn't detect my connected physical devices

Go to Settings -> About phone -> Tap on Build number several times, then go to Settings -> Developer -> USB debugging

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • High reputation (-1):
Posted by: kmort

79246421

Date: 2024-12-03 06:05:29
Score: 5
Natty: 8
Report link

can i get your contact Flying Dutchman?I need one work

Reasons:
  • Blacklisted phrase (0.5): I need
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): can i
  • Low reputation (1):
Posted by: sol gufmen

79246403

Date: 2024-12-03 05:57:27
Score: 3.5
Natty:
Report link

This is the best.This is the best.This is the best.This is the best

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: tirth shah

79246397

Date: 2024-12-03 05:53:26
Score: 1
Natty:
Report link

Try using the setStyle method as follows:

$w.onReady(function () {
    $w("#menuToggle1").setStyle({
        "color": "red"
    });
});

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Trushaba B. Jadeja

79246375

Date: 2024-12-03 05:41:24
Score: 0.5
Natty:
Report link

You can use this NPM package for generating high performance APIs. It supports postgresql database. -- You can install it in your VPS and attach your postgresql connection string and it will generate 30 APIs for each table of each database.

https://www.npmjs.com/package/@sava-info-systems/api-maker

Reasons:
  • Whitelisted phrase (-1.5): You can use
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Mayurkumar Patel

79246356

Date: 2024-12-03 05:33:22
Score: 2
Natty:
Report link

I installed developer version and couldn't login. so I had to login as windows authentication again and create a new login user. but the above worked for me as well!!! thank you so much.

Reasons:
  • Blacklisted phrase (0.5): thank you
  • Whitelisted phrase (-1): worked for me
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Nir Katuni

79246343

Date: 2024-12-03 05:23:20
Score: 1
Natty:
Report link

There is a mongoose plugin which can assist with this action.

Find or create plugin npm package

It provides a findOrCreate method that will either return the record, or create a new one. Very similar to how other ORM engines (Such as Laravel's eloquent) handles this type of operation.

I thought it might be nice to post an answer, so people are aware.

Reasons:
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Cam

79246337

Date: 2024-12-03 05:21:19
Score: 5
Natty:
Report link

Please make sure you are configuring different sso for agents and contacts and if you don't see "are you a customer" button then please feel free to reach out to Freshdesk support.

Also, Ensure that you refer to the steps suggested for different IDP and sos type here- https://support.freshworks.com/support/solutions/articles/50000002351-what-is-and-how-to-configure-agent-sso-and-contact-sso-for-an-organization-

TIA :)

Reasons:
  • RegEx Blacklisted phrase (2): TIA
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Mahendar Rajpurohit

79246336

Date: 2024-12-03 05:20:18
Score: 3
Natty:
Report link

The compatibility issues you're encountering with Ext JS 4.0 and Sencha Touch 2.0 on iOS 18.2 Beta are not uncommon when older JavaScript frameworks interact with modern WebKit updates. Below, I’ve addressed your questions and provided insights into possible solutions, along with how Rev9 Solutions can assist you.

Known Issues with Legacy Frameworks and iOS 18.2 Beta Deprecation of JavaScript Features: iOS 18.2 Beta, leveraging the updated WebKit engine, may deprecate or alter the behavior of legacy DOM methods or JavaScript features critical to older frameworks like Ext JS 4.0 and Sencha Touch 2.0. These frameworks rely heavily on features like event delegation and older rendering pipelines, which might now function differently or be unsupported.

Rendering and Performance Problems: The delay in touch event rendering and broken UI elements is a known challenge when transitioning older frameworks to newer WebKit versions. These frameworks often lack updates to maintain compatibility with modern web standards.

Recommendations and Workarounds Enable Legacy JavaScript Support: iOS typically doesn’t provide a direct way to enable legacy JavaScript support. However, you can test alternate rendering modes using the tags to enforce compatibility or experiment with polyfills to bridge the gap for deprecated features.

Framework Updates or Migration: If feasible, consider migrating your application to newer frameworks or updating to more recent versions of Ext JS or Sencha (if available). This might require significant effort but will provide long-term stability and better compatibility.

Optimizations with Rev9 Solutions: At Rev9 Solutions, we specialize in modernizing legacy applications and ensuring compatibility with evolving web standards. Our services include:

Framework Modernization: Upgrading or replacing outdated frameworks with modern web solutions. Web Application Optimization: Enhancing performance, fixing rendering issues, and ensuring seamless cross-platform functionality. Custom Solutions: Tailoring your application to work smoothly with iOS 18.2 Beta and beyond, using advanced debugging and optimization techniques. Testing and Debugging: Utilize Safari’s Web Inspector to debug the application on iOS 18.2 Beta. This will help pinpoint specific JavaScript or DOM issues and provide clarity on the root causes of performance degradation.

How We Can Help If you’re seeking a comprehensive solution to resolve these issues and future-proof your application, our team at Rev9 Solutions can assist. We provide end-to-end Web Development and Web Solutions services, ensuring your app is compatible with the latest platforms and technologies. Contact us today to explore how we can optimize your application and restore its performance.

Feel free to reach out for additional insights or to discuss your project further.

Best regards, Syed Faisal Kazmi Rev9 Solutions Unlock Your Business Potential with Innovative Software Solutions

Reasons:
  • Blacklisted phrase (0.5): Best regards
  • Blacklisted phrase (1): regards
  • Contains signature (1):
  • Long answer (-1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Rev9 Solutions

79246335

Date: 2024-12-03 05:19:18
Score: 1.5
Natty:
Report link

answering to why we get Main m1 and A constructor .After inheriting if we execute class Main(i.e. java Main). We get class Main members as instance block {m1();} constructor A() and object of Class Main (i.e. Main m = new Main()) ,method m1()(i.e. overridden and now it's output is (Main m1)).The control flow is from first block { m1();} executed but m1(); is overridden so we get "Main m1"and then constructor A(){} is executed so we get "A constructor".

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Rakesh Nayak

79246331

Date: 2024-12-03 05:18:18
Score: 1
Natty:
Report link

I had a same issue on Ubuntu 22.04LTS(nvidia docker image). I tried many things, but only the last solution was effective.

For my environment, the solution was

pip install mayavi==4.8.1

Any other version made vtk error or other kinds of errors. As a result, I installed sucessfully without installing vtk.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: 이병성

79246322

Date: 2024-12-03 05:14:17
Score: 3
Natty:
Report link

If you add custom plugin, check plugin's build.gradle. Change "implementation project(':capacitor-android')" to "implementation 'io.ionic:portals:0.10.2'". It's help me

Reasons:
  • Blacklisted phrase (1): help me
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: ikosdroid

79246320

Date: 2024-12-03 05:12:16
Score: 4
Natty:
Report link

It doesn't work anymore for php5.6-apache docker image so I used one I found:

https://hub.docker.com/r/porchn/php5.6-apache

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Roi

79246319

Date: 2024-12-03 05:11:16
Score: 3
Natty:
Report link

I am able to use Gemini API, which I have created from google AI Studio, when when I click on see usage button near the API key, I can't see any information about the usage of that API, that dashboard is completely empty, Nothing to show. I didn't have any credentials for API's and all, I just created that API from google AI studio and I was able to use that. But now I want to see the usage of that API.

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Aparna Anand

79246314

Date: 2024-12-03 05:09:15
Score: 3.5
Natty:
Report link

What if I don't have to intialise a list, i mean can it be done directly as i don't want to clutter my code.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): What if I
  • Low reputation (1):
Posted by: Aryan

79246313

Date: 2024-12-03 05:08:15
Score: 0.5
Natty:
Report link

It looks like this now works out of the box! You still can't mark a parameter as nullable in the create function UI in the Supabase dashboard though, but at least the type generation is working correctly.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: Flying_Banana

79246308

Date: 2024-12-03 05:05:13
Score: 7 🚩
Natty: 6
Report link

I had tried step 3,4 but still fail. Any ideas?

Reasons:
  • Blacklisted phrase (1): Any ideas
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user28599618

79246303

Date: 2024-12-03 05:00:12
Score: 1
Natty:
Report link

If I remember correctly this helped me:

If I delete the model, I can reassign the GPU memory.

# model_1 training
del model_1
# model_2 training works

If I try to keep the model, the deep copy retains the connection to the GPU, and I cannot use assigned GPU memory.

import copy
# model_1 training
model_1_save = copy.deepcopy(model_1)
del model_1
# model_2 training memory error

If I want to use the first model later, and train a second model on a GPU :

# model_1 training
model_1.to("cpu")
# model_2 training works
model_2.to("cpu")
model_1.to("cuda")
# model_1 continuing training works
Reasons:
  • Blacklisted phrase (0.5): I cannot
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Alex

79246300

Date: 2024-12-03 04:59:12
Score: 2.5
Natty:
Report link

To avoid affecting other columns and simplify the process, you can directly update the values for each group based on the first row, without needing to repeat rows manually. This keeps the data clean and efficient. For more tips on SEO and data handling, feel free to check out my site Clever Linker.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: SaithSubhan

79246298

Date: 2024-12-03 04:58:11
Score: 1
Natty:
Report link

This can't be done using YAML::XS.

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-2):
Posted by: ikegami

79246290

Date: 2024-12-03 04:50:10
Score: 0.5
Natty:
Report link

Based on @wesley-banfield 's answer, I got it ran sucessfully:

{
    "tasks": [
        {
            "type": "shell",
            "options": {
              "shell": {
                "args": ["-i"]
              },
              "cwd": "${workspaceFolder}"
            },
            "label": "C/C++: g++ build active file",
            "command": "conda activate test; cmake --build build -j 256",
            "problemMatcher": [
                "$gcc"
            ],
            "group": "build",
            "detail": "compiler: /usr/bin/g++"
        }
    ],
    "version": "2.0.0"
}

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @wesley-banfield
  • Low reputation (0.5):
Posted by: scruel