Skip to main content
Filter by
Sorted by
Tagged with
Advice
0 votes
6 replies
190 views

I have wanted to make a GUI library so that I can use it in my own video game that I am making and maybe in the future have it be used for other things like software. I wanted to ask where to start ...
ShizamDaGeek's user avatar
0 votes
0 answers
97 views

I am trying to build and upload a macOS distribution package to the Apple app store, but I am having difficulty validating the package using xcrun altool --validate-app. Note: I do not use Xcode. I ...
A Abraham's user avatar
1 vote
1 answer
150 views

I'm building a Flutter app and using --dart-define to pass environment-specific variables like ENV, x-api-key, or base URLs. This works perfectly for Android using: flutter build apk --dart-define=ENV=...
Ankit Baria's user avatar
0 votes
0 answers
28 views

I'm working on a feature where an algorithm process available data collected from user mobile phone. Any help on this is greatly appreciated. expecting integrating, configuring, collecting of data. ...
vasu's user avatar
  • 1
1 vote
0 answers
54 views

`I want to activate Redis expiry events with Redis cluster having 3 nodes using spring-boot apllication Added all configurations CONFIG SET notify-keyspace-events Ex to verify CONFIG GET notify-...
Lucifer's user avatar
  • 11
0 votes
0 answers
11 views

I am (basically successfully) using cx_freeze to package a Python application that requires Pandas. Pandas is the only package I need that cannot go into cx_freeze's library zip. Specifically, I need ...
avigt's user avatar
  • 600
0 votes
1 answer
63 views

Context I'm working on a bunch of python scripts that spin up a FastAPI server for my startup, as a requirement for our services. This server initialises a Supabase SDK client to do some very specific ...
Maoaii's user avatar
  • 39
0 votes
1 answer
84 views

I'm new to MailKit and I see that it has a number of dependencies named "System.xxx" that are in the NuGet package. (vesrion 4.8.0 - I'm using .net 4.7) Should I include these in the ...
Phil's user avatar
  • 5
0 votes
1 answer
255 views

I am setting up a Python package with setuptools, together with pyproject.toml. The Python code is dependent on a C library that needs to be compiled and installed alongside the code (it's a make ...
Roberto's user avatar
  • 1,133
1 vote
0 answers
225 views

As many people know, AppCenter will be retired in the near future. I am currently using it to distribute an Android app built with Xamarin directly to the end users (along with crashlytics and events)....
Grag Boal's user avatar
0 votes
1 answer
140 views

I am creating a GUI desktop app in Python (3.10) using customtkinter. I would like to be able to distribute the app to Windows and macOS. The tricky part is that I also want the ability to roll out ...
Cole Lewis's user avatar
0 votes
1 answer
93 views

This is a Python code I generated using Chat GPT. Basically, I want the program to run all of the software installation automatically. For example, user doesn't need to click multiple next buttons ...
Mr Chad's user avatar
1 vote
2 answers
240 views

I have a foo.proto file that gets compiled to python with protoc and included in a python package that is then built in to a wheel for distribution. Is there a way to include a copyright notice ...
charlestoncrabb's user avatar
3 votes
1 answer
1k views

I found that some software distributions, e.g. Tencent QQ 9.9.9_240401 and Firefox 112.0 (many applications actually), include api-ms-win-core-*.dll and api-ms-win-crt-*.dll, but some do not. api-ms-...
chansey's user avatar
  • 1,439
0 votes
1 answer
42 views

We have following windows services that connects to a single database (name it mainDb) but has different features: Fetches data from Attendance Machines and stores in mainDb Fetches data (ie ...
Jahanzaib Muhammad's user avatar
0 votes
1 answer
57 views

Let's say I found publicly available documentation (not source code) for a proprietary operating system (for example, VxWorks). And let’s say I wrote my own operating system kernel, which would ...
VadimP22's user avatar
  • 365
0 votes
1 answer
176 views

We have been working on a project written in C++ for about half a year, and recently tried to run the finished product on a set of fresh systems. Some of the systems complained about missing the ...
Herman's user avatar
  • 39
0 votes
1 answer
369 views

I want to make redis cluster, I have 2 server and each server have 3 redis (for 3 masters & 3 slaves). Let's say : server 1 : IP 10.27.62.95 (redis port : 7000, 7002, 7003) server 2 : IP 10.27.62....
Robin Revialus's user avatar
1 vote
3 answers
72 views

Is there an API or method for querying the first and last data in objectbox-go. Similar to the First() and Last() methods in Gorm. I need to use this method to query one by one and then send the data ...
Huihui's user avatar
  • 21
1 vote
1 answer
77 views

I'm using ObjectBox Go to replace SQLite for my app, which is supposed to run on standard PC (Linux/Windows/macOS), mobile phone (Android and iOS devices) and Web Browser (via wasm). We need to ...
Albert Zhong's user avatar
0 votes
1 answer
331 views

I like to submit my app to the Microsoft App Store, but it fails validation because of this error: The product failed to install through the Store. Silent installation requires elevated permission, ...
Volker's user avatar
  • 507
2 votes
0 answers
409 views

I've built a couple of neat little Python projects that I want people to be able to use for free on Mac computers. Using the Pyinstaller library, I was able to turn my projects into apps that I can ...
jeffholland's user avatar
0 votes
1 answer
56 views

How do I test how the software behaves if several users enter the web site? ex: for example 100 users
Daniela Rotariu's user avatar
0 votes
0 answers
84 views

What I'll do in general : Program a software for a company Distributing the C++ and other source code to the company, they may arrange it as they want, reuse and edit it without warning me The source ...
Amir Hammoutene's user avatar
0 votes
1 answer
57 views

I would like to ship some new features just for a specific group of users to better test it in production and then release it progressively to everyone, should i put IFs in my code and assign specific ...
Mazza's user avatar
  • 27
0 votes
1 answer
94 views

I see the term "pure upstream" used a lot describing different software packages/distributions. I get that "upstream" in the context of open source refers to a code base from ...
Duncan's user avatar
  • 562
2 votes
4 answers
2k views

I've been working in this app for weeks and now I'm trying to packit to distribute. When I'm in dev it works just fine, but in production I only get a blank page. I've been lookig for solution in ...
dandomin's user avatar
1 vote
1 answer
5k views

I think procedural, object oriented and event driven paradigms are the main paradigm in the software development .And how do I build a relationship among them. what are the relationships among ...
Yasi's user avatar
  • 11
1 vote
1 answer
940 views

I have developed a Shiny app for a user at a different location. This app may eventually be hosted in the cloud but for now a single user will run the application locally on their computer. What is ...
Judy 's user avatar
  • 256
0 votes
1 answer
131 views

Background: I am currently writing a .dll library using Visual C (NOT C++) which intends to provide performance-optimized functionalities for other applications. All functions in this library fulfill ...
unknown6656's user avatar
  • 2,993
1 vote
0 answers
54 views

We are running on Windows 10. Instructions said to mount a working directory to a docker container. We have everything and still can't get Tackle Test to run tests on applications. What are we missing?...
Anthony Walker's user avatar
1 vote
1 answer
297 views

I have a Java Gradle application that logs correctly during development, but does not work correctly when it is distributed. When I run the program in my IDE (IntelliJ if that is relevant) the logging ...
Logan Kitchen's user avatar
1 vote
2 answers
111 views

I have created a python script that uses a database, which I have to pass in the file when compiling the .exe to a file. I would like to know if it is possible that the user to whom I give the file ...
Magethepunisher's user avatar
1 vote
1 answer
93 views

I am trying to create an executable of my script, but running the .exe does not find the image. I have tried both onefile and multiples and pasting the images inside but it does not work. def ...
Magethepunisher's user avatar
0 votes
2 answers
146 views

I am trying to create an executable of my script, but running the .exe does not find the image. I have tried both onefile and multiples and pasting the images inside but it does not work. These would ...
Magethepunisher's user avatar
0 votes
1 answer
567 views

I've mostly only created application for personal use and the rare occasions where I have distributed my code have been in the form of uploading my source code on GitHub. I'm currently finishing up a ...
Mckay Holmes's user avatar
-5 votes
1 answer
89 views

New user here. I have just recently started learning Java programming. Can someone explain in their own words what JDK and IntelliJ have to do for Java programming? I did google, but the answers were ...
TechLearner's user avatar
0 votes
0 answers
174 views

I have a situation where I want to distribute An android app from two different accounts in two separate countries. Google provides a custom listing option, but I did not try that because I have only ...
VikramChholak's user avatar
-1 votes
1 answer
58 views

I started our company's Apple dev account in 2018, setting myself as admin Lately (2022), I could not distribute to the team because my role had been changed to "manager". I changed back to &...
Doug Null's user avatar
  • 8,387
1 vote
1 answer
2k views

Hey guys I need some help, is there a way to create a .bat script that can install multiple applications with out having to specify the user. For example I have this: "C:\Users\User\Downloads\...
WarDaddy _Justin's user avatar
2 votes
1 answer
3k views

I have a Python application built with PyQt5. My current OS is Windows 11 and I'm able to distribute my software to Windows users using PyInstaller and Inno Setup (to create the installer). However, I ...
Leo Eiji's user avatar
0 votes
0 answers
323 views

When I run my C++ application I get an error message says CONCRT140D.dll was not found. I thought it is a more frequent problem but I was wrong. I found only some useful links. I have some questions: ...
MacMac's user avatar
  • 1
1 vote
1 answer
1k views

I'm building a Windows executable with VS 2019. When I run it on my machine, it works, but I'm not 100% sure it will work for end users who don't have vc_redist.x64.exe version 2019. (Especially users ...
Basj's user avatar
  • 47.5k
0 votes
1 answer
613 views

I'm distributing beta versions of an iOS app to our members. I'm wondering if there is time limit for the apps to be alive. An app installed via firebase beta can be used forever or it will somehow ...
Bigair's user avatar
  • 1,572
0 votes
0 answers
112 views

The software I am working on uses high-dpi scaling and I have noticed that some users specifically on higher res screens are having issues seeing font sizes within the software. This seemed to be ...
Anthony Berrios's user avatar
2 votes
3 answers
595 views

I am new to macOS app development. I have knowledge on Windows App development. I have a server application which can be installed offline. For communicating there is a client library which is a ....
Rintu's user avatar
  • 21
1 vote
0 answers
112 views

I purchased a OV code signing certificate in aug 2020. Since then the software is still marked as malicious in Windows Defender. Do you know how long it usually takes to gather the reputation and get ...
DbSchema's user avatar
  • 383
-1 votes
1 answer
41 views

The software I use automatically edits my .bushrc by adding some lines export and source. By the way, the software edits bashrc using ansible's like this. I think this is not a good design choice, ...
HiroIshida's user avatar
  • 1,603
1 vote
3 answers
936 views

I'm using Redis sorted set to keep some values in order. for example: score | data 0 | a 1 | b 2 | c 3 | d In some situations of my app, I have to remove some of the entries. for ...
Sina Qahremani's user avatar
1 vote
0 answers
307 views

I am quite new to electron and the last days I had some trouble manually distributing my app using electrons prebuild binaries and I can’t find any helpful information on the internet. I have also ...
Yellow_cylinder's user avatar

1
2 3 4 5
14