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> | |
char** list_filesystems(size_t* len){ | |
char buffer[1024]; | |
FILE* fs = fopen("/proc/filesystems","r"); | |
if(fs == NULL){ | |
perror("Failed to open file"); | |
} |
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 gi | |
gi.require_version("Gtk", "3.0") | |
from gi.repository import Gtk | |
import xml.etree.ElementTree as ET | |
def glade_loader(ctx, glade): | |
builder = Gtk.Builder() | |
builder.add_from_file(glade) |
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
#!/bin/sh | |
i=0 | |
sed \ | |
" | |
s/^ *//g | |
s/^\t*//g | |
s/,/,\n/g | |
s/{/\n&\n/g | |
s/}/\n&/g | |
s/\[/&\n/g |
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
#!/bin/sh | |
parse(){ | |
section="$1" | |
value="$2" | |
found="false" | |
while read line ; do | |
case $line in | |
[*) | |
if [ "$line" == "[$section]" ] ; then | |
found="true" |
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 subprocess | |
import json | |
users = [] | |
with open("spammer.txt", "r") as f: | |
users += f.read().split("\n") | |
process = subprocess.Popen( | |
["journalctl", "-f"], | |
stdout=subprocess.PIPE, |
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
#!/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 |
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
// 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>" |
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
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 |
OlderNewer