36 questions
1
vote
1
answer
427
views
I've built a different GCC version than the system's, and now get "undefined reference"s and "DSO missing from command-line"
I've built GCC 14.2.0 from sources, on an Oracle GNU/Linux 9.4 machine (whose distribution compiler is GCC 11.4.1). The build went fine; but when I now try to use it to build some library, I get:
/usr/...
0
votes
1
answer
432
views
ValueError when loading sklearn DecisionTreeClassifier pickle in Python 3.10
I'm encountering an issue while transitioning from Python 3.7.3 to Python 3.10 due to the deprecation of the older version. The problem arises when attempting to load a pickled sklearn ...
2
votes
0
answers
545
views
Getting 'Request is not defined' error when running a Next.js project with Node.js
I recently created a Next.js project and attempted to run it using the 'npm run dev' command, but I encountered the following error message:
'Request is not defined' Error in Next.js with Node.js
...
2
votes
2
answers
2k
views
are mysql_* functions of PHP 5.6 compatible when we upgrade database from mysql 5.7.42 to mariadb 10.5?
My client wants to upgrade all his websites script from PHP 5.6 to PHP 8 and mysql 5.7.42 to mariadb 10.5. We want to upgrade one by one website. Now the problem is we can choose different PHP version ...
2
votes
3
answers
1k
views
Readonly in PHP 7.4
I have written a PHP library using the PHP 8.0 readonly keyword and then I realised that it would be good to support earlier versions of PHP such as 7.4.
I could easily remove the readonly keywords ...
4
votes
3
answers
3k
views
Using iOS 15+ API (@AccessibilityFocusState) without dropping support for earlier iOS versions
Apple introduced the @FocusState and @AccessibilityFocusState and their respective APIs for iOS 15. Typically when I have an app that supports multiple versions and I need to use a new API, I would ...
2
votes
1
answer
8k
views
How to check Postgres version compatibility with spring data jpa?
I have been using Postgres version 10.6 in my spring-boot project but now we are going to upgrade the Postgres version from 10.6 to 13.6. how should I check the version compatibility of the Postgres ...
0
votes
1
answer
188
views
Is it possible to install specific version of TFDV without upgrading TF?
I have problem with installing TensorFlow Data Validation (TFDV).
I have already TensorFlow installed (version 2.5.0) and I don't want to upgrade that version.
I used this command:
pip install ...
1
vote
1
answer
329
views
Loading dataframe from 1.1.5 fails on pandas 1.0.1
I have a dataframe saved to a pickle (with a bunch of other stuff, as a dictionary). It was saved when using pandas version 1.1.5.
I'm trying to open it with version 1.0.1 but get the following error
...
3
votes
1
answer
2k
views
HBase client - server’s version compatibility
I wonder how can I know if my HBase client’s jar fit to my HBase server’s version. Is there any place where it is specified which HBase versions are supported with an HBase client jar?
In my case I ...
11
votes
1
answer
11k
views
What are the difference between PHP 8 Match expression vs PHP 7 switch case?
PHP 8 Match expression code
echo match (8.0) {
'8.0' => "Oh no!",
8.0 => "This is what I expected",
};
//> This is what I expected
PHP 7 switch code
switch (8.0) ...
0
votes
1
answer
163
views
"No editor descriptor" error after CUDA plugin installation + Eclipse update
I had installed the CUDA 10 Eclipse plugin via my installed Ecplise's UI. Later on, I updated Eclipse to version 2020.09. Now, when I try to open a .cu file, I get an error saying:
No editor ...
0
votes
1
answer
930
views
Weird version conflict: The type 'CrontabSchedule' exists in both 'NCrontab.Signed, Version=3.2.20120.0' and 'NCrontab, Version=3.2.20120.0'
I am trying do a very simple thing in console app:
using Microsoft.Azure.WebJobs.Extensions.Timers;
using NCrontab;
using System;
namespace ConsoleApp3
{
class Program
{
static void ...
3
votes
1
answer
676
views
How to deal with Swift UI version compatible to support older devices?
I'm developing an apple watch app on Xcode 12 beta WatchOS 7.
I intend to support watchOS 6 too.
Following code has error and I don't know how to deal with it, it belongs to SwiftUI problem:
struct ...
7
votes
0
answers
943
views
Swift private Framework with backward xcode version compatibility
This is my first framework using Swift language and it's private framework. It's worked as expected until new Xcode 9.3 release. After upgrading newer Xcode got an issue like this Module compiled with ...