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.

Activity for Megan‭

Type On... Excerpt Status Date
Comment Post #286773 Thank you soo much
(more)
almost 2 years ago
Comment Post #286774 Thank you sooooo much for such a detailed answer I reallyy appreciate it
(more)
almost 2 years ago
Comment Post #286771 Thank you sooo much, I had no idea about "basename" I'm writing this down
(more)
almost 2 years ago
Edit Post #286764 Initial revision almost 2 years ago
Question How to use grep to print only specific word from a string
I have a variable that contains a string: ```bash $CCSR = "branches/features/armandmusl" ``` I want to get only the part after the last `/`. In this case it's "armandmusl" but it can be anything. So something like: ```bash def dirname= sh " echo $CCSR | grep ????? " ``` But the mai...
(more)
almost 2 years ago
Edit Post #286548 Initial revision almost 2 years ago
Answer A: How to solve missing JAR files error from Ant
So In case anyone else is stuck on similar Missing JAR error, Here is the solution- download and try to install ant-optional package (I said "try" because its not available for some platforms) If it is not available for yours, then download "ant-optional" package from 'sourceforge' and paste ...
(more)
almost 2 years ago
Edit Post #286516 Initial revision almost 2 years ago
Question How to solve missing JAR files error from Ant
I keep getting this error: ``` Cause: the class org.apache.tools.ant.taskdefs.optional.ssh.SSHExec was not found. This looks like one of Ant's optional components. Action: Check that the appropriate optional JAR exists in -/usr/share/ant/lib -/root/.ant/lib -a directory added on the...
(more)
almost 2 years ago
Edit Post #286500 Post edited:
almost 2 years ago
Edit Post #286500 Initial revision almost 2 years ago
Answer A: How to set update-crypto-policies to LEGACY in Dockerfile
Also to do this automatically do this in your dockerfile- `RUN sed -i 's/SECLEVEL=2/SECLEVEL=0/g' /etc/crypto-policies/back-ends/opensslcnf.config` just replace the file name for the rest of the files
(more)
almost 2 years ago
Edit Post #286499 Initial revision almost 2 years ago
Answer A: How to set update-crypto-policies to LEGACY in Dockerfile
Hi, so I solved this issue, I first ran my container in `-it` mode, went to this path- `etc/crypto-policies/back-ends ` and made following changes to these files- `openssl.config-` replaced "`DEFAULT`" with "`LEGACY`" `opensslcng.config` replaced "`@SECLEVEL=2`" with "`@SECLE...
(more)
almost 2 years ago
Comment Post #286491 Hi, I just posted my entire dockefile. So I have a dockerfile that is using linux8 arm64v8, I'm running this container on a Mac M1 mini server using "tightvnc".
(more)
almost 2 years ago
Edit Post #286491 Post edited:
almost 2 years ago
Edit Post #286491 Initial revision almost 2 years ago
Question How to set update-crypto-policies to LEGACY in Dockerfile
So im trying to do `RUN update-crypto-policies --set LEGACY` in my Dockerfile as I was getting an error `"Failed to load certificate from file 'client-rsa.pem':''ee key too small". ` But when I build my Dockerfile I get an error `"#5 0.540 /bin/sh: update-crypto-policies: command not found"` ...
(more)
almost 2 years ago
Comment Post #286481 @Dirk Herrmann Thank you soooooooooooo much
(more)
almost 2 years ago
Edit Post #286480 Initial revision almost 2 years ago
Question How to open a file and edit its content in groovy script
I have a Makefile in my Jenkins job's workspace, that I want to edit out certain parts from and then save it, before running next part of the script that uses this Makefile. The part that I want to cut out is this: ``` PUMPMARKER:=,cpp ifneq (,$(findstring $(PUMPMARKER), $(DISTCCHOSTS))) PUM...
(more)
almost 2 years ago