👉Boot linux from USB stick in live mode.
In case your computer has UEFI BIOS execute these commands:
sudo mount /dev/sdXXX /mnt
sudo mount /dev/sdXX /mnt/boot/efi
for i in /dev /dev/pts /proc /sys /run; do sudo mount -B $i /mnt$i; done
| from model_utils.managers import InheritanceManagerMixin, InheritanceQuerySetMixin | |
| from treebeard.mp_tree import MP_NodeManager, MP_NodeQuerySet, MP_Node | |
| class PolymorphicTreeQuerySet(InheritanceQuerySetMixin, MP_NodeQuerySet): | |
| """QuerySet combining functionality of polymorphic up-casting with Materialized Path tree structure""" | |
| class PolymorphicTreeManager(InheritanceManagerMixin, MP_NodeManager): | |
| _queryset_class = PolymorphicTreeQuerySet |
👉Boot linux from USB stick in live mode.
In case your computer has UEFI BIOS execute these commands:
sudo mount /dev/sdXXX /mnt
sudo mount /dev/sdXX /mnt/boot/efi
for i in /dev /dev/pts /proc /sys /run; do sudo mount -B $i /mnt$i; done
| /** | |
| * Returns an object with definition of <b-field :type> for Buefy. | |
| * | |
| * Instead of setting the field type like this: | |
| * | |
| * <b-field :type="{ 'is-danger': errors.has('field_name') }"></b-field> | |
| * | |
| * You can now use it like this: | |
| * | |
| * get fieldTypes() { |
| // do something 10 times | |
| '.'.repeat(10).split('').forEach(dot => doSomething()); | |
| // add 7 more `{}` to `rows` | |
| const rows = [{}, {}]; | |
| Array(7).fill({}).map(o => rows.push({})) |
| // See https://pl.wikipedia.org/wiki/PESEL#Data_urodzenia | |
| // See https://en.wikipedia.org/wiki/PESEL#Birthdates | |
| const CENTURY_MAP: {[k: number]: number} = { | |
| 0: 1900, | |
| 1: 2000, | |
| 2: 2100, | |
| 3: 2200, | |
| 4: 1800, | |
| }; |
| rancher: | |
| network: | |
| interfaces: | |
| eth0: | |
| address: 192.168.0.100/24 | |
| gateway: 192.168.0.1 | |
| dns: | |
| nameservers: | |
| - 8.8.8.8 | |
| - 8.8.4.4 |