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
# Set these options in your config.fish (if you want to :]) | |
# | |
# set -g theme_display_user yes | |
# set -g theme_hostname never | |
# set -g theme_hostname always | |
# set -g default_user your_normal_user | |
# Backward compatibility |
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 <string.h> | |
#include <unistd.h> | |
#include <stdio.h> | |
#include <sys/mman.h> | |
#include <stdlib.h> | |
unsigned char buf[40960]; | |
#define TARGET_FILE "/f1" | |
int main(int argc, char *argv[]) | |
{ | |
unsigned char *code = 0; |
NewerOlder