A list of code blocks from many languages to, for example, test a custom theme and see how it renders the code for each language.
#!/bin/bash| #include "helpers.h" | |
| #include <stdio.h> | |
| #include <math.h> | |
| // Convert image to grayscale | |
| void grayscale(int height, int width, RGBTRIPLE image[height][width]) | |
| { | |
| for (int i = 0; i < height; i++) | |
| { | |
| for (int j = 0; j < width; j++) |
| .table-wrapper { | |
| overflow: auto; | |
| padding-top: 10px; | |
| padding-bottom: 10px; | |
| } |
| #!/usr/bin/env bash | |
| check_connection() { | |
| PID=$(echo "$1" | awk '{print $1}') | |
| SOURCE=$(echo "$1" | awk '{print $2}') | |
| SOURCE_STATUS=$(curl --silent --fail "$SOURCE" --max-time 1 > /dev/null) | |
| # Status code returned when a timeout occurs | |
| if [[ $? -eq 28 ]]; then |
| variable "docker_password" {} | |
| data "kubernetes_all_namespaces" "allns" {} | |
| resource "kubernetes_secret" "docker_secrets" { | |
| for_each = toset(data.kubernetes_all_namespaces.allns.namespaces) | |
| metadata { | |
| name = "gitlab-cloud" | |
| namespace = each.value | |
| } |