I hereby claim:
- I am ahmed-masud on github.
- I am ahmedmasud (https://keybase.io/ahmedmasud) on keybase.
- I have a public key ASDqGQr39qsDaccb1Jc8-ot0JYQhkluFL4QBnYAG82EOigo
To claim this, I am signing this object:
UID,Delete-to-Create Ratio,Threat | |
1786,0.44,False | |
9759,0.92,True | |
4120,0.56,False | |
4230,0.3,False | |
3025,0.18,False |
# Resiliate 1.0 | |
# Copyright (C) 2022 saf.ai, Inc. | |
# | |
# CEFS Loggin facility configuration manager for Resiliate | |
# | |
# See https://docs.saf.ai/ for more information. | |
# | |
# Introduction | |
# ============ | |
# The logging facility provides a way to direct various levels of |
/** | |
* MIT License | |
* Anton Valishin 2021 | |
* contains code parts from https://github.com/wasm-tool/rollup-plugin-rust | |
* | |
* usage: | |
* | |
* import init, {exported_func} from "$project/Cargo.toml" | |
* await init() | |
* exported_func() |
(() => { | |
const $followButtons = '[data-testid$="-unfollow"]'; | |
const $confirmButton = '[data-testid="confirmationSheetConfirm"]'; | |
const retry = { | |
count: 0, | |
limit: 3, | |
}; | |
const scrollToTheBottom = () => window.scrollTo(0, document.body.scrollHeight); |
nt bad() { | |
char *p = "hello world"; | |
p[5] = 'x'; // this line segfaults | |
puts(p); | |
} | |
void good() { | |
char a[] = "hello world"; | |
a[5] = 'x'; // this line does not | |
puts(a); |
int main() { | |
char *p = "hello world"; | |
char a[] = "hello world"; | |
// p[5] = 'x'; this line segfaults | |
a[5] = 'x'; // this line does not | |
} |
# remap prefix from 'C-b' to 'C-a' | |
unbind C-b | |
set-option -g prefix C-a | |
bind-key a send-prefix | |
# split panes using | and - | |
bind | split-window -h | |
bind - split-window -v | |
unbind '"' |
#include <unistd.h> | |
#define $ while | |
#define $$ strdup | |
#define f open | |
#define f_(x) x = $$(__FILE__) | |
#define uck sizeof(__FILE__) | |
#define fu(ck) do { char *_fu = ck; \ | |
$(*_fu) putchar(*_fu++); } $(0) | |
#define fuc read | |
#define F typeof |
I hereby claim:
To claim this, I am signing this object:
Open the debugger VM's .vmx file. delete the existing serial0 lines (used for printing, not needed) add these lines:
serial0.present = "TRUE"
serial0.pipe.endPoint = "client"
serial0.fileType = "pipe"
serial0.yieldOnMsrRead = "TRUE"
serial0.tryNoRxLoss = "FALSE"
serial0.startConnected = "TRUE"