This file contains 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
// Online C++ compiler to run C++ program online | |
#include <cstdio> | |
#include <vector> | |
#include <inttypes.h> | |
#include <cstdbool> | |
using std::vector; | |
int_fast32_t prime(int_fast32_t num_k, vector<int_fast32_t> &arr); |
This file contains 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 | |
$(which mount) -t ntfs3 "$@" |
This file contains 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 <iostream> | |
#include <algorithm> | |
#include <cmath> | |
#include <cstdlib> | |
#include <format> | |
int main() { | |
std::ios_base::sync_with_stdio(false); | |
std::cout << "Irrashai, inputnya dipisah spasi ya ~ " << std::endl; | |
std::cout << "Maksimum 255 bilangan bulat positif rentang 1 <= 255" << std::endl; |
This file contains 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 <windows.h> | |
int main(void) | |
{ | |
// I don't realize this lmao until i see KernelBase.dll | |
WriteFile(UlongToHandle(STD_OUTPUT_HANDLE), "Hello, world!\n", 14, NULL, NULL); | |
/* | |
* NtWriteFile(NtCurrentPeb()->ProcessParameter->StandardOutput, | |
* NULL, | |
* NULL, |
This file contains 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
extern WriteFile | |
extern ExitProcess | |
section .rdata | |
szText db `Hello, world!\n\0` | |
cbLength equ $szText-1 | |
section .text | |
global start | |
start: | |
sub rsp, 40 ; |
This file contains 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
pylint: | |
disable: | |
- line-too-long | |
- multiple-imports | |
- pointless-string-statement | |
- too-many-nested-blocks |
This file contains 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 <liburing.h> | |
#include <stdio.h> | |
#include <unistd.h> | |
#include <wchar.h> | |
int main(void) | |
{ | |
struct io_uring ring; | |
io_uring_queue_init(1, &ring, 0); |