There are three actions to get Flatpak Evolution in full dark mode.
flatpak override --user --env=GTK_THEME=Adwaita:dark org.gnome.Evolution
| #!/usr/bin/env python3 | |
| """ | |
| JupyterLab Terminal Tmux Manager. | |
| This script provides multiple ways to interact with JupyterLab terminals: | |
| 1. Tmux Orchestrator: Launches a tmux session where each window is connected to | |
| an active JupyterHub terminal. Inside tmux, 'c' creates a new remote terminal. | |
| 2. One-shot Execution: Creates a temporary terminal to run a single command | |
| (passed as an argument or piped) and prints the output. | |
| 3. Terminal Listing: Lists all active terminals and their last activity. |
| #!/usr/bin/env python3 | |
| """ | |
| Script to identify all <repository> and <pluginRepository> in a Maven dependency tree. | |
| Usage: | |
| python maven_repo_finder.py <pom.xml or directory> | |
| Author: Martin Monperrus | |
| """ |
| WeChat - The new way to connect | |
| WECHAT PRIVACY POLICY | |
| Last Updated: 2025-12-18 | |
| SUMMARY | |
| Thank you for using WeChat! We respect your concerns about privacy and appreciate your trust and confidence in us. |
| --- | |
| author: Martin Monperrus | |
| date: "KTH & mab.xyz" | |
| paging: "%d/%d" | |
| --- | |
| # Software Supply Chain Security of Web3 | |
| ## **Martin Monperrus** | |
| ### Professor, IEEE Fellow | |
| ### KTH Royal Institute of Technology & mab.xyz |
| { | |
| "status": "DANGEROUS", | |
| "details": [ | |
| { | |
| "address": "0x91480c26C598CD8231951Fc9beE6e48DE2Fb683F", | |
| "first_time": true, | |
| "verification": { | |
| "address": "0x91480c26c598cd8231951fc9bee6e48de2fb683f", | |
| "verification": "verified", | |
| "verifiedAt": "N/A", |
| { | |
| "status": "DANGEROUS", | |
| "details": [ | |
| { | |
| "address": "0x91480c26C598CD8231951Fc9beE6e48DE2Fb683F", | |
| "first_time": true, | |
| "verification": { | |
| "address": "0x91480c26c598cd8231951fc9bee6e48de2fb683f", | |
| "verification": "verified", | |
| "verifiedAt": "N/A", |
| contract Challenge04 { | |
| struct Data { | |
| bytes32 tx_challenge01; | |
| bytes32 tx_challenge02; | |
| address contract_challenge03; | |
| address contract_challenge04; | |
| } | |
| mapping(address => Data) public data; |
| Immunefi -- Security Researchers Terms & Conditions (Clickwrap | |
| Agreement) | |
| As a condition of your participation in Immunefi's Bug Bounty Programs, | |
| including the submission of bug reports, you agree to be bound by the | |
| following terms and conditions. If you do not agree to these terms and | |
| conditions you should not submit any bug report or access the Immunefi | |
| Platform for any purpose. | |
| 1. Definitions |
| import random | |
| def get_random_color_code(): | |
| """Generate a random ANSI color code between 31-36 (red, green, | |
| yellow, blue, magenta, cyan)""" | |
| return random.randint(31, 36) | |
| def colorize_text(text, color_code): | |
| """Apply ANSI color code to text""" | |
| return f"\033[{color_code}m{text}\033[0m" |