Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »

Welcome to Software Development on Codidact!

Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.

Search

Advanced Search Options

To further refine your search, you can use additional qualifiers such as score:>0.5. For example, the search score:>=0.5 created:<1y grammar would return only posts mentioning "grammar" that have a score >= 0.5 and were created less than a year ago.

Further help with searching is available in the help center.

Quick hints: tag:tagname, user:xxx, "exact phrase", post_type:xxx, created:<N{d,w,mo,y}, score:>=0.5

Filters
 
50%
+0 −0
Q&A Call custom Lua function in Vimscript function

To fix this, create a table in the Lua file, add the function, and return the table: local M = {} function M.say_hello() return "Hello from lua/functions.lua!" end return M

posted 3mo ago by Matthias Braun‭

Answer
50%
+0 −0
Q&A How can I automatically delete any deployment of a fine-tuned OpenAI model on Azure that hasn't been used in the past x hours? [duplicate]

How can I automatically delete any deployment of a fine-tuned OpenAI model on Azure that hasn't been used in the past x hours? I am aware of 15-day timeout. However, this is too long for me, as th...

0 answers  ·  posted 1mo ago by Franck Dernoncourt‭  ·  closed as duplicate 1mo ago by ArtOfCode‭

Question azure azure-cognitive-services
50%
+0 −0
Q&A How can I automatically delete any deployment of a fine-tuned OpenAI model on Azure that hasn't been used in the past x hours?

How can I automatically delete any deployment of a fine-tuned OpenAI model on Azure that hasn't been used in the past x hours? I am aware of 15-day timeout. However, this is too long for me, as th...

0 answers  ·  posted 1mo ago by Franck Dernoncourt‭

Question azure azure-cognitive-services
50%
+0 −0
Q&A Proguard induced : No enum constants for class while deserializing using jackson

If you have enum classes in the code that is being obfuscated, you need to tell proguard to skip obfuscating the values and valueOf method in your enum class, since it uses reflection internally to...

posted 3mo ago by Abbas Gadhia‭

Answer
50%
+0 −0
Q&A How can I deploy a fine-tuned GPT model in Azure via Python without using a token (e.g., using an endpoint key instead)?

I follow Azure's tutorial on fine-tuning GPT. I follow the deployment phase. Code: # Deploy fine-tuned model import json import requests token = '[redacted]' subscription = '[redacted]' ...

0 answers  ·  posted 25d ago by Franck Dernoncourt‭  ·  edited 24d ago by Lundin‭

Question deployment azure-cognitive-services llm fine-tuning
50%
+0 −0
Q&A Proguard induced : No enum constants for class while deserializing using jackson

I'm getting the following exception with deserializing a json file using jackson. Any tips on how to fix it? com.fasterxml.jackson.databind.JsonMappingException: No enum constants for class com.dp...

1 answer  ·  posted 3mo ago by Abbas Gadhia‭  ·  edited 3mo ago by Abbas Gadhia‭

Question jackson proguard
50%
+0 −0
Q&A Cannot read properties of undefined (reading 'map') error in MERN stack project

In my project, I try to fetch data from the backend to display in the frontend using fetch API. Each time I do this I get Cannot read properties of undefined (reading 'map') error. When I check the...

0 answers  ·  posted 6mo ago by emmaluga‭  ·  edited 6mo ago by Alexei‭

Question reactjs react-hooks
50%
+0 −0
Q&A What can cause an HTML form submission result in a new pop-up window?

These are the methods I know of: Set the form's target attribute to _blank. Add submit event listeners (e.g., this SO thread). In the proprietary web app that I have to work with, every form...

0 answers  ·  posted 6mo ago by toraritte‭  ·  edited 6mo ago by toraritte‭

Question javascript html
50%
+0 −0
Q&A What is the difference between operator precedence and order of evaluation?

Shouldn't operator precedence guarantee that b() is executed before a()? No. Operator precedence says what to do with values in an expression once you have its input values. Order of evaluation ...

posted 6mo ago by Olin Lathrop‭

Answer
50%
+0 −0
Q&A How can I interact with the target widget from a drop event

You can get a &ListBox from a &Widget with downcast_ref: let list_box = target.widget().unwrap().downcast_ref::<ListBox>().unwrap();

posted 7mo ago by jmb‭

Answer
50%
+0 −0
Q&A I can't install the Spacy library using the terminal in VSCode on Windows 10

Ok the solution is installed a older version, on my case python 3.12.6, in the virtual environment that you have created and when you use in the terminal pip install spacy it donwloads correctly. T...

posted 7mo ago by Richard‭

Answer
50%
+0 −0
Q&A What is the difference between operator precedence and order of evaluation?

When parsing a program, a compiler creates a tree of nodes. The operator precedence plays a role in how those nodes get organized. Once the tree is complete and considered valid, it walks the tree ...

posted 5mo ago by Alexis Wilke‭  ·  edited 5mo ago by Alexis Wilke‭

Answer
50%
+1 −1
Q&A How to Suppress System Sound for Keyboard Shortcuts in C++ Desktop Application [closed]

In my desktop application developed in C++, I am encountering an issue where pressing the Ctrl + X, Ctrl + Shift + X, and Ctrl + D shortcut keys triggers a system sound. I would like to suppress o...

0 answers  ·  posted 6mo ago by Junior_Dev‭  ·  edited 6mo ago by Alexei‭

Question c++ windows winapi
50%
+0 −0
Q&A DllExportAppDomainIsolatedTask task failed, requested value Version48 not found

I have a .NET Framework project in Visual Studio. While trying to build it, I get the following error message: Error The "DllExportAppDomainIsolatedTask" task failed unexpectedly. System.Argume...

1 answer  ·  posted 21d ago by FractionalRadix‭  ·  edited 21d ago by FractionalRadix‭

Question .net
50%
+2 −2
Q&A Current solution for Project Euler 250+ (HackerRank) is giving incorrect answers, why is this? [closed]

Note: I originally posted this on Stack Overflow on Stack Exchange here however I am posting the same question here as I might be able to get a answer more quickly here. Project Euler+ #250 on H...

0 answers  ·  posted 3d ago by CrSb0001‭  ·  closed 2d ago by Karl Knechtel‭

Question python python-3 math number-theory
50%
+0 −0
Q&A How can I save a plot in a file in PyCharm without changing the code?

How can I save a plot in a file in PyCharm without changing the code? I used plt.show(), so that the plot shows like this: But how can I save a plot in a file without changing the code? I don'...

0 answers  ·  posted 6d ago by Franck Dernoncourt‭  ·  edited 6d ago by Franck Dernoncourt‭

Question pycharm
50%
+0 −0
Q&A DllExportAppDomainIsolatedTask task failed, requested value Version48 not found

You can fix this by installing Microsoft Build Tools 2015: https://www.microsoft.com/en-us/download/details.aspx?id=48159 I found this solution on that other Q&A site. According to the commen...

posted 21d ago by FractionalRadix‭

Answer
50%
+0 −0
Q&A Why would the tokenizer for encoder-decoder model for machine translation use bos_token_id == eos_token_id? How does it know when a sequence ends?

Not sure if this is really a coding question (maybe the ML or AI Tech proposals might be better suited). Not having distinct begin and end tokens is not that extraordinary. E.g. the GPT-2 tokeniz...

posted 17d ago by mr Tsjolder‭

Answer
50%
+0 −0
Q&A Can't run a Python file in PyCharm: why?

I closed the window containing the PyCharm project and reopened the project: it worked. I have no idea why it didn't work before reopening the PyCharm project. Very strange: I don't see what could ...

posted 17d ago by Franck Dernoncourt‭

Answer
50%
+1 −1
Q&A How to turn lines of text in PyQt6 QTextEdit into clickable links that call a function?

A while back, I made this post about reading specified sections in a text file formatted a particular way. I've since updated the format for that file to include links at the start of arbitrary li...

1 answer  ·  posted 18d ago by pycoder‭  ·  last activity 11d ago by pycoder‭

Question python python-3 pyqt6 pyqt
50%
+0 −0
Q&A Why does Pip display "error: externally-managed-environment", and what can I do about it?

tl;dr: There's a few ways to bypass this: For all users on the machine: Get rid of /usr/lib/python3.foo/EXTERNALLY-MANAGED. To prevent your package manager from adding it back, replace it with a...

posted 11mo ago by matthewsnyder‭  ·  edited 10mo ago by matthewsnyder‭

Answer
50%
+0 −0
Q&A Why can't I run freshly-installed Python from the command line on Windows?

I tried installing Python on an old computer running Windows 8[1]. I know for a fact that there was never any previous installation of Python on the machine. The installation appeared to be success...

1 answer  ·  posted 11mo ago by Karl Knechtel‭  ·  last activity 11mo ago by Karl Knechtel‭

Question python windows installation command-line-interface
50%
+0 −0
Q&A ArgumentError: could not find a temporary directory

Hello, I am trying to build a docker image for contributing to the devdocs repository, however I am failing to get past the thor docs:download --all command. It fails with the below error: . is w...

1 answer  ·  posted 11mo ago by zmzaps‭  ·  last activity 11mo ago by zmzaps‭

Question ruby docker dev-container
50%
+0 −0
Q&A How to get conditional running cumulative sum based on current row and previous rows?

Use a collect_list collecting the values from all preceding rows up to the current row into a struct Then filter on that struct based on its value and the current row's threshold Use aggregate ...

posted 10mo ago by congusbongus‭

Answer
50%
+0 −0
Q&A How do you fix 'Failed to load the dll hostfxr.dll' when starting an x86 .NET process in a test run via dotnet test?

How do you fix the error 'Failed to load the DLL hostfxr.dll' when running a .NET test executed via dotnet test and starting an x86 .NET application in the test? I'm using .NET 8. Failed to load ...

1 answer  ·  posted 1y ago by riQQ‭  ·  last activity 1y ago by riQQ‭

Question .net