View gist:0b89fd9169100af815fa755a8d299ab5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
no_arch_data = None | |
name = epoch = vresion = release = arch = None | |
for [....]: | |
# current arch is valid | |
if re.findall(".*(x86_64|s390x|i86|ppc64le|aarch64)$", str(nevra.arch)): | |
name = nevra.name | |
epoch = epoch or nevra.epoch | |
version = nevra.version | |
release = nevra.release | |
arch = nevra.arch |
View gist:b590e8a9ed5900a93d8e5c0bab0de22c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
In your classroom, you have ten students that are born in a variety of months. | |
(1) Use sets or frozensets to tell if anyone was born in the summer. | |
(2) Use sets or frozensets to tell who was born when the school year is not in session. | |
The summer months are June, July, and August. | |
The ten students and their birthdays are: |
View gist:b6de3f643c2f5fc21bd8941c3a3bdf37
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Given a list of numbers that I will give you, loop through the list and | |
if it is even, add two to it. If it is odd, multiply it by two. Then | |
return the new list of numbers to me to use in my program. | |
View gist:b3103a4c3d5bb82b52590def7f0eadc9
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(1) | |
Write a small program that uses "string.format() to print a greeting card message to all the following people: | |
Toshio | |
Andrew | |
Rodolfo | |
(2) | |
Here is a snippet from a log file: |
View gist:e3d0a7902425efa1224211778adae7e0
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2.10.0a1 => 2.10 | |
================ | |
cisco.nso | |
community.digitalocean | |
community.docker | |
community.fortios | |
community.google | |
community.hashi_vault | |
community.hrobot |
View gist:f516f167a572231fa2a8bc5efec70c36
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@snake.key_map("<c-p>", mode=snake.INSERT_MODE) | |
def toggle_gutters_insert(): | |
"""Turn the gutters off in insert mode to make mouse selection easier""" | |
line_no_value = snake.get_option('nu') | |
signcolumn_value = snake.get_option('signcolumn') | |
if signcolumn_value != 'no' or line_no_value != '0': | |
snake.set_option('signcolumn=no') | |
snake.set_option('nonumber') | |
else: |
View gist:4448b01107da3bfbe0ebf2a5f383ad81
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[root@c2r-20220808100827 convert2rhel]# git diff | |
diff --git a/convert2rhel/unit_tests/conftest.py b/convert2rhel/unit_tests/conftest.py | |
index d608201..3652831 100644 | |
--- a/convert2rhel/unit_tests/conftest.py | |
+++ b/convert2rhel/unit_tests/conftest.py | |
@@ -118,7 +118,11 @@ def system_cert_with_target_path(monkeypatch, tmpdir, request): | |
https://docs.pytest.org/en/7.1.x/how-to/fixtures.html#using-markers-to-pass-data-to-fixtures | |
""" | |
- mark = request.node.get_closest_marker("cert_filename") |
View gist:2e6c53fb524d1a5f4a01109ce4e1c184
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import pytest | |
@pytest.fixture | |
def system_cert_with_target_path(request): | |
print(pytest.__version__) | |
print(request.node) | |
print(dir(request.node)) | |
if pytest.__version__.split('.') <= ('3', '6', '0'): | |
mark = request.node.get_marker("cert_filename") |
View gist:3b7a1cb42ae736cc9f25145969812817
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/convert2rhel/unit_tests/conftest.py b/convert2rhel/unit_tests/conftest.py | |
index 40ccf0b..acdd1d1 100644 | |
--- a/convert2rhel/unit_tests/conftest.py | |
+++ b/convert2rhel/unit_tests/conftest.py | |
@@ -82,8 +82,11 @@ def system_cert_with_target_path(monkeypatch, tmpdir, request): | |
.. seealso:: | |
https://docs.pytest.org/en/7.1.x/how-to/fixtures.html#using-markers-to-pass-data-to-fixtures | |
""" | |
+ if pytest.__version__.split('.') <= ('3', '6', '0'): | |
+ mark = request.node.get_marker("cert_filename") |
View gist:ea56e68798d792853315096017307077
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def obj_inspector(obj): | |
attributes = {} | |
functions = {} | |
special_functions = {} | |
for attribute_name in dir(obj): | |
attribute_value = getattr(obj, attribute_name) | |
attribute_category = attributes |
NewerOlder