I hereby claim:
- I am zyga on github.
- I am zyga (https://keybase.io/zyga) on keybase.
- I have a public key whose fingerprint is B76C ED9B 45CA F155 7D27 1A6A 2894 E93A 28C6 7B47
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/env python3 | |
# | |
# Copyright (c) Zygmunt Krynicki | |
# All rights reserved. | |
# | |
# Redistribution and use in source and binary forms, with or without | |
# modification, are permitted provided that the following conditions | |
# are met: | |
# 1. Redistributions of source code must retain the above copyright | |
# notice, this list of conditions and the following disclaimer. |
#!/usr/bin/env python3 | |
# Copyright 2013 Canonical Ltd. | |
# Written by: | |
# Zygmunt Krynicki <[email protected]> | |
""" | |
Parser for `pactl list` output | |
""" | |
from argparse import ArgumentParser |
# Display Port Audio Test Program | |
# ------------------------------- | |
# | |
# Goal: | |
# To play sound through the attached monitor, | |
# connected using a display port cable, | |
# without using a passive adapter. | |
# Purpose: | |
# To aid in manual testing of audio for hardware certification | |
# Requirements: |
#!/usr/bin/env python2 | |
class Meta(type): | |
def __new__(mcls, name, bases, ns): | |
ns['_meta_for'] = name | |
return type.__new__(mcls, name, bases, ns) | |
class Base(object): |
#!/usr/bin/env python | |
from __future__ import absolute_import, print_function, unicode_literals | |
from collections import defaultdict, namedtuple | |
from gettext import gettext as _, ngettext | |
from unittest import TestCase | |
from unittest.loader import TestLoader | |
from unittest.result import TestResult | |
from unittest.suite import TestSuite |
VBoxManage storageattach "Ubuntu Precise Server" --storagectl "SATA" --port 0 --device 0 --type hdd --medium iscsi --server 192.168.0.5 --target "iqn.2013-01.silverbox:precise-server" --tport 3260 |
#!/usr/bin/env python3 | |
# Producers | |
def text_producer() -> str: | |
yield "I write" | |
yield "some text" | |
yield "some of which zażółć gęślą jaźń is in Polish" |
/* | |
Alleged vboxfs bug test program. | |
Copyright (c) 2013, Zygmunt Krynicki | |
All rights reserved. | |
Redistribution and use in source and binary forms, with or without modification, | |
are permitted provided that the following conditions are met: |