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) |
— | over 2 years ago |
Comment | Post #286774 |
Thank you sooooo much for such a detailed answer I reallyy appreciate it (more) |
— | over 2 years ago |
Comment | Post #286771 |
Thank you sooo much, I had no idea about "basename" I'm writing this down (more) |
— | over 2 years ago |
Edit | Post #286764 | Initial revision | — | over 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) |
— | over 2 years ago |
Edit | Post #286548 | Initial revision | — | over 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) |
— | over 2 years ago |
Edit | Post #286516 | Initial revision | — | over 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) |
— | over 2 years ago |
Edit | Post #286500 |
Post edited: |
— | over 2 years ago |
Edit | Post #286500 | Initial revision | — | over 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) |
— | over 2 years ago |
Edit | Post #286499 | Initial revision | — | over 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) |
— | over 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) |
— | over 2 years ago |
Edit | Post #286491 |
Post edited: |
— | over 2 years ago |
Edit | Post #286491 | Initial revision | — | over 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) |
— | over 2 years ago |
Comment | Post #286481 |
@Dirk Herrmann Thank you soooooooooooo much (more) |
— | over 2 years ago |
Edit | Post #286480 | Initial revision | — | over 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) |
— | over 2 years ago |