Gerekli paketleri yüklemek için:
apt install live-build xorriso mtools
Öncelikle profil oluşturmamız gereklidir.
#!/usr/bin/env python3 | |
import gi | |
import time | |
gi.require_version("Gtk", "3.0") | |
from gi.repository import Gtk, GLib | |
cur = int(time.time()*10**6) | |
diff_min = 10**6 |
! | |
!!! | |
" | |
"> | |
# | |
#$ | |
$ | |
$USER | |
% | |
& |
#include <QApplication> | |
#include <QMainWindow> | |
#include <QPalette> | |
#include <QTimer> | |
/* For compile: | |
g++ main.cpp -o lcd-fix $(pkg-config --cflags --libs Qt6Widgets Qt6Core Qt6Gui) -fPIC | |
*/ | |
static QMainWindow *mainWindow; |
dertlendinmi kafa dağıtma 31i | |
sıkılınca sıkıldım 31i | |
mutlu olunca keyif 31i | |
nedensiz çekilen 31 | |
azınca çekilen 31 | |
canın istemiyo olsa bile çekilen 31 | |
günaydın 31i | |
iyi geceler 31i | |
gece uyandım 31i | |
hasta olunca çekilen 31 |
// Apple garbage blocker | |
function isApple() { | |
return /iPhone/i.test(navigator.userAgent) | |
|| /Macintosh/i.test(navigator.userAgent) | |
|| /Mac OS X/i.test(navigator.userAgent) | |
|| /iPad/i.test(navigator.userAgent); | |
} | |
if(isApple()){ | |
document.body.innerHTML = "<h1 style='background: black; color:white;'>Apple Devices Are Not Allowed!</h1>" |
#!/bin/bash | |
export DEBIAN_FRONTEND=noninteractive | |
export DEBCONF_NONINTERACTIVE_SEEN=1 | |
export TERM=linux | |
if [ $$ -ne 1 ] ; then | |
set -e | |
apt update | |
apt install kexec-tools -yq | |
apt full-upgrade -yq --download-only | |
sync |
import subprocess | |
import json | |
users = [] | |
with open("spammer.txt", "r") as f: | |
users += f.read().split("\n") | |
process = subprocess.Popen( | |
["journalctl", "-f"], | |
stdout=subprocess.PIPE, |
#!/bin/sh | |
parse(){ | |
section="$1" | |
value="$2" | |
found="false" | |
while read line ; do | |
case $line in | |
[*) | |
if [ "$line" == "[$section]" ] ; then | |
found="true" |