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
| deb https://deb.debian.org/debian/ trixie contrib main non-free non-free-firmware | |
| # deb-src https://deb.debian.org/debian/ trixie contrib main non-free non-free-firmware | |
| deb https://deb.debian.org/debian/ trixie-updates contrib main non-free non-free-firmware | |
| # deb-src https://deb.debian.org/debian/ trixie-updates contrib main non-free non-free-firmware | |
| deb https://deb.debian.org/debian/ trixie-proposed-updates contrib main non-free non-free-firmware | |
| # deb-src https://deb.debian.org/debian/ trixie-proposed-updates contrib main non-free non-free-firmware | |
| deb https://deb.debian.org/debian/ trixie-backports contrib main non-free non-free-firmware |
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 | |
| """ | |
| License: MIT License | |
| Copyright (c) 2023 Miel Donkers | |
| Very simple HTTP server in python for logging requests | |
| Usage:: | |
| ./server.py [<port>] | |
| """ | |
| from http.server import BaseHTTPRequestHandler, HTTPServer |
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
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <string.h> | |
| #include <dlfcn.h> | |
| int main(int argc, char** argv) | |
| { | |
| void *handle; | |
| void (*func_print_name)(const char*); |