Encryption
openssl aes-256-cbc -in attack-plan.txt -out message.enc
Decryption:
openssl aes-256-cbc -d -in message.enc -out plain-text.txt
function makee() { | |
make $@ 2>&1 | grep -v AVERTISSEMENT | |
} |
user nginx; | |
worker_processes 1; | |
error_log /var/log/nginx/error.log warn; | |
pid /var/run/nginx.pid; | |
events { | |
worker_connections 1024; | |
} |
Get OpenGL information for the graphics processor
glxinfo
lscpi
lspci | grep VGA
function slug() { | |
echo "$1" | sed "s/\s/-/g" | tr "[:upper:]" "[:lower:]" | |
} | |
slug "Hello World!" |
#include <vector> | |
#include <chrono> | |
#include <iostream> | |
using namespace std; | |
int main() { | |
int n = 1000000; | |
int value = 42; | |
vector<int> vec(n, value); |
#include <math.h> | |
#include <stdlib.h> | |
#include <stdio.h> | |
#include <omp.h> | |
#define N 1000000 | |
// Compare 3/2 power calculation |
[GlusterFS Daemon] | |
title=GlusterFS (Daemon) | |
description=GlusterFS Daemon | |
ports=24007/tcp | |
[GlusterFS Management] | |
title=GlusterFS (Management) | |
description=GlusterFS Management | |
ports=24008/tcp |
[Docker Swarm] | |
title=Docker Swarm | |
description=Docker Swarm | |
ports=2377/udp|7946/tcp|7946/udp|4789/udp |
#include <GLFW/glfw3.h> | |
int main(void) | |
{ | |
GLFWwindow* window; | |
/* Initialize the library */ | |
if (!glfwInit()) | |
return -1; |