| Date | Bench Press | Strict Press | Back Squat | Deadlift |
|---|---|---|---|---|
| 2021/04/02 | 120x5,5,6 | 195x5,5,10 | ||
| 2021/03/31 | 180x5,5,12 | 265x10 | ||
| 2021/03/29 | 115x5,5,7 | 190x5,5,10 | ||
| 2021/03/26 | N/A | N/A | N/A | N/A |
| 2021/03/24 | 175x5,5,8 | 255x10 | ||
| 2021/03/22 | 110x5,5,8 | 185x5,5,10 |
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
| 14:06:40.906 DEBUG wezterm_font::shaper::harfbuzz > cluster_resolver: ClusterResolver { | |
| map: { | |
| 5: ClusterInfo { | |
| start: 5, | |
| byte_len: 1, | |
| cell_width: 1, | |
| incomplete: false, | |
| }, | |
| 2: ClusterInfo { | |
| start: 2, |
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
| #!/usr/bin/env python3 | |
| import os | |
| import mutagen.id3 | |
| import unicodedata | |
| import re | |
| import errno | |
| from shutil import copyfile | |
| OUTPUT_FILENAMES = set() |
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
| #!/usr/bin/env bash | |
| function yell () { >&2 echo "$*"; } | |
| function die () { yell "$*"; exit 1; } | |
| function try () { "$@" || die "Command failed: $*"; } | |
| script_path="$( realpath "$0" )" | |
| script_dir="$( dirname "$script_path" )" |
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 "queue.h" | |
| #include <stdio.h> | |
| #define UNUSED(x) ((void)(x)) | |
| void string_print_callback(void *item) { | |
| const char *str = item; | |
| printf("%s", str); | |
| } |
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 <curses.h> | |
| #include <mpd/client.h> | |
| #include <stdlib.h> | |
| #include <sys/epoll.h> | |
| #include <unistd.h> | |
| #define MAX_EVENTS 10 | |
| void | |
| toggle_play_pause(struct mpd_connection *mpd_conn) { |
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
| FROM centos:latest | |
| RUN groupadd -r -g 1001 john && \ | |
| groupadd -r -g 1050 myapp && \ | |
| useradd -rM -g john -G myapp -u 1001 john && \ | |
| mkdir -p /var/john && \ | |
| chown -R john:john /var/john | |
| USER john:john |
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
| [H[2J | |
| [1;32m | |
| __ __ __ __ _ _ __ _____ ____ ______ __ | |
| | \\ / | / \\ | \\ | | | | / \\ | _ \\ / __ \\ | || | | |
| | \\/ | / /\\ \\ | | \\ | | | | / /\\ \\ | |_| / / / \\ \\ | ___|| | | |
| | |\\__/| |/ ____ \\| |\\ \\| |_ | |/ ____ \\ | __ \\ / / \\ \\ | | __ | | | |
| | | | | / \\ \\ | \\ \\ | \\_/ / / \\ \\| | \\ \\\\ \\____/ / | || || | | |
| |_| |_|/ \\_\\| \\__|\\___/_/ \\_\\_| \\_\\\\______/ |__||__||__| | |
| [1;36mManjaro Linux \r |
NewerOlder