Skip to content

Instantly share code, notes, and snippets.

View gogodze's full-sized avatar
🇬🇪
Georgian

David Gogodze gogodze

🇬🇪
Georgian
View GitHub Profile
@gogodze
gogodze / windows-keys.md
Created June 29, 2024 15:01 — forked from rvrsh3ll/windows-keys.md
Windows Product Keys

NOTE

These are NOT product / license keys that are valid for Windows activation.
These keys only select the edition of Windows to install during setup, but they do not activate or license the installation.

Index

@gogodze
gogodze / script.txt
Created June 18, 2024 14:58
Northwind database install script
-- Either:
-- Open Microsoft SQL Server Management Studio.
-- Connect to your server.
-- Open a new query window.
-- Copy and paste the SQL below into the query window.
-- Execute the script to create the Northwind database.
-- Or:
-- Run the following command in a terminal window.
-- sqlcmd
-- Copy and paste the SQL below into the terminal window to create the Northwind database.
@gogodze
gogodze / sha256.cuh
Created February 25, 2024 19:04 — forked from ddjerqq/sha256.cuh
CUDA C++ implementation of SHA256
#include <cstring>
#include <sstream>
#include <iomanip>
#ifndef SHA256_CUH
#define SHA256_CUH
#include <string>
#include <array>