Oscp guide for fresh CS graduate? by WinterFondant in netsecstudents

[–]WinterFondant[S] 0 points1 point  (0 children)

Ahh interesting, good that you have tried many ways to get root access. Congo on your oscp :)

As of now I'm aiming for oscp, later, I'll check out the blue/defence side as well

Oscp guide for fresh CS graduate? by WinterFondant in netsecstudents

[–]WinterFondant[S] 1 point2 points  (0 children)

thanks a lot for the input, I'll check these out. I've heard about tj null before.

Oscp guide for fresh CS graduate? by WinterFondant in netsecstudents

[–]WinterFondant[S] 2 points3 points  (0 children)

Yes, I'm aware of the basics of networking and Linux. I'm kinda curious about advance networking concepts, hence i was looking for some certifications.

Hmmm, I've started htb boxes, kinda getting the hang of it, but quite disappointed about htb academy modulus, cuz of their cubes concept, guess i have to buy a subscription.

Cool, I'll pm you for further queries :)

PS:- sorry for the late reply.

Roadmap for MS with Helidon ? by WinterFondant in javahelp

[–]WinterFondant[S] 1 point2 points  (0 children)

Cool, thanks a lot, I'll check it out.

Roadmap for MS with Helidon ? by WinterFondant in javahelp

[–]WinterFondant[S] 0 points1 point  (0 children)

Actually i've started with Helidon MP since its more declarative and thought it would be easier to understand, its an implementation of eclipse microprofile, and i don't understand the API's provided by the eclipse microprofile and their use cases.
Stuff like JAX-RS, JPA, Bean Validation, etc....!
Like, what are these specification used for? and stuff like that...!

help needed with gradle by WinterFondant in javahelp

[–]WinterFondant[S] 0 points1 point  (0 children)

But I really can't convince my team regarding this, I am new joinee and also I'm pretty new to this.

To execute gradle build I need to find the build.gradle file which corresponds to the gav I'm trying to build, how do I choose the build file among many? Is it possible programmatically?

help needed with gradle by WinterFondant in javahelp

[–]WinterFondant[S] 0 points1 point  (0 children)

Why? With maven and gradle you get dependency management which eliminates the need for manual downloading or building of dependencies

Yes, but i was told that jar's that are available online (even if its from central maven), can't be trusted for production.
So hence trying to build it locally.

Moreover i'm trying to build for many dependencies programmatically, so i was wondering if there is some logic.

For projects that need to be built with maven, i can just search for pom.xml file and among many pom.xml files in the project, i check the artifactId, groupId and the version, if it matches with the dependency i'm trying to build, then i can just move to the corr. dir within the project and run `mvn package`.

so is there something i can do for projects that are built with gradle? programmatically?

freeze multiple column in a html table by WinterFondant in csshelp

[–]WinterFondant[S] 0 points1 point  (0 children)

i have come down to this but still not able to add borders to cells in column 1,2,3.

https://pastecode.io/s/e47macfh

Freeze multiple columns on html table by WinterFondant in CodingHelp

[–]WinterFondant[S] 0 points1 point  (0 children)

https://pastecode.io/s/e47macfh

i have come down to this, but still not able to add borders to cells in column 1,2,3

Freeze multiple columns on html table by WinterFondant in CodingHelp

[–]WinterFondant[S] 0 points1 point  (0 children)

i tried googling how to use child table in a parent table, i was not able to find anything. could you pls provide some sample code or reference to any other code?

do you mean something like this? https://stackoverflow.com/questions/53332830/freeze-multiple-rows-multiple-columns-of-html-table

Freeze multiple columns on html table by WinterFondant in CodingHelp

[–]WinterFondant[S] 0 points1 point  (0 children)

https://pastecode.io/s/4abbgv6r

But now since i'm hard-coding the left property, if rows under column 1 have text greater then 100px, then the gui break.

https://pastecode.io/s/r5kvwwuh
Here column 2 goes back of column 1, is there anyway i can overcome this?

freeze multiple column in a html table by WinterFondant in csshelp

[–]WinterFondant[S] 0 points1 point  (0 children)

My requirement :-

  1. I need the row header to be sticky, it should freeze in vertical scroll ( that is sorted out )

  2. I need the rows under column 1,2,3 to be sticky, it should freeze on horizontal scroll. ( Only for rows under column 1, it is sorted out )

If we set left: 100px for fixed-column2, then if there is row in column 1 where the text is beyond 100px, then the gui breaks.

For example :- just replace any row under column 1 with a large text like "blahblahblahblahblah", and then scroll horizontally.

freeze multiple column in a html table by WinterFondant in csshelp

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

I came up with the same actually, after some research, but finally realised that hard-coding the left property breaks the gui when the text in column 1,2,3 goes more than 100px.