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 <stdio.h> | |
#include <string.h> | |
#include <time.h> | |
#include <stdlib.h> | |
#define NUM_ITERATIONS 10000 | |
// Function to remove lines starting with '!' | |
void remove_internal_headers(char *header, size_t len) { | |
char *read_ptr = header; |
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/bash | |
# Install Node.js repository | |
curl -fsSL https://deb.nodesource.com/setup_20.x | sudo -E bash - | |
# Install Node.js and NPM | |
sudo apt install -y nodejs | |
# Verify the installation | |
node -v |
OlderNewer