Server specification for Minecraft BFF SMP Server Season 4
[version] Year-Month-Day
- Restore backup file
Backup at 2026-01-23 00:00:03 - Remove following mods from server
ยังไม่ได้สร้างโลก| package main | |
| import ( | |
| "fmt" | |
| "strings" | |
| ) | |
| func WordCount(s string) map[string]int { | |
| count := make(map[string]int) |
| [ | |
| { | |
| "code": "AED", | |
| "name": "UAE Dirham", | |
| "symbol": "د.إ", | |
| "country": "United Arab Emirates", | |
| "countryCode": "AE", | |
| "flag": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAIGNIUk0AAHolAACAgwAA+f8AAIDpAAB1MAAA6mAAADqYAAAXb5JfxUYAAAG5SURBVHja7JdLihRBEEBfVqUU6rQNggiCFxA8gswFRNy49gAeQdx4G8HbuHDvRkRUnKxPZ2dGhous6Y9TtavPZmITtYggXsWPSKOqrCkFK8stgAFKoOr1kiKAt8CD76/f/KYYj//u7bPpU28Mn199eGiBLabg7uWLUePLp08mB/j66xvA1gKVSkK9J/29guuxNCZrVX60905qZlD0xvd5XbPvmN22uo+XCFDZXI2Idjt0txuk9TFM+ve7Yk9MAkAPIKSuI3XdoEMX/aQAd4qSfYpHAI0RbVt0FGA/KYAtyvMMaBTUObRpBh2a0E3cgspewkkJQkDqGm3bQfNPL9/PtIQ+cmjC5OqbTaj9qppRcglCAFej3h9H8P9xnBUgCtRNBllYDj0QmxbWAkgxggiktFjg60PosAeMJnQtAIkRq7poBlIfK5cgRBQdzYC1dtLgVVVRluUJgEQo7XH0RminlBDCKUDK99AIwByXs4gcb0JJafaFc7aCjTlktQBIqpiVAPIYas5AcXEx6LCRzaxjKAn4465GjZ1zs13GBngMPAceLbyFfwJfTP8m2PR6SfGAM7eP07UB/g0Aw73uXdMbeJMAAAAASUVORK5CYII=" | |
| }, | |
| { |
| export class HttpError extends Error { | |
| constructor(public status: number, message: string) { | |
| super(message); | |
| this.name = 'HttpError'; | |
| } | |
| } | |
| export const customFetchBase = async (endpoint: string, config: RequestInit = {}) => { | |
| const baseURL = process.env.NEXT_PUBLIC_API_URL; |
| package main | |
| import "fmt" | |
| type Printer interface { | |
| Print() | |
| GetInformation() string | |
| } | |
| // ------------------------------------------------------------------ |
| #include <iostream> | |
| #include <unordered_map> | |
| #include <vector> | |
| #include <algorithm> | |
| using namespace std; | |
| class Fibonacci | |
| { | |
| private: | |
| unordered_map<int, long long> cache; |
| // Zed keymap | |
| // | |
| // For information on binding keys, see the Zed | |
| // documentation: https://zed.dev/docs/key-bindings | |
| // |
| # Interface Segregation | |
| class USBInterface: | |
| def __init__(self): | |
| pass | |
| def read(self): | |
| print("reading...") | |
| def write(self): | |
| print("writing...") |
| # interace | |
| class MessageService: | |
| def send(self, message) -> str: | |
| pass | |
| class Email(MessageService): | |
| def __init__(self): | |
| pass | |
| def send(self, message): |