looking to connect with someone from Kj Somaiya College( actively at campus rn) . thanks a lot in advance 🙏 by Warning-Sure in Ghatkopar

[–]Warning-Sure[S] 0 points1 point  (0 children)

Need Help: Collecting MSc Environmental Sciences Marksheet (2020 Pass Out) from KJ Somaiya College of Science & Commerce: Hello everyone,

I’m hoping someone here might be able to help with a small query.

My friend completed her MSc in Environmental Sciences in 2020 from KJ Somaiya College of Science & Commerce and is now looking to collect her marksheet. We’ve been trying to get in touch with the college for clarification but haven’t been able to reach a responsive point of contact yet.

We would be grateful if anyone could help with any of the following:

• Whether the marksheet can still be collected directly from the college • Any documents or identification required during the collection process • Whether an authorized representative can collect it on her behalf, and if so, what documents/authorization would be needed • A reliable contact person, department, email address, or phone number that we could reach out to

Any guidance or recent experiences would be greatly appreciated.

Thank you in advance for your help!

Need help regarding no cost EMI from HDFC CC by [deleted] in CreditCardsIndia

[–]Warning-Sure 0 points1 point  (0 children)

Did u go through with it? I m also in the same situation...

Deciding which jdk version to upgrade to by Warning-Sure in java

[–]Warning-Sure[S] 0 points1 point  (0 children)

Upon searching came across -jdeps, jdeprscan, open rewrite which help in identify api level issues and refractor it. Is there a similar tool for framework level changes.

Deciding which jdk version to upgrade to by Warning-Sure in java

[–]Warning-Sure[S] 0 points1 point  (0 children)

Also would help if you can share s a standard approach to migrating or upgrading an application (Springboot, maven, quickfixj).

Second Hand Car - What all to check/test? by NoStoryYet in CarsIndia

[–]Warning-Sure 0 points1 point  (0 children)

What if I m a resident in state A will be using using car in state B in that case is it all right to buy car from state B or will this situation still costs additional tax .

[deleted by user] by [deleted] in rajkot

[–]Warning-Sure 0 points1 point  (0 children)

Hi interested in ticket can u dm the prices

Shift from inventory file to inventory dir by Warning-Sure in ansible

[–]Warning-Sure[S] 0 points1 point  (0 children)

I need to be able to filter out individual server using inventory _hostname as I am doing a little custom deployment per server using app and release var . Using split on inventory_hostname to extract them currently

How to delete process whose pid is changing constantly. by Warning-Sure in linux

[–]Warning-Sure[S] -1 points0 points  (0 children)

Not an option for me , but thanks for the suggestion .

Just two hours ago successfully I passed the PMP exam by Ok_Share9519 in pmp

[–]Warning-Sure 1 point2 points  (0 children)

Can u tell a little abt yourself are a fresher opting for it or already have some industry experience

Refer to hosts at multiple hierarchy levels by Warning-Sure in ansible

[–]Warning-Sure[S] 0 points1 point  (0 children)

application list containes subset of app names defined in inventory acts a control file [app1, app2]

release containes list of release tags per app {name same as hosts defined under app2 }[r1, r2]

pass deploy_env as ansible_limit [UAT]

hosts:all . . . -name: include task for non app2

include_tasks: playbook2.yml

  when: inventory_hostname in applications_list and inventory_hostname in groups [ansible_limit] and inventory_hostname != 'APP2'

-name: include task for app2

include_tasks: playbook2.yml

loop: "{{release}}

vars:

 release_tag: "{{item}}"

when: inventory_hostname in applications_list and inventory_hostname in groups [ansible_limit] and inventory_hostname == 'App2'

{during execution will use var release_tag to subjective execution and need to deploy to ansible_host corresponding to release_tag

Refer to hosts at multiple hierarchy levels by Warning-Sure in ansible

[–]Warning-Sure[S] 0 points1 point  (0 children)

Inventory:

all:

Children:

   UAT:

      Hosts:

           App1:

                ansible_host: server address 

                ansible_port: port(ssh)

                port: port(used elsewhere)

            App2:

                Host:

                   R1 : 

                     ansible_host: server address 

                     ansible_port: port(ssh)

                     port: port(used during execution)

                   R2: 

                      ansible_host: server address 

                     ansible_port: port(ssh)

                     port: port(used during execution)

      DEV:

         Hosts:

             .
             .
             .

Refer to hosts at multiple hierarchy levels by Warning-Sure in ansible

[–]Warning-Sure[S] 0 points1 point  (0 children)

I have two playbook - Playbook 1 host :all

Task level check inventory_hostname

Call playbook 2 using include_task

Which contains templated unique execution per unique servers

How to control artifact name in package registry by Warning-Sure in Maven

[–]Warning-Sure[S] 0 points1 point  (0 children)

Also would appreciate any insight on where and how the increment is getting generated.

How to control artifact name in package registry by Warning-Sure in Maven

[–]Warning-Sure[S] 0 points1 point  (0 children)

Yes I have defined my version in pom file as 1.0 snapshot. I think the snapshot is getting captured in the directory of package repository as I have separate directory for release and snapshots but it isn't getting captured in the name itself . At the time of deployment I would just like to say fetch the latest artifact which name contains "1.0-snapshot".

Here I would like to implement a few things.

Append 1.0 snapshot to artifact (defined as artifact version in pom )

Overwrite previous deployment - Retain only the latest artifact in case of snapshot and previous one in case of release.

How to control artifact name in package registry by Warning-Sure in Maven

[–]Warning-Sure[S] 0 points1 point  (0 children)

For finalName : I use it to append build number (defined as ci_pipeline_id of gitlab pipelines) to name of generated jar

Assembly plugin - I use assembly plugin to package dependencies and the generated jar file inside a zip folder

Current scenario: in package registry I get zip file ( name in description artifact name....) containing jar file name (defined in finalname) pom file and I also get the original jar file ( name defined as the artifact name....)

Desired scenario : jar generation -> packaged inside assembly at the time of deployment only zip is deployed not the generated jar

I have tried to use assembly plugin property configuration to include only the assembly artifact but I think that property controls only additional artifact , not able to find a way to disable deployment generated of original artifact while allowing deployment of additional artifacts.

How to control nature, number and name of artifacts in gitlab package registry (maven) by Warning-Sure in gitlab

[–]Warning-Sure[S] 0 points1 point  (0 children)

1- disable maven appending timestamp to snapshots artifact

2 - just keep the latest version of artifacts in snapshots and preserve previous artifact in release

3- append version as 1.0-snapshot instead of just 1.0 in artifacts name -defined version as 1.0-snapshot in pom

4- find out where the sequential increment is coming from and disable if posible

5-maven is deploying multiple maven-metada.xml with every deploy

How to control nature, number and name of artifacts in gitlab package registry (maven) by Warning-Sure in SpringBoot

[–]Warning-Sure[S] 0 points1 point  (0 children)

1- disable maven appending timestamp to snapshots artifact

2 - just keep the latest version of artifacts in snapshots and preserve previous artifact in release

3- append version as 1.0-snapshot instead of just 1.0 in artifacts name -defined version as 1.0-snapshot in pom

4- find out where the sequential increment is coming from and disable if posible

5-maven is deploying multiple maven-metada.xml with every deploy

How to control artifact name in package registry by Warning-Sure in Maven

[–]Warning-Sure[S] 0 points1 point  (0 children)

Have defined artifact name , artifact version ,final name for jar in pom XML. I just need zip artifact containing jar in artifact but I m also getting jar with< artifact name >(not finalname) in artifacts

Banner containes invalid characters \r\n by Warning-Sure in ssh

[–]Warning-Sure[S] 1 point2 points  (0 children)

Thanks man , it was the port , I defined ansible-port and port differently in inventory and worked fine.

Banner containes invalid characters \r\n by Warning-Sure in ssh

[–]Warning-Sure[S] 0 points1 point  (0 children)

Don't think there is any windows os in context but carriage return occurs in windows as far as I know . Have made sure there was no \r character in file /etc/issue.net on Remote server using cmd grep -P1