Skip to content

Instantly share code, notes, and snippets.

View ryanhossain9797's full-sized avatar

Raiyan ryanhossain9797

  • Dhaka, Bangladesh
View GitHub Profile
@ryanhossain9797
ryanhossain9797 / windows_activation.md
Created February 11, 2025 17:23 — forked from bramada/windows_activation.md
Activate Windows for free

For Windows 10

Step 1 - Open PowerShell or Command Prompt as administrator

Step 2 - Install KMS client key

slmgr /ipk your_license_key

Replace your_license_key with following volumn license keys according to Windows Edition:

using System;
public abstract class Option<T>
{
public static Option<T> some(T value) => new Some(value); //we need these to make the actual Some/None constructors internal
public static Option<T> none() => new None();
public sealed class Some : Option<T>
{
public readonly T value;
struct GenericAnimal {
age: usize
}
impl GenericAnimal {
fn sleep(&self) {
println!("zzz");
}
}
struct Tiger {

Keybase proof

I hereby claim:

  • I am ryanhossain9797 on github.
  • I am zireael9797 (https://keybase.io/zireael9797) on keybase.
  • I have a public key ASD6bJsyS_XF1CsKKBD39wxt_XNiiRyUlLTZGqbnXaLI4Ao

To claim this, I am signing this object:

import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',