Skip to content

Instantly share code, notes, and snippets.

View slykar's full-sized avatar

Sylwester Kardziejonek slykar

View GitHub Profile
@slykar
slykar / docker-compose-hackintosh.md
Last active July 26, 2024 07:10
Docker and Docker Compose on AMD OSX Hackintosh via Docker Machine

Introduction

Docker.app will complain about incompatible processor, so we will use Docker Machine.

Instalation

Download Docker for Mac (Docker.app). It contains some binaries that are necessary.

brew install virtualbox docker-machine
@slykar
slykar / dell-idrac6-ipmitool-fan-controll.md
Last active July 14, 2024 10:12
Fan control IPMI commands for Dell T610

Dell Fan Control Commands

print temps and fans rpms

ipmitool -I lanplus -H <iDRAC-IP> -U <iDRAC-USER> -P <iDRAC-PASSWORD> sensor reading "Ambient Temp" "FAN 1 RPM" "FAN 2 RPM" "FAN 3 RPM"

print fan info

@slykar
slykar / mypy.py
Created July 9, 2024 17:35
Faster PyCharm mypy plugin with daemon dmypy
#!/usr/bin/env python3
import argparse
import os
import subprocess
import sys
STATUS_FILE = os.path.join(os.path.dirname(__file__), ".dmypy.json")
@slykar
slykar / polymorphic_tree.py
Last active December 21, 2023 01:26
Combining django-treebeard Materialized Path tree with django-model-utils InheritanceManager #django
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
@slykar
slykar / fizzbuzz.py
Created March 30, 2020 18:21
Declarative FizzBuzz in Python
FROM = 1
TO = 100
DIVIDERS = [
(3, "Fizz"),
(5, "Buzz"),
(7, "Kazz") # or any other (div, word) pair
]
for n in range(FROM, TO):
@slykar
slykar / OSX Secure Disk Wipe.md
Created December 18, 2019 16:37 — forked from joeblau/OSX Secure Disk Wipe.md
Securely erase an external disk using dd on OSX

Securely erase an external disk using dd on OSX

  1. Plug in your SD card, HDD, or other block device and then use the following command to see which /dev/diskN node it's located on:
diskutil list
  1. Unmount the disk where “N� is the number of the disk taken from the above command:
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
// 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,
};
// do something 10 times
'.'.repeat(10).split('').forEach(dot => doSomething());
// add 7 more `{}` to `rows`
const rows = [{}, {}];
Array(7).fill({}).map(o => rows.push({}))
@slykar
slykar / vee-validate-buefy-field-type.ts
Created August 9, 2019 12:42
How to specify Buefy field type more easily when doing a form validation
/**
* 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() {