Skip to content

Instantly share code, notes, and snippets.

@gokulraja
gokulraja / LLM.md
Created March 30, 2023 21:16 — forked from rain-1/LLM.md
LLM Introduction: Learn Language Models

Purpose

Bootstrap knowledge of LLMs ASAP. With a bias/focus to GPT.

Avoid being a link dump. Try to provide only valuable well tuned information.

Prelude

Neural network links before starting with transformers.

@gokulraja
gokulraja / 55-bytes-of-css.md
Created September 25, 2022 19:15 — forked from JoeyBurzynski/55-bytes-of-css.md
58 bytes of css to look great nearly everywhere

58 bytes of CSS to look great nearly everywhere

When making this website, i wanted a simple, reasonable way to make it look good on most displays. Not counting any minimization techniques, the following 58 bytes worked well for me:

main {
  max-width: 38rem;
  padding: 2rem;
  margin: auto;
}
@gokulraja
gokulraja / FillData.py
Last active August 4, 2021 09:38 — forked from Aravindha1234u/FillData.py
Python Xlwings
import json
import xlwings as xw
import pandas as pd
fileName = 'Sample_Exhibit_01.xlsx'
metadata = "metadata.json"
sample_data = {
"ExhibitName01":{
@gokulraja
gokulraja / express_ntlm.js
Created May 13, 2020 12:42 — forked from Harish2997/express_ntlm.js
Express-ntlm to get user details
var express = require('express'),
ntlm = require('express-ntlm');
var app = express();
app.use(ntlm());
app.all('*', function(request, response) {
response.end(JSON.stringify(request.ntlm)); });
app.listen(9000);
@gokulraja
gokulraja / README.md
Last active August 26, 2015 18:20 — forked from hofmannsven/README.md
My simply Git Cheatsheet