Skip to content

Instantly share code, notes, and snippets.

View sabirkothiya's full-sized avatar

Sabir Kothiya sabirkothiya

View GitHub Profile
@sabirkothiya
sabirkothiya / tmux.conf
Created July 30, 2021 17:55 — forked from spicycode/tmux.conf
The best and greatest tmux.conf ever
# 0 is too far from ` ;)
set -g base-index 1
# Automatically set window title
set-window-option -g automatic-rename on
set-option -g set-titles on
#set -g default-terminal screen-256color
set -g status-keys vi
set -g history-limit 10000
import java.math.BigDecimal;
import java.math.BigInteger;
import java.math.MathContext;
int digits = 11;
MathContext mc = new MathContext(digits*digits + 1);
BigDecimal c = new BigDecimal(0.25);
BigDecimal hundred = new BigDecimal(100);
BigDecimal e = BigDecimal.ONE.divide(hundred.pow(digits-1), mc);
BigDecimal z = BigDecimal.ZERO;
@sabirkothiya
sabirkothiya / index.html
Created December 1, 2018 16:14
Basic HTML5 boilerplate code to get you started.
<!doctype html>
<html lang="en-GB">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="description" content="">
<title>HyperText Markup Language 5 (HTML5)</title>
<link href="style.css" type="text/css" rel="stylesheet" title="Cascading Style Sheets" />
</head>