ACHTUNG! WORK IN PROGRESS, USE AT YOUR OWN RISK AND DON'T RUN THE SCRIPT IN COMMENTS
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | shwget https://github.com/neovim/neovim/releases/download/v0.9.1/nvim-linux64.tar.gzACHTUNG! WORK IN PROGRESS, USE AT YOUR OWN RISK AND DON'T RUN THE SCRIPT IN COMMENTS
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | shwget https://github.com/neovim/neovim/releases/download/v0.9.1/nvim-linux64.tar.gzA script to generate a Doxyfile with call graphs , it needs to have installed doxygen and graphviz
Ensure you have the required dependencies installed:
# Example installation on Debian-based systemsYou will need your intra API keys secret and UID Follow the recomendations here:
https://api.intra.42.fr/apidoc/guides/getting_started
https://profile.intra.42.fr/oauth/applications/new
Hope it serves as inspiration for something cooler
You need the requests module
| /* ************************************************************************** */ | |
| /* */ | |
| /* ::: :::::::: */ | |
| /* bin.c :+: :+: :+: */ | |
| /* +:+ +:+ +:+ */ | |
| /* By: carlo <[email protected]> +#+ +:+ +#+ */ | |
| /* +#+#+#+#+#+ +#+ */ | |
| /* Created: 2023/01/28 14:47:40 by carlo #+# #+# */ | |
| /* Updated: 2023/01/28 14:47:42 by carlo ### ########.fr */ | |
| /* */ |
| FROM ubuntu:22.04 | |
| ENV DEBIAN_FRONTEND=noninteractive | |
| ENV NORM_VER 3.3.53 | |
| WORKDIR /home/root | |
| VOLUME /home/root | |
| RUN apt-get update -y && \ | |
| apt-get install -y lsb-release valgrind clang wget nano python3 \ |
add this lines somewhere on your ~/.zshrc
setopt EXTENDED_HISTORY
setopt HIST_EXPIRE_DUPS_FIRST
setopt HIST_IGNORE_DUPS
setopt HIST_IGNORE_ALL_DUPS
setopt HIST_IGNORE_SPACE
setopt HIST_FIND_NO_DUPS
setopt HIST_SAVE_NO_DUPS| /* Carlo Cattano - bitshifting experiments */ | |
| #include <unistd.h> | |
| #include <stdlib.h> | |
| #include <stdio.h> | |
| #define T_INTERVAL 30000 // 30 milliseconds | |
| void ft_putchar(char c) | |
| { | |
| write(1, &c, 1); |