This file contains 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 <raylib.h> | |
#define FPS 30 // Frames per second | |
// GLOBAL VARIABLES | |
float TICK_RATE = 0.01; | |
float TICK_TIME = 0; | |
int DRAWS = 0; | |
int UPDATES = 0; | |
int KEYPRSS_COUNTER = 0; |
This file contains 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
FROM debian:bookworm as pcdparser-builder | |
RUN apt-get update | |
RUN apt-get install -y git | |
RUN apt-get install -y build-essential | |
RUN apt-get install -y bison flex libncurses-dev | |
RUN git clone https://github.com/meetrp/pcd.git /pcd | |
WORKDIR /pcd |
This file contains 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
#!/usr/bin/env bash | |
# Runs a command wrapped in btrfs snapper pre-post snapshots. | |
# Usage: $ snp <commands> | |
# e.g.: $ snp pacman -Syyu | |
log_path="/var/local/log/snp" | |
date=$(date "+%Y-%m-%d-%H%M%S") | |
log_file="${log_path}/snp_${date}.log" | |
! [ -d $log_path ] && mkdir -p $log_path |
This file contains 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 | |
user=manolis | |
backups=/home/manolis/backups | |
if [[ $EUID > 0 ]] | |
then echo "Please run as root" | |
exit | |
fi |
This file contains 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
#!/usr/bin/perl -w | |
# eLOC - Effective Lines of Code Counter | |
# JFS (2005) | |
# | |
use strict; | |
use warnings; | |
use sigtrap; | |
use diagnostics; | |
use warnings::register; |