sudo apt install zsh-autosuggestions zsh-syntax-highlighting zsh
<script type="application/ld+json"> | |
{ | |
"@context": "https://schema.org", | |
"@type": "FAQPage", | |
"mainEntity": [{ | |
"@type": "Question", | |
"name": "How to find an apprenticeship?", | |
"acceptedAnswer": { | |
"@type": "Answer", | |
"text": "<p>We provide an official service to search through available apprenticeships. To get started, create an account here, specify the desired region, and your preferences. You will be able to search through all officially registered open apprenticeships.</p>" |
// See https://typeofweb.hashnode.dev/nextjs-prefetch-onmouseenter for a detailed explanation and more code | |
// See it in action: https://demo.yournextstore.com | |
"use client"; | |
import Link from "next/link"; | |
import { useRouter } from "next/navigation"; | |
import { type ComponentPropsWithRef } from "react"; | |
export const SuperLink = (props: ComponentPropsWithRef<typeof Link>) => { | |
const router = useRouter(); |
import crypto from "crypto"; | |
import { listAllSubscriptions } from "lemonsqueezy.ts"; | |
import { NextRequest } from "next/server"; | |
// Put this in your billing lib and just import the type instead | |
type LemonsqueezySubscription = Awaited<ReturnType<typeof listAllSubscriptions>>["data"][number]; | |
const isError = (error: unknown): error is Error => { | |
return error instanceof Error; | |
}; |
There are already dozens of tutorials to setup an Arch and Windows dual boot - welcome to a dozen + 1. Like most others this is a step by step guide. Unlike most others the steps are ordered in a way that makes sense (starting with the download first - duh!) so you won't have to restart your computer a gazillion times.
I did this on a single SSD Dell XPS 15 with windows 10 preinstalled. It's obviously possible to follow this guide if you're installing Arch onto a different drive or if you're running older hardware. If you run into any problems please be sure to read through the Arch Installation Guide and the Arch Dual boot with Windows wiki.
To get started you will need:
import 'package:flutter/material.dart'; | |
import 'dart:math'; | |
const SCALE_FRACTION = 0.7; | |
const FULL_SCALE = 1.0; | |
const PAGER_HEIGHT = 200.0; | |
class ItCrowdPage extends StatefulWidget { | |
@override | |
_ItCrowdPageState createState() => _ItCrowdPageState(); |