Skip to main content
Filter by
Sorted by
Tagged with
Tooling
0 votes
0 replies
68 views

I want to build a service marketplace application (similar to Fiverr) where: Sellers can create service listings Buyers can purchase services Payments are handled via Stripe Connect (split payments ...
KutayDev's user avatar
1 vote
0 answers
91 views

I am working on developing an application on an air-gapped system, and would like to be able to take changes up to an internet-connected network for distribution. There is also the possibility that ...
mvsietse's user avatar
1 vote
1 answer
75 views

I'm using JDBI v3 and need to execute a query that returns events with their associated interests. I want to map the result directly to Map<Long, List<Interest>> where the key is the event ...
Daniil Voropaev's user avatar
Advice
0 votes
2 replies
43 views

I have a GitHub repository, test samples, that contains several folders each with a separate test or exploratory Visual Studio 2019 solution file and it's associated source files. Each of these ...
Richard Chambers's user avatar
1 vote
0 answers
86 views

I'm using R2DBC with R2dbcRepository in Spring Boot. I have a table called Dispatches with Jakarta annotations but when I invoke the save() method on my repository the save method returns the same ...
Daniel López's user avatar
1 vote
2 answers
182 views

My R (and R Studio) cannot access either the CRAN repository or any of its mirrors due to the network's proxy configuration. Though it is not possible to install a package directly with install....
Glory2Ukraine's user avatar
0 votes
0 answers
130 views

Lately when I try to push a new branch to my git repository, the push operation never ends (+1-2 hours). Specifically, it gets stuck in the "updating 'refs/heads/branch_name'" step. git -c ...
ivan2910's user avatar
1 vote
0 answers
211 views

Entities class ParentEntity(Base): __tablename__ = "parent_entity" id = Column(Integer, primary_key=True) status = Column(String) config_id = Column(Integer, ForeignKey(&...
Mayank's user avatar
  • 11
1 vote
0 answers
54 views

For a class, we're supposed to create a project on Eclipse then push it to our github repository. However, when I try to do so and log in with my github information, it doesn't work. First, we were ...
Aspen's user avatar
  • 11
1 vote
1 answer
73 views

I'm looking for a math parser. Found: gbenroscience/parserng-android After adding the repository and dependency I suddenly have multiple dependency duplicate conflicts (part listed at end, too many to ...
Nicholas Farmer's user avatar
1 vote
1 answer
163 views

when trying to add this repository in two different environments I am getting different results: repositories{ jcenter() maven { url = uri("https://repo.gradle.org/artifactory/remote-...
rolinger's user avatar
  • 3,216
0 votes
0 answers
56 views

I’ve created a Python package hosted in a private Azure Artifacts repository. After configuring pip.conf, I’m able to install the package using pip without any issues. Now, I’m trying to use the same ...
CodingButStillAlive's user avatar
0 votes
2 answers
155 views

I have a Golang project which has many dependencies to another project from GitHub (let's say github.com/packageA/xxx). So that in different files there are many imports from packageA. Now I need to ...
tulo's user avatar
  • 19
1 vote
1 answer
119 views

I have a repository pyspark in palantir foundry, I would save when I schedule the run of this, all the code used. I used this code in a transform, for now non-incremental, to launch with all the ...
paolo130881's user avatar
-2 votes
1 answer
374 views

A few years ago, I learned Python, and in the latter half of the course, I also learned Git and GitHub. At that time, I pushed all my local folders to GitHub without thinking about organizing them ...
Rohit Singh's user avatar
1 vote
1 answer
62 views

If an exception occurs, will repository.save(entity) be rolled back? will errorRepository.save be commited? @Service public Service { @Transactional public void save(Entity entity) { ...
J.J. Beam's user avatar
  • 3,263
1 vote
1 answer
155 views

When working on Source Depot code, if I want to start fresh with latest version of code, should I do sd sync first? or sd revert first? IIUC, sd sync pulls in latest code, but ignores any files ...
joseville's user avatar
  • 1,033
0 votes
0 answers
79 views

I am building an image and storing it in a MinIO storage mounted on NFS. Each image is stored in a folder created using a unique sha256 hash when it is created. The problem is that the image is ...
Jennie's user avatar
  • 1
0 votes
1 answer
81 views

I've tried to add a jar to my repository to use for the build. However, it doesn't seem to even check in the local-repo, tries to download from nexus and fails. In my pom.xml of my main project: <...
kaprob's user avatar
  • 51
0 votes
1 answer
82 views

I had first used git rebase for editing the particular committer and saved and proceeded with GIT_COMMITTER_DATE="2025-04-10T15:30:00" git commit --amend --no-edit --date "2025-04-10T15:...
Its me's user avatar
  • 1
0 votes
2 answers
99 views

I'm having issues with a Palantir pipeline in a PySpark repository. Specifically, I'm using Pandas and leveraging to_excel with ExcelWriter to write multiple transformed tables (as DataFrames) into ...
paolo130881's user avatar
1 vote
0 answers
96 views

After experiencing some app bundle building errors, I decided to start from scratch. I deleted my android folder, and then ran flutter create to create a new one. My gradle files were originally ...
Lucia Gilbert's user avatar
-1 votes
1 answer
78 views

I know these two amazing websites to do that easily: Download Directory and DownGit. The problem is that they both work recursively, so if I for example give this link: https://github.com/...
allexj's user avatar
  • 169
1 vote
0 answers
94 views

I'm implementing a generic repository for insertion operations using async_trait and diesel_async in Rust, and I'm encountering a recursion error during compilation. The error (E0275) appears to be ...
vornix's user avatar
  • 21
0 votes
1 answer
136 views

Azure DevOps Repos, situation is really simple, we have Branch Master ---+---+ Head Branch Develop ---+---+ Head + ... + changes After some commit on Develop, we create pull request from ...
Domenico Monaco's user avatar
0 votes
1 answer
180 views

I am trying to create RPM package for RHEL which allow me to speed up my daily work, however I have some problem with SPEC file for RPM. As source of my RPM I use shell script which normally I use for ...
majan's user avatar
  • 159
0 votes
1 answer
510 views

I would like to disable automatically installing packages from this particular source: $ cat /etc/apt/sources.list.d/unstable.list deb http://deb.debian.org/debian unstable main contrib non-free non-...
Guenther Brunthaler's user avatar
0 votes
1 answer
161 views

I have an issue with PySpark in Palantir Foundry Repository. I have a table X, which is derived from Y after some processing. Now, I want to replace Y with X, but the repository check detects a cyclic ...
Paolo's user avatar
  • 1
-1 votes
2 answers
83 views

i have a problem with an F.expr condition (CASE WHEN) in foundry repository pyspark. i must create a column with a F.expr() condition. here the condition: this part create a dictionary of many ...
paolo130881's user avatar
5 votes
0 answers
134 views

I develop an R package, hosted on my own package repository. I have several stable versions and I can install them as expected: install.packages("lib") installs the latest version and if I ...
mckbrd's user avatar
  • 1,139
1 vote
1 answer
193 views

I want to download all releases of a specific repository on GitHub, including the source code, at once. I tried using the 'gh release download' command in GitHub CLI for this, but it didn't allow me ...
upyen's user avatar
  • 11
-1 votes
1 answer
94 views

how can i connect my maven to mysql dependency for version 8.0.39 which is not present in the maven repository I saw in the maven repository the version is only upto the 8.0.33 for mysql connector ...
Anand Hiremani's user avatar
0 votes
1 answer
355 views

I have a problem with the structure of my API. My API includes the study domain class, which has an educationLevelId attribute; This attribute belongs to the academicLevel domain class. Study Domain - ...
JUAN PABLO SOLARTE HOYOS's user avatar
0 votes
1 answer
78 views

I am creating a web application to create a private Github repo for the user. I followed the instructions to create a Github App and use it to create a UAT via these instructions. In my Github App, I ...
Casey's user avatar
  • 582
1 vote
1 answer
249 views

I figured out how to cherry-pick between two repositories by setting up a remote, however, my repositories have slightly different file structures because the top-level folder name is not identical, ...
Thunder1's user avatar
-1 votes
1 answer
385 views

i have a problem with a pyspark foundry repository transform. Until now I have been using for what I needed an @transform incremental that allowed me to queue a db each month to a historical "_h&...
Paolo's user avatar
  • 1
2 votes
0 answers
104 views

I am creating a python script to iterate through a tree and upload all the artifacts to a raw Nexus repository. I am not familiar with Nexus, but I would like to include individual file specific ...
Nicholas Carlin's user avatar
0 votes
0 answers
60 views

I have the attached classes. I also have prepared a DB repository. I want to work with EF and Pomelo MySQL nuget package. I want to accomplish, that all CRUD changes on any of the classes are made ...
sam_semillia's user avatar
1 vote
0 answers
622 views

when trying to add the ppa ppa:ondrej/php on Ubuntu 24.04 server via terminal command I get a python error message. I'm trying to add it via the command sudo add-apt-repository ppa:ondrej/php This is ...
Mike Mcke mimu's user avatar
-1 votes
1 answer
98 views

I want to create test branch for testing purpose which is hosted in local repository server, before eventually pushing to master branch in remote repository server. What are the correct steps required?...
maspai's user avatar
  • 435
1 vote
2 answers
184 views

I have two ViewModels that contain the same function. The function calls an interface/repository to retrieve data from a database, and the function then manipulates the data. It is my understanding ...
Andrew Payne's user avatar
0 votes
1 answer
22 views

I am implementing Repository. I had a controller that used 'ViewData' to pass the user ID to my view. Old ArticlesController.cs: public IActionResult AjoutArticle() { ViewData["...
AMP59's user avatar
  • 63
0 votes
1 answer
46 views

I am using laravel 8. I have two different function in repository that use same model. I have a function in model that should be different for each function from repository. how can I say into model ...
Shokouh Dareshiri's user avatar
2 votes
1 answer
165 views

Let's say we have an Android-Kotlin single activity application where each screen is a Fragment implemented using the MVVM pattern. The application has the following layers: View: Fragments ViewModel:...
Mohammad Hasan Mahdavi's user avatar
0 votes
2 answers
188 views

I'm looking for a way to use Github Actions and establish communication between two repositories that are related to each other. I need help since I have never done this. The logic would be like this: ...
Matias Gonzalez's user avatar
0 votes
0 answers
146 views

I’m trying to perform repository mining on Bitbucket and need to filter repositories by a specific topic or keyword. I know that the atlassian-python-api exists, but I haven’t been able to find a ...
helium007's user avatar
1 vote
0 answers
25 views

I'm using a Repository which updates values in db only if the value is not None. db_entry = get_entry(...) for name, value in entry_to_update.dict().items(): setattr(db_entry, name, value) if ...
Palmos's user avatar
  • 21
0 votes
1 answer
57 views

I have a project in which I have a 1->N relationship: a person needs to have at least a pet. Because of this rule, we can't have a person without any pets. There are a PetRepository and a ...
salim.elkh's user avatar
1 vote
2 answers
2k views

I have a repository for an R project in my organisation's Azure Devops. I wanted to include an image in the README file, which I created with R markdown using github_document as the output. I referred ...
Amy M's user avatar
  • 1,103
2 votes
1 answer
736 views

I am trying to publish multiple GitHub Actions from a single repository to the GitHub Marketplace and use them in other repositories. My repo structure looks like this: . ├── transform-openapi-from-...
Kyle Calica-St's user avatar

1
2 3 4 5
183