479 questions
1 vote
0 answers
43 views
Visual studio web project opening as Web site
I was recently put on a project that involves taking over operation for a legacy web site originally built in 2004. When the developer who has been maintaining it shows us the code base on his machine,...
0 votes
3 answers
67 views
ScintillaNET 2.2 – Dropdown Not Showing Until Resizing Window in .NET 4.8
I'm working on an old C# .NET 4.8 project for my company. It uses ScintillaNET 2.2.7895.17875 to create a custom code editor. There's a dropdown arrow (highlighted in red in my attached image) that ...
-1 votes
1 answer
85 views
Adding very basic tailwind classes to old project
I'm working on a legacy project (angular 4, node 10.9). Unfortunately it won't get upgraded soon. Is there a way to install the basic features of tailwind statically? Either copy paste from somewhere ...
0 votes
0 answers
35 views
What can be used to replace mpireconfig?
I am trying to compile some legacy code of my PhD research that I did in the early 2000s, mostly for reasons of nostalgia ;-) The code used mpich. In the version of mpich that I used at the time, ...
1 vote
2 answers
87 views
Why does my python project in the docker not start after a year after the last successful launch, despite the dependencies fixed with pipenv?
I have a python project that I previously ran successfully in docker containers, with all dependencies and package versions fixed using pipenv. However, when I tried to launch the project again in ...
0 votes
1 answer
73 views
Laravel project inside a legacy one
I'm trying to make a laravel project work inside a legacy site while we work on modernizing the entire code base. I've been able to make it work in my dev computer using valet creating a custom valet ...
0 votes
1 answer
79 views
Why JavaFX shows icon image in IDE project Run, but doesn't show the image in project build?
JavaFX shows icon image in IDE project Run, but doesn't show the image in project build, what is strange about it is that when you click on the space there it should have been the button still ...
4 votes
2 answers
371 views
Seeking Guidance on PHPStan Configuration for Legacy Code Migration - "Variable $... might not be defined"
I am currently in the process of migrating a large, super-legacy codebase to PHP 8.x, and I am utilizing PHPStan to identify potential issues. However, I have encountered a challenge related to the ...
0 votes
1 answer
731 views
Delphi Cannot compile used unit in from custom package
First of all, I am not used to Delphi. I am assigned to get a grip of a comprehensive collection of Delphi applications. Working through a ton of compilation challenges I now am stuck at a faulty unit ...
-1 votes
1 answer
111 views
Checking if some fields of an object are null
i'm facing a problem with a wrong designed java Object with 34 parameters. This object can sometime has 3 filled values and the others must be null . In a second case 15 fields are filled, the others ...
0 votes
1 answer
42 views
How to run Julia 0.4 Code with an ASCIIString substitute?
I'm testing out the Remez library in Julia and have hit a couple of snags. I would like to build the original ARM reference code written in Julia 0.4 whilst making as few changes as possible to it. ...
0 votes
1 answer
72 views
How to compare a legacy javascript method implementation with a new one?
I would like to have some easy way to support me while rewriting legacy functions/methods. Say we have a legacy function and a rewritten one: var legacyFunction = function() { return 1; }; var ...
1 vote
1 answer
304 views
The C++ code that using templates doesn't compile in c++ 20, but was ok in c++ 17
I have some legacy code that I want to upgrade to c++20. The code compiles in c++17 without any issues but fails if I switch to C++20. I simplified the code as much as possible, please look at the ...
0 votes
0 answers
252 views
Refactoring old JS. Migrate from legacy JS to webpack. Do I even need bundler or stay vanila JS?
For example, I have files: /js/common.js and /js/jqextend.js. Most of legacy JS files have such architechture: ;var common = (function() { functionName = function () { } })(); ...
1 vote
2 answers
86 views
Create artificial argv array for legacy parent class accepting main-like arguments in the constructor
I am struggling with the legacy code (refactoring scheduled, but I need to use it now) that has the devicedrivers designed to accept (argc, argv) arguments for its constructors. The base class that I ...