- mailto:nathanjanke96@gmail.com
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
| .cds-modal-dialog.receipt-window { | |
| overflow-y: scroll; | |
| } | |
| .cds-modal-dialog.receipt-window .cds-modal-body { | |
| max-height: inherit !important; | |
| overflow-y: hidden !important; | |
| } |
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
| // define this before including httplib.h | |
| #define CPPHTTPLIB_OPENSSL_SUPPORT | |
| #include "path/to/httplib.h" | |
| // HTTPS client | |
| httplib::Client cli("https://gwapi.deviceworx.com"); | |
| // define the path to a CA bundle | |
| // this is where it is on ubuntu |
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
| Section "Device" | |
| Identifier "Configured Video Device" | |
| EndSection | |
| Section "Monitor" | |
| Identifier "Configured Monitor" | |
| HorizSync 30.0-62.0 | |
| VertRefresh 50.0-70.0 | |
| EndSection |
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
| """ | |
| Multi-test script | |
| """ | |
| import os | |
| import os.path as path | |
| import time | |
| from subprocess import run, PIPE | |
| from difflib import ndiff | |
| inputs_path = path.join(os.getcwd(), "inputs") |
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
| import sys | |
| import subprocess | |
| import time | |
| import io | |
| import socket | |
| # Name of the unix socket file to CONNECT to | |
| SOCKET_FILE = "daemon_sock.sock" | |
| def main(): |
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
| import sys | |
| import os | |
| import signal | |
| import socket | |
| from time import sleep | |
| # Name of the unix socket file to listen to | |
| SOCKET_FILE = "daemon_sock.sock" |
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
| ////////////////////////////////////////////////////////////////////////////////////// | |
| // Workspace Switch Notifier // | |
| // Shows a OSD with workspace name on workspace switching action // | |
| // // | |
| // wsn.c - // | |
| // // | |
| // Authors: // | |
| // Isaac Maia Pessoa // | |
| // // | |
| // This program is free software: you can redistribute it and/or modify it // |