Skip to content

Instantly share code, notes, and snippets.

View vibs2006's full-sized avatar

vibs2006

View GitHub Profile
@vibs2006
vibs2006 / nexus_5_installation.md
Last active February 28, 2026 17:42
Lineage 16 OS Step by Step Installation Guide for outdate Nexus 5 Mobile

πŸ“± Install LineageOS 16 (Android 9) on Google Nexus 5 β€” Complete Beginner's Guide

Platform: Windows 10 | Device: Google Nexus 5 (hammerhead) | ROM: LineageOS 16.0 (Android 9 Pie)


⚠️ Important Warnings Before You Start

πŸ”΄ ALL DATA ON YOUR PHONE WILL BE ERASED! Back up everything first.

⚑ Indian Power Companies Poised to Benefit from Data Center Demand

India is experiencing a massive surge in data center investments (from hyperscalers like Google, Microsoft, Amazon, and domestic players), which is driving unprecedented electricity demand. Here's a curated list of NSE/BSE-listed Indian power companies best positioned to benefit:


πŸ† Top Picks

1. πŸ”΅ NTPC Ltd β€” NSE: NTPC

| Attribute | Details |

@vibs2006
vibs2006 / Dockerfile_mssql
Created December 14, 2023 10:44 — forked from pbthorste/Dockerfile_mssql
Docker image with msssql 2022 with full text search enabled
# Docker image with msssql 2022 with full text search enabled
# based on work in: https://github.com/Microsoft/mssql-docker
# Base OS layer: Latest Ubuntu LTS
FROM --platform=linux/amd64 ubuntu:focal
# Install prerequistes since it is needed to get repo config for SQL server
RUN export DEBIAN_FRONTEND=noninteractive && \
apt-get update && \
apt-get install -yq curl apt-transport-https gnupg && \
@vibs2006
vibs2006 / ASP.NET.Core.6.Startup.cs
Last active June 14, 2023 12:15
SELF HOST API with Swagger Configuration for all .NET Versions
public class Program
{
static void Main(string[] args)
{
Console.WriteLine("Starting Padauk Web API Services");
try
{
var applicationName = "Padauk.API";
var builder = WebApplication.CreateBuilder(args);
var startup = new WebHostStartup(builder.Configuration);