View lcov.info
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
TN: | |
SF:src/container.mts | |
FN:1,__name | |
FN:25,dispose | |
FN:30,startContainer | |
FNF:3 | |
FNH:3 | |
FNDA:1,__name | |
FNDA:3,dispose | |
FNDA:1,startContainer |
View log_create_repository.txt
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
2022/03/15 10:26:47 Started POST /repo/create for 192.168.0.1:37778 | |
2022/03/15 10:26:47 Completed POST /repo/create 500 Internal Server Error in 63.108214ms | |
2022/03/15 10:26:47 ...ers/web/repo/repo.go:190:handleCreateError() [E] CreatePost: Error 1366: Incorrect string value: '\xF0\x9F\x9A\x97 D...' for column `gitea`.`repository`.`description` at row 1 |
View hs_err.log
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
# | |
# A fatal error has been detected by the Java Runtime Environment: | |
# | |
# EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x00007ffe967f54c2, pid=9672, tid=15388 | |
# | |
# JRE version: OpenJDK Runtime Environment Microsoft-28056 (17.0.1+12) (build 17.0.1+12-LTS) | |
# Java VM: OpenJDK 64-Bit Server VM Microsoft-28056 (17.0.1+12-LTS, mixed mode, tiered, compressed oops, compressed class ptrs, g1 gc, windows-amd64) | |
# Problematic frame: | |
# V [jvm.dll+0x2d54c2] | |
# |
View telegram.yml
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
- name: notify on failure | |
uses: appleboy/telegram-action@0.0.3 | |
if: job.status == 'failure' | |
with: | |
to: ${{ secrets.TELEGRAM_TO }} | |
token: ${{ secrets.TELEGRAM_TOKEN }} | |
args: Die Tests für {{ github.repository }} sind fehlgeschlagen! |
View show-temperatures.sh
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/sh | |
cpu=$(cat /sys/class/thermal/thermal_zone0/temp) | |
echo "GPU => $(vcgencmd measure_temp | cut -d '=' -f 2)" | |
echo "CPU => $((cpu/1000))'C" |
View Bundle.cs
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
using System.Collections.Generic; | |
/// <summary> | |
/// A bundle holds data that will be saved to disk later. | |
/// </summary> | |
public class Bundle | |
{ | |
#region Fields | |
private readonly Dictionary<string, object> _data; |
View update-phpMyAdmin.sh
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 | |
# Directories | |
BASE_PATH="/mnt/1TBHDD/www" | |
BACKUP_DIR="$BASE_PATH/backup" | |
DOCROOT="$BASE_PATH/docroot" | |
APP_DIR="$DOCROOT/phpmyadmin" | |
# Ask for the latest version | |
printf " > Enter the latest phpMyAdmin version: " |
View electron-window-manager-utils.coffee
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
# ------------------------------------------------- | |
# Modules | |
# | |
path = require 'path' | |
url = require 'url' | |
fs = require 'fs' | |
Menu = require('electron').Menu | |
# ------------------------------------------------- |
View cson.xml
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
<NotepadPlus> | |
<UserLang name="CSON" ext="cson" udlVersion="2.1"> | |
<Settings> | |
<Global caseIgnored="no" allowFoldOfComments="no" foldCompact="no" forcePureLC="0" decimalSeparator="0" /> | |
<Prefix Keywords1="no" Keywords2="no" Keywords3="no" Keywords4="no" Keywords5="no" Keywords6="no" Keywords7="no" Keywords8="no" /> | |
</Settings> | |
<KeywordLists> | |
<Keywords name="Comments">00# 01 02\n 03 04</Keywords> | |
<Keywords name="Numbers, prefix1"></Keywords> | |
<Keywords name="Numbers, prefix2"></Keywords> |
View .htaccess
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
RewriteEngine on | |
RewriteCond %{REQUEST_FILENAME} !-d | |
RewriteCond %{REQUEST_FILENAME}\.php -f | |
RewriteRule ^([^/]+)/?$ $1.php [L] | |
RewriteCond %{REQUEST_FILENAME} -d [OR] | |
RewriteCond %{REQUEST_FILENAME} -f | |
RewriteRule ^ - [L] |