Skip to content

Instantly share code, notes, and snippets.

@arunrreddy
arunrreddy / index.html
Created March 8, 2022 09:41 — forked from kertnik05/index.html
html table cell split diagonally
<!DOCTYPE html>
<html>
<head>
<title>HTML Table Cell Split Diagonally</title>
</head>
<body>
<table>
<tr>
<td>
<div class="c1">A</div>
@arunrreddy
arunrreddy / TTSheet2HashMap.java
Created July 7, 2020 08:08 — forked from lucaslouca/TTSheet2HashMap.java
Convert a XLSX file to List<Map<String, String>>
package com.tool.main;
import java.util.List;
import java.util.Map;
public interface TTSheet2HashMap {
/****************************************** PUBLIC ********************************************/
/**
* Initiates the processing of the sheet to List<Map<String,
@arunrreddy
arunrreddy / scope.js
Created June 9, 2020 06:43
BJS Intro - Scoping in JS
function myFunction() {
var a = 10;
if (a === 10) {
var a = 30;
let b = 20;
} else {
let c = 30;
}
console.log(a);
console.log(b);
@arunrreddy
arunrreddy / index.html
Created June 9, 2020 06:18
BJS Intro - Scripts almost always are just before the end of the body tag
<html>
<head>
<title>My first website</title>
</head>
<body>
<header></header>
<main></main>
<footer></footer>
<script src="myscript1.js"></script>
<script src="myscript2.js"></script>