Skip to content

Instantly share code, notes, and snippets.

View pdostal's full-sized avatar
:octocat:

Pavel Dostál pdostal

:octocat:
View GitHub Profile
[ 142s] ok github.com/cli/cli/v2/pkg/cmd/attestation/api 0.584s
[ 142s] ok github.com/cli/cli/v2/pkg/cmd/attestation/artifact 0.013s
[ 142s] ok github.com/cli/cli/v2/pkg/cmd/attestation/artifact/digest 0.011s
[ 142s] ok github.com/cli/cli/v2/pkg/cmd/attestation/artifact/oci 0.012s
[ 143s] ok github.com/cli/cli/v2/pkg/cmd/attestation/download 0.086s
[ 144s] ? github.com/cli/cli/v2/pkg/cmd/attestation/io [no test files]
[ 144s] ? github.com/cli/cli/v2/pkg/cmd/attestation/test [no test files]
[ 144s] ? github.com/cli/cli/v2/pkg/cmd/attestation/test/data [no test files]
[ 144s] ok github.com/cli/cli/v2/pkg/cmd/attestation/inspect 0.050s
[ 144s] --- FAIL: TestTUFRootVerify (0.02s)
@pdostal
pdostal / gist:2b4f374468ee0c0168864d535abb54c3
Created February 10, 2023 09:43
neofetch @ grandcentral
[?25l[?7l ......
.,cdxxxoc,. .:kKMMMNWMMMNk:.
cKMMN0OOOKWMMXo. ; ;0MWk:. .:OMMk.
;WMK;. .lKMMNM, :NMK, .OMW;
cMW; 'WMMMN ,XMK, oMM'
.MMc ..;l. xMN: KM0
'MM. 'NMO oMM
.MM, .kMMl xMN
KM0 .kMM0. .dl:,.. .WMd
.XM0. ,OMMK, OMMMK. .XMK
@pdostal
pdostal / mount_qcow2.md
Last active January 8, 2023 13:47 — forked from shamil/mount_qcow2.md
How to mount a qcow2 disk image

How to mount a qcow2 disk image

This is a quick guide to mounting a qcow2 disk images on your host server. This is useful to reset passwords, edit files, or recover something without the virtual machine running.

Step 1 - Enable NBD on the Host

modprobe nbd max_part=8
@pdostal
pdostal / 122.168.192.in-addr.arpa.zone
Last active March 6, 2021 08:50
RancherOS infrastructure
$TTL 86400
@ IN SOA host.pdostal.sh.cvut.cz. p.dostal.sh.cvut.cz. (
2021030200 ; serial
28800 ; refresh
14400 ; retry
3600000 ; expire
86400 ; default_ttl
)
@ IN NS host.pdostal.sh.cvut.cz.
@pdostal
pdostal / Ubuntu server interfaces config
Created January 19, 2016 17:15
Ubuntu server interfaces config
auto lo
iface lo inet loopback
auto eth0
iface eth0 inet dhcp
auto eth1 eth1:0
iface eth1 inet static
address 10.100.100.2
netmask 255.255.255.0
@pdostal
pdostal / gist:17573df4b4748590d30d
Created November 10, 2015 23:15
onename.com verification
Verifying that +pdostal is my blockchain ID. https://onename.com/pdostal
@pdostal
pdostal / draw.sh
Created September 18, 2015 18:29
Fill whole terminal by alphabet.
#!/bin/bash
lins=`tput lines`
cols=`tput cols`
printf '\033c'
for x in {a..z}; do
for ((l=0; l<=lins; l++)); do
for ((c=0; c<=cols-1; c++)); do
@pdostal
pdostal / create.sh
Created July 16, 2015 19:53
SwapFile
dd if=/dev/zero of=/swapfile bs=1M count=512
chmod 600 /swapfile
mkswap /swapfile
swapon /swapfile
@pdostal
pdostal / syslog-ng
Created May 30, 2015 13:17
Remote logging
destination zenoss {
udp("172.127.127.3" port(514));
};
log {
source(src);
destination(zenoss);
};
## Prepare ###################################################################
# Remove RVM
rvm implode
# Ensure your homebrew is working properly and up to date
brew doctor
brew update
## Install ###################################################################