Skip to content

Instantly share code, notes, and snippets.

View daniilS's full-sized avatar

Daniil Soloviev daniilS

  • University of Cambridge
  • Cambridge, UK
View GitHub Profile
@motorailgun
motorailgun / idea.md
Last active June 18, 2024 06:22
Installing Windows and Linux into the same partition

Installing Windows and Linux into the same partition

But WHY?

There was a reddit post about installing Arch on NTFS3 partition. Since Windows and Linux doesn't have directories with same names under the /(C:\), I thought it's possible, and turned out it was actually possible.
If you are not familiar to Linux, for example you've searched on Google "how to dualboot Linux and Windos" or brbrbr... you mustn't try this. This is not practical.

Pre-requirements

  • UEFI system
  • Any Linux live-boot CD/DVD/USB... with Linux kernel newer than 5.15
  • Windows installer USB
@jvoytech
jvoytech / tk_excel.py
Created March 14, 2019 20:18
simple Tkinter excel spreadsheet cells
import tkinter as tk
app = tk.Tk()
class Excel(tk.Frame):
def __init__(self, master, rows, columns, width):
super().__init__(master)
for i in range(columns):