Project Name: Sudoc
Primary License: GNU Affero General Public License v3.0 (AGPL-3.0)
Organization: OSN Developers
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
# Run the following command to import the GPG keys: wget -qO - https://discordpkg.onrender.com/packages/public.key | sudo gpg --no-default-keyring --keyring gnupg-ring:/etc/apt/trusted.gpg.d/osn.gpg --import - | |
deb https://discordpkg.onrender.com/packages stable main |
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
/* | |
* server.s -- a simple HTTP server written in pure stanalone x86_64 linux assembly. | |
* This program does not depend on any library or runtime, including libc. | |
* | |
* Copyright (C) 2023 Ar Rakin. | |
*/ | |
.equ SYS_SOCKET, 41 | |
.equ SYS_CLOSE, 3 | |
.equ SYS_BIND, 49 |
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
.data | |
str: .string "Hi world, my name is: %s KEKW\n" | |
str2: .string "Rakin" | |
.text | |
.globl _start | |
_start: | |
movq $str, %rdi | |
movq $str2, %rsi |
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
/* GNU-style echo command program */ | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#ifdef _HAVE_STDBOOL_H | |
#include <stdbool.h> | |
#else | |
typedef enum { |