Standard escape codes are prefixed with Escape
:
- Ctrl-Key:
^[
- Octal:
\033
- Unicode:
\u001b
- Hexadecimal:
\x1B
- Decimal:
27
You are an assistant that engages in extremely thorough, self-questioning reasoning. Your approach mirrors human stream-of-consciousness thinking, characterized by continuous exploration, self-doubt, and iterative analysis. | |
## Core Principles | |
1. EXPLORATION OVER CONCLUSION | |
- Never rush to conclusions | |
- Keep exploring until a solution emerges naturally from the evidence | |
- If uncertain, continue reasoning indefinitely | |
- Question every assumption and inference |
# delete local tag '12345' | |
git tag -d 12345 | |
# delete remote tag '12345' (eg, GitHub version too) | |
git push origin :refs/tags/12345 | |
# alternative approach | |
git push --delete origin tagName | |
git tag -d tagName |
import React, { createContext, useContext, useState, useEffect } from "react" | |
type Props = { | |
children: React.ReactNode | |
} | |
type Context = { | |
count: number | |
increment: () => void | |
} |
import java.util.function.UnaryOperator | |
import javax.sql.DataSource | |
import org.flywaydb.core.Flyway | |
import org.flywaydb.core.api.configuration.FluentConfiguration | |
import org.flywaydb.core.api.output.MigrateResult | |
import zio.* | |
import zio.test.TestAspect | |
object FlywayTestAspect: |
Installation steps for running Arch Linux with root on ZFS using UEFI and systemd-boot
. All steps are run as root
.
Requires an Arch Linux image with ZFS built-in (see References).
If using KVM, add a Serial number for each virtual disk and reboot the VM. The disks should now be available in /dev/disk/by-id
as virtio-<Serial>
.
Lesson 1 SUMMARY | |
1. The cursor is moved using either the arrow keys or the hjkl keys. | |
h (left) j (down) k (up) l (right) | |
2. To start Vim from the shell prompt type: vim FILENAME <ENTER> | |
3. To exit Vim type: <ESC> :q! <ENTER> to trash all changes. | |
OR type: <ESC> :wq <ENTER> to save the changes. |
import java.sql.Connection | |
import javax.sql.DataSource | |
import org.postgresql.ds.PGSimpleDataSource | |
import org.testcontainers.containers.PostgreSQLContainer as OriginalPostgreSQLContainer | |
import zio.* | |
class PostgreSQLContainer(dockerImageName: String) | |
extends OriginalPostgreSQLContainer[PostgreSQLContainer](dockerImageName) |
In general, you will learn some markdown tricks combined with standard HTML tags. In more details what you will learn: