- Installer just panics and quits if it fails to download some package, and you have to go through the entire configuration again to retry.
- Installer didn't add boot entry to my EFI for some reason so I had to mount boot and EFI partitions and call
bootctl installto fix it. -
moss state exporton a clean install produces a file with many packages. I'd expect just a few metapackages that I can base off of and remove/add my own. So that the base metapackages can get updated automatically.- The pkgsets like pkgset-aeryn-base-desktop seem to be missing a lot of important stuff. You need to specify quite a bit of extra packages in system-model for a working system.
- Ability to override-remove a package so I can install a pkgset, then remove some specific app from it.
- No easy way to see/track my own changes to
/etccompared to (many) files that are created there automatically. - Can't exit out of "Blitting filesystem" even with Ctrl-C.
- Auto-installed command doesn't r
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <Bounce2.h> | |
| // Where I have stuff plugged in on my board. | |
| #define BUTTON_PIN 2 | |
| #define LIGHT_PIN 23 | |
| // This one is standard for Teensy. | |
| #define LED_PIN 13 | |
| // The program repeatedly: | |
| // 1. presses the first key |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/python | |
| from itertools import chain | |
| from os import fdopen | |
| from sys import stdin, stdout | |
| import json | |
| import struct | |
| def main(): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <iostream> | |
| #include <string> | |
| #include <variant> | |
| using namespace std; | |
| #define MATCH(x) \ | |
| using __X_TYPE = std::decay_t<decltype(x)>; \ | |
| if constexpr (false) | |
| #define CASE(T) \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| set -ex | |
| # Check your distribution to find out how it runs Steam. | |
| # Replace 1 with 0 if it's not using Steam's bundled libraries. | |
| USE_STEAM_BUNDLED_LIBRARIES=1 | |
| # Make sure the paths below do not contain spaces. | |
| # Set this to the full path to the .steam folder, usually ~/.steam |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from enum import Enum | |
| import random | |
| import simpy | |
| ЛИФТ_ВРЕМЯ_ДВИЖЕНИЯ_ДВЕРЕЙ = 3 # секунды | |
| ЛИФТ_СКОЛЬКО_ДВЕРИ_ОТКРЫТЫ = 6 # секунды | |
| ЛИФТ_СЕКУНД_НА_ПЕРВЫЙ_И_ПОСЛЕДНИЙ_ЭТАЖ = 4 # секунды, время проезда первого и последнего этажа (больше из-за ускорения / замедления) | |
| ЛИФТ_СЕКУНД_НА_ЭТАЖ = 4 # секунды, время проезда одного этажа | |
| ЛИФТ_МАКСИМУМ_ПАССАЖИРОВ = 12 | |
| ЧИСЛО_ЛИФТОВ = 3 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| puzzles = { | |
| '**1': 'A3 Star #2 (ABTU)', | |
| '**2': 'A2 Star (Outside)', | |
| '**3': 'A3 Star #1 (Outside)', | |
| '**4': 'A4 Star (PiF)', | |
| '**5': 'A1 Star (Outside)', | |
| '**6': 'A5 Star #2 (FC)', | |
| '**7': 'A5 Star #1 (TtDWTB)', | |
| '**8': 'A6 Star (Outside)', | |
| '**9': 'A7 Star (TPLB)', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| extern crate rand; | |
| use rand::{Rand, Rng}; | |
| use std::env; | |
| #[derive(Debug, Copy, Clone, Eq, PartialEq)] | |
| enum Transformation { | |
| Nothing, | |
| Bold, | |
| Italic, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| extern crate byteorder; | |
| use byteorder::{ByteOrder, LittleEndian, ReadBytesExt, WriteBytesExt}; | |
| use std::env; | |
| use std::ffi::OsString; | |
| use std::fs::File; | |
| use std::io; | |
| use std::io::{Read, Seek, SeekFrom, Write}; | |
| use std::path::PathBuf; |
NewerOlder