Base URL: https://flathub.org/api/v2
- GET
/developer
Returns a list of developers.
#!/usr/bin/env python3 | |
import sys | |
import gi | |
from gi.repository import GLib | |
import dbus | |
from dbus.mainloop.glib import DBusGMainLoop | |
token = "" | |
id = "" |
#!/bin/sh | |
# minimal getty like script | |
# speed ignored. | |
# bgetty 38400 tty1 /bin/login | |
if [ $# -lt 3 ] ; then | |
echo "Usage: $0 [speed] [tty] [command]" | |
exit 1 | |
fi | |
exec >/dev/$2 | |
exec </dev/$2 |
#!/usr/bin/python3 | |
from Xlib import X, display | |
from Xlib import Xatom | |
class SimpleWindowManager: | |
def __init__(self): | |
self.display = display.Display() | |
self.root = self.display.screen().root | |
self.displayWidth = self.display.screen().width_in_pixels |
#!/bin/bash | |
{ | |
echo -ne "HTTP 1.1 200 OK\n\r" | |
echo -ne "Content-type: text/event-stream\n\n" | |
cat | |
} | busybox nc -l -p 8000 |
0.0.0.0 0000a3-1.l.windowsupdate.com | |
0.0.0.0 000a55-1.l.windowsupdate.com | |
0.0.0.0 000a56-1.l.windowsupdate.com | |
0.0.0.0 000a60-1.l.windowsupdate.com | |
0.0.0.0 000afa-1.l.windowsupdate.com | |
0.0.0.0 000b3d-1.l.windowsupdate.com | |
0.0.0.0 000b25-1.l.windowsupdate.com | |
0.0.0.0 000b62-1.l.windowsupdate.com | |
0.0.0.0 0b66ee6159468fcd4bf15132fbbcc861.clo.footprintdns.com | |
0.0.0.0 000b78-1.l.windowsupdate.com |
#define _GNU_SOURCE | |
#include <sched.h> | |
#include <unistd.h> | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <sys/mount.h> | |
#include <errno.h> | |
#include <sys/types.h> | |
#include <sys/wait.h> | |
#include <security/pam_appl.h> |
#include <stdio.h> | |
#include <string.h> | |
#include <stdlib.h> | |
void parse(char* in); | |
void main(){ | |
char* in="12+(13-22)+(2-4/(33-456))"; | |
parse(in); | |
} |
#!/usr/bin/env python3 | |
import gi | |
# gtk import | |
gi.require_version("Gtk", "3.0") | |
from gi.repository import Gtk, GLib | |
# thread import | |
import threading | |
# for sleep |
#!/bin/bash | |
if [[ $UID -ne 0 ]] ; then | |
echo "You must be root!" | |
exit 1 | |
fi | |
apt update | |
apt install git make rdfind -yq | |
if [[ ! -d firmware ]] ; then | |
git clone https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git firmware --depth=1 | |
fi |