This file contains hidden or 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
__NV_PRIME_RENDER_OFFLOAD=1 __GLX_VENDOR_LIBRARY_NAME=nvidia QT_DEVICE_PIXEL_RATIO=2 QT_AUTO_SCREEN_SCALE_FACTOR=true /opt/resolve/bin/resolve |
This file contains hidden or 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
# Create Dataframe with fake data | |
df = pd.util.testing.makeMissingDataframe() | |
df['index1'] = df.index # create a text column by replicating index | |
df['A'] = 0 # create a zero column | |
# Helper function | |
def check_df_sanity(df, verbose=False): | |
"""Perform usual types and values checks on columns of a pandas.DataFrame""" | |
for col in df: |
This file contains hidden or 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
#!/usr/bin/env python3 | |
# © Aurélien PIERRE - 2022 | |
# Licensed under the terms of the Do What the Fuck You Want to Public License (WTFPL) | |
import os | |
import re | |
""" | |
Step 1: gather GUI labels and module names from source code, |
OlderNewer