Skip to content
View overtomanu's full-sized avatar
  • Smartshift

Block or report overtomanu

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. java-util-code java-util-code Public

    Java

  2. sample-spring-data-jpa-hibernate-java-conf sample-spring-data-jpa-hibernate-java-conf Public

    sample spring data jpa project with hibernate

    Java

  3. Git Commands & cheatsheet.md Git Commands & cheatsheet.md
    1
    Converted from google sheet:
    2
    https://docs.google.com/spreadsheets/d/e/2PACX-1vScHSvMHYvFfRkHipFxhoiLaarEm2XYF2QSdSSbvNq-wszctrdqn2h00DGyW29fZOaOqKB95Z16YHVV/pubhtml?gid=0&single=true
    3
    
                  
    4
    | Terminology                                                                  | Description                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
    5
    |------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
  4. Maven Commands & Cheatsheet.md Maven Commands & Cheatsheet.md
    1
    | Info type                                                      | Description                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
    2
    |----------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
    3
    | Maven standard directory layout                                | └───maven-project     ├───pom.xml     ├───README.txt     ├───NOTICE.txt     ├───LICENSE.txt     └───src         ├───main         │   ├───java         │   ├───resources         │   ├───filters         │   └───webapp         ├───test         │   ├───java         │   ├───resources         │   └───filters         ├───it         ├───site         └───assembly                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
    4
    | Maven standard directory explanation                           |     maven-project/pom.xml – defines dependencies and modules needed during the build lifecycle of a Maven project     maven-project/LICENSE.txt – licensing information of the project     maven-project/README.txt – summary of the project     maven-project/NOTICE.txt – information about third-party libraries used in the project     maven-project/src/main – contains source code and resources that become part of the artifact     maven-project/src/test – holds all the test code and resources     maven-project/src/it – usually reserved for integration tests used by the Maven Failsafe Plugin     maven-project/src/site – site documentation created using the Maven Site Plugin     maven-project/src/assembly – assembly configuration for packaging binaries      src/main/java – Java source code for the artifact     src/main/resources – configuration files and others such as i18n files, per-environment configuration files, and XML configurations     src/main/webapp – for web applications, contains resources like JavaScript, CSS, HTML files, view templates, and images     src/main/filters – contains files that inject values into configuration properties in the resources folder during the build phase       src/test/java – Java source code for tests     src/test/resources – configuration files and others used by tests     src/test/filters – contains files that inject values into configuration properties in the resources folder during the test phase  |
    5
    | Maven dependency scopes                                        | Compile - Default. Available on all classpaths of project. Also, propagated to downstream projects. • Provided - Like Compile, but expected to be provided by JDK or container at runtime. • Runtime - Not required for compile, but needed for runtime. On runtime and test classpaths, not compile. • Test - Only available on test classpath, not transitive. • System - similar to provided, but JAR is added to system explicitly. (via file path) • Import - Imports dependency of POM.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
  5. javascript-notes javascript-notes Public

    Notes made by me while learning javascript

    JavaScript

  6. notes-on-spring-framework-and-related-technologies notes-on-spring-framework-and-related-technologies Public