Skip to content

Instantly share code, notes, and snippets.

View sahil-jindal's full-sized avatar
🙂

Sahil Jindal sahil-jindal

🙂
View GitHub Profile
@sahil-jindal
sahil-jindal / win11.md
Created December 11, 2025 11:52 — forked from 143mailliw/win11.md
Windows 11 Issues List

Issues

Installation

  • The page to download Windows 11 cannot be found from Bing, only Google, and doesn't seem to show up anywhere on the website
  • The Media Creation Tool still uses icons from Windows 8
  • The Media Creation Tool still has an edition selector even though it doesn't do anything
  • The Media Creation Tool still flickers
  • All of the Media Creation Tool languages are in lower case
  • Upgrade prompt in the Windows Update preference pane is buggy
  • Installer still uses Windows 7 themes and Windows 98 buttons
  • Installer still uses the Windows 8 color palette
@sahil-jindal
sahil-jindal / base64-utf8.module.js
Created August 18, 2022 14:50 — forked from nijikokun/base64-utf8.module.js
Javascript Base64 UTF8 for the Browser / Server. Base64 UTF-8 Encoding and Decoding Libraries / Modules for AMD, CommonJS, Nodejs and Browsers. Cross-browser compatible.
// UTF8 Module
//
// Cleaner and modularized utf-8 encoding and decoding library for javascript.
//
// copyright: MIT
// author: Nijiko Yonskai, @nijikokun, [email protected]
(function (name, definition, context, dependencies) {
if (typeof context['module'] !== 'undefined' && context['module']['exports']) { if (dependencies && context['require']) { for (var i = 0; i < dependencies.length; i++) context[dependencies[i]] = context['require'](dependencies[i]); } context['module']['exports'] = definition.apply(context); }
else if (typeof context['define'] !== 'undefined' && context['define'] === 'function' && context['define']['amd']) { define(name, (dependencies || []), definition); }
else { context[name] = definition.apply(context); }
@sahil-jindal
sahil-jindal / RE_to_Grammar_Algorithm.md
Created March 2, 2021 11:21 — forked from santanuchakrabarti/RE_to_Grammar_Algorithm.md
An algorithm to generate a Regular Grammar from a Regular Expression