Install debian as usual:
- EFI partition ~256M, boot, esp flags
- ext2 boot partition ~512M
- luks cyrpt volume
- LVM pv
- swap ~5G
- btrfs
- LVM pv
When the installation is finished, boot into SystemRescueCD.
wn_window yes | |
own_window_colour 262729 | |
own_window_transparent yes | |
own_window_type panel | |
own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager | |
double_buffer yes | |
use_spacer right | |
use_xft yes | |
xftfont mono:size=9 | |
xftalpha 1 |
<small style="white-space: nowrap"> | |
<?php if (!$column->isSortedAsc() && !$column->isSortedDesc()): ?> | |
<a | |
class="text-success" | |
title="Sort ascending" | |
href="<?= $grid->getSorter()->link($column, 'ASC') ?>" | |
> | |
<span class="glyphicon glyphicon-sort" aria-hidden="true"></span> | |
</a> | |
<?php elseif ($column->isSortedAsc()): ?> |
(new TotalsRow(['posts_count', 'comments_count'])) | |
->setFieldOperations([ | |
'posts_count' => TotalsRow::OPERATION_SUM, | |
'comments_count' => TotalsRow::OPERATION_SUM, | |
]), |
(new THead) | |
->setComponents([ | |
(new FiltersRow) | |
->addComponents([ | |
(new Filter((new FilterConfig())->setOperator(FilterConfig::OPERATOR_EQ))) | |
->setName('d_doc') | |
->setTemplate('*.components.filters.datetime_picker') | |
->setRenderSection('filters_row_column_d_doc') |
#!/bin/sh | |
function fy(){ | |
echo $(/bin/ls -lah | /bin/grep -m 1 total | /bin/sed 's/total //') | |
} | |
function fx(){ | |
echo $(/bin/ls -1 | /usr/bin/wc -l | /bin/sed 's: ::g') | |
} |
<?php | |
function iban_get_parts( $iban ) | |
{ | |
return [ | |
'country' => substr( $iban, 0, 2 ), | |
'checksum' => substr( $iban, 2, 2 ), | |
'checksum_national' => substr( $iban, 4, 1 ), | |
'abi' => substr( $iban, 5, 5 ), | |
'cab' => substr( $iban, 10, 5 ), |
#!/usr/bin/python3 | |
import dbus | |
import os | |
import sys | |
STATUS_TO_ICON = { | |
'Playing': '', | |
'Paused': '', | |
'Stopped': '', |
#include <Wire.h> | |
#include <LiquidCrystal_PCF8574.h> | |
#include "DHT.h" | |
#define DHTPIN 11 | |
#define DHTTYPE DHT11 // DHT 11 | |
DHT dht(DHTPIN, DHTTYPE); | |
#define MOISTPIN 6 | |
int sensorvalue = 0; |
#include <Wire.h> | |
#include "RTClib.h" | |
RTC_DS1307 RTC; | |
#include <LiquidCrystal_I2C.h> | |
#include <SPI.h> | |
#include <Adafruit_Sensor.h> | |
#include <Adafruit_BMP280.h> | |