Default keyboard shortcuts for Ghostty terminal emulator. Platform-specific differences are noted where applicable.
| Action | Windows/Linux | macOS |
|---|---|---|
| New window | Ctrl+Shift+N | Cmd+N |
| Close window | Alt+F4 | Cmd+Shift+W |
| import { SyncService } from './SyncService'; | |
| import type { | |
| EventId, | |
| UserId, | |
| EventFromA, | |
| } from './types'; | |
| import { describe, beforeEach, it, expect } from '@jest/globals'; | |
| import { QueueService, LogService, BService, MonitorService, CacheService } from './mock-services'; |
| import React from "react"; | |
| import { Dimensions, TextInput, ScrollView } from "react-native"; | |
| import Animated, { | |
| useAnimatedKeyboard, | |
| useAnimatedReaction, | |
| runOnJS, | |
| KeyboardState, | |
| useAnimatedProps, | |
| useAnimatedScrollHandler, |
| import React, { useMemo, useState } from "react"; | |
| import { LayoutChangeEvent, StyleSheet } from "react-native"; | |
| import { | |
| PinchGestureHandler, | |
| PinchGestureHandlerGestureEvent, | |
| } from "react-native-gesture-handler"; | |
| import Animated, { | |
| useAnimatedGestureHandler, | |
| useAnimatedStyle, | |
| useSharedValue, |
| function numberOfCarryOperations(x,y) { | |
| var xs = x.toString(); | |
| var ys = y.toString(); | |
| var cary = 0; | |
| var operations=0; | |
| var xCurrent; | |
| var yCurrent; | |
| while (xs.substr(xs.length-1) || ys.substr(ys.length-1) ) { | |
| yCurrent =ys.substr(ys.length-1); |
A description of known problems in Satoshi Nakamoto's paper, "Bitcoin: A Peer-to-Peer Electronic Cash System", as well as notes on terminology changes and how Bitcoin's implementation differs from that described in the paper.
The longest chain not only serves as proof of the sequence of events witnessed, but proof that it came from the largest pool of CPU power.