Skip to content

Instantly share code, notes, and snippets.

@Purpzie
Purpzie / arch-wsl-setup.md
Last active June 19, 2023 19:37
Arch WSL setup guide
  1. Download archlinux-bootstrap-<version>-x86_64.tar.gz from one of the mirrors. You should verify its signature.

  2. While it's possible to import a .tar.gz into WSL, Arch's bootstrap needs to be adjusted first. Open any Linux distro that can transfer files to/from Windows. (WSL counts.)

  3. In Linux:

    # This needs to be done as root to avoid WSL permission issues.
    sudo -i
    
    # Extract it, cd into the folder, and compress it again.
@eduardoflorence
eduardoflorence / main.dart
Last active April 10, 2024 10:40
Getx - Sample Form
import 'package:flutter/material.dart';
import 'package:get/get.dart';
void main() {
runApp(GetMaterialApp(
initialRoute: '/login',
getPages: [
GetPage(
name: '/login',
page: () => LoginPage(),