Name | Best | Average | Worst | Memory | Stable | Method | Other Notes |
---|---|---|---|---|---|---|---|
Quicksort | No | Partitioning | Quicksort is usually done in-place with |
||||
Merge sort | $\textcolor{lime}{\large n \log n |
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
# ~/.local/share/xfce4/terminal/colorschemes/neondusk.theme | |
[Scheme] | |
Name=NeonDusk | |
ColorForeground=#86c9ee | |
ColorBackground=#050215 | |
ColorCursor=#86c9ee | |
ColorPalette=#050215;#C74664;#28189C;#4231D2;#2D54FD;#B53CAA;#E05C9A;#86c9ee;#5d8ca6;#C74664;#28189C;#4231D2;#2D54FD;#B53CAA;#E05C9A;#86c9ee |
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
# ~/.config/starship.toml | |
# Starship Config File | |
# Text Mode | |
# ~/.config/starship.toml | |
######################################## | |
# Custom Module Template | |
######################################## |
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 | |
# Git hook script to force GIT PUSH for | |
# all remotes configured in the local repository. | |
# Name as "pre-push" and place in the ".git/hooks" folder of the repository. | |
# Need to give execute permission to the file: chmod +x .git/hooks/pre-push | |
for remote in `git remote`; do | |
if [ $remote != "origin" ]; then | |
echo "GitHook pre-push triggered: Pushing commits to all remotes"; |
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
#!/usr/bin/env python3.8 | |
# python3.8 script_clone.py | |
#Modules Import | |
import math | |
import os | |
import requests | |
import sys |
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
<html><head> | |
<meta http-equiv="content-type" content="text/html; charset=UTF-8"> | |
<title>Syscall x86 Linux ASM</title> | |
<!-- Require Web Access to Download the Bootstrap Libs--> | |
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1" crossorigin="anonymous"> | |
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-ygbV9kiqUc6oa4msXn9868pTtWMgiQaeYH7/t7LECLbyPA2x65Kgf80OJFdroafW" crossorigin="anonymous"></script> | |
</head> | |
<body class="bg-dark"> |
Extracted from W3Challs Syscalls
# | Name | eax | ebx | ecx | edx | esi | edi | ebp | Definition |
---|---|---|---|---|---|---|---|---|---|
0 | restart_syscall | 0x00 | - | - | - | - | - | - | kernel/signal.c:2501 |
1 | exit | 0x01 | int error_code | - | - | - | - | - | kernel/exit.c:1095 |
2 | fork | 0x02 | - | - | - | - | - | - | arch/x86/kernel/process.c:271 |
3 | read | 0x03 | unsigned int fd | char *buf | size_t count | - | - | - | fs/read_write.c:460 |
NewerOlder