Skip to content

Instantly share code, notes, and snippets.

View adithnaveen's full-sized avatar

Naveen adithnaveen

View GitHub Profile
@adithnaveen
adithnaveen / sample.txt
Created March 13, 2024 05:11
Sapient Java 11
Java 11 Program
-------------------------------------------------
package com.naveen;
import java.util.Arrays;
1. What will be your sprint time & Why
2. what will be your pod / team size
3. How many hrs of time is each employee devoting for work
4. What tools do you use to capture requirement
5. What tool is used for documentation
6. How frequently are you planned to respond for the change requirements
7. When will your working software be available
8. When the customer is far how do you ensure the communication does not have gaps
@adithnaveen
adithnaveen / gist:d1d6a03b5b3a40e088a817637a7f7fac
Last active June 21, 2022 04:15
react node training- sapient
Create a file call .zshenv
export PATH=$PATH:$HOME/.local/bin:YourMongoPath
## working with node cpp
npm installs...
@adithnaveen
adithnaveen / codesnippents.java
Last active March 31, 2022 03:26
citi bank training - mar 22 quick gists
// set your java version
<properties>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
</properties>
// spring dependency
<dependency>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/css/bootstrap.min.css">
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.11.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/js/bootstrap.min.js"></script>
-----------------------------------------
@adithnaveen
adithnaveen / .html
Created November 29, 2021 16:45
Jquery-HTML-CSS
style.css
--------------------------
body {
font-family: "Open Sans", sans-serif;
font-size: 12pt;
margin: 0;
line-height: 1.2em;
}
body > h1 {
# Terminal Cheat Sheet
pwd # print working directory
ls # list files in directory
cd # change directory
~ # home directory
.. # up one directory
../../ # 2 level up directory
- # previous working directory
help # get help
@adithnaveen
adithnaveen / Sample.java
Last active November 15, 2021 06:10
Java 8 Discussion - AEM
@FunctionalInterface
interface Executable{
int execute(int a, int b);
}
@FunctionalInterface
interface StringExecutable {
String stringExecute(String a, String b);
}
public class DemoApplication {
public static void main(String[] args) {
SpringApplication.run(DemoApplication.class, args);
}
@GetMapping("/user")
public User getUser() {
return new User(101, "Harshith");
}
@adithnaveen
adithnaveen / design pattern
Last active September 9, 2021 08:15
Design Pattern
package com.barclays;
public class Company {
// lazy singleton
private Company() {
System.out.println("Object creationg - Company");
}
public static Company getInstance(Company company) {