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
[2024-06-04T11:21:39.048] [INFO] Transport.Transport - Transport initialized | |
RequestError: error.platform.unexpected (403): 'Received invalid error content from platform. Contact the platform team.' for POST /api/v1/Challenges at 2024-06-04T11:21:39.160Z | |
at RequestError.fromAxiosError (/usr/app/node_modules/@nmshd/transport/dist/core/backbone/RequestError.js:92:20) | |
at ChallengeClient.post (/usr/app/node_modules/@nmshd/transport/dist/core/backbone/RESTClient.js:256:53) | |
at process.processTicksAndRejections (node:internal/process/task_queues:95:5) | |
at async ChallengeClient.createChallenge (/usr/app/node_modules/@nmshd/transport/dist/modules/challenges/backbone/ChallengeClient.js:7:16) | |
at async ChallengeController.createAccountCreationChallenge (/usr/app/node_modules/@nmshd/transport/dist/modules/challenges/ChallengeController.js:72:35) | |
at async AccountController.createIdentityAndDevice (/usr/app/node_modules/@nmshd/transport/dist/modules/accounts/AccountController.js:209:33) | |
at async A |
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 python | |
import re | |
IGNORE_BEGINNING = True | |
allUppercase = re.compile(r'[A-ZÄÜÖ][A-ZÄÜÖ]+') | |
matchLetters = re.compile(r'[a-zäüößA-ZÄÜÖ]') | |
matchUCLetters = re.compile(r'[A-ZÄÜÖ]') |
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 python | |
import glob | |
import pathlib | |
import os | |
import os.path | |
import shutil | |
import sys | |
MCA_PATERN = 'r.*.*.mca' |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Test</title> | |
<script type="module"> | |
const ALL_SOURCES = { | |
'joypixels': 'https://cdn.jsdelivr.net/npm/emoji-picker-element-data@1.0.0/en/joypixels/data.json', | |
'iamcal': 'https://cdn.jsdelivr.net/npm/emoji-picker-element-data@1.0.0/en/iamcal/data.json', | |
'github': 'https://cdn.jsdelivr.net/npm/emoji-picker-element-data@1.0.0/en/github/data.json', | |
'emojibase-legacy': 'https://cdn.jsdelivr.net/npm/emoji-picker-element-data@1.0.0/en/emojibase-legacy/data.json', |
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
Alles in Docker | |
* Buildserver für BE, FE (nodeJs) | |
* nginx für FE | |
* nginx + nodeJs für BE | |
* postgres für DB |
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 | |
clear | |
echo "configure for my network settings" | |
netDev="wlp3s0" | |
netPrefix="192.168.0" | |
macNet="fritz" | |
shimDev="${macNet}0" | |
ipHost="35" |
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 | |
# An example hook script to verify what is about to be pushed. Called by "git | |
# push" after it has checked the remote status, but before anything has been | |
# pushed. If this script exits with a non-zero status nothing will be pushed. | |
# | |
# This hook is called with the following parameters: | |
# | |
# $1 -- Name of the remote to which the push is being done | |
# $2 -- URL to which the push is being done |
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
$ curl -X GET "http://localhost:3000/api/v1/repos/ber/test/commits/master/statuses" -H "accept: application/json" | |
[Macaron] 2018-04-23 15:55:59: Started GET /api/v1/repos/ber/test/commits/master/statuses for 172.25.0.1 | |
2018/04/23 15:55:59 [I] [SQL] SELECT `id`, `lower_name`, `name`, `full_name`, `email`, `keep_email_private`, `passwd`, `login_type`, `login_source`, `login_name`, `type`, `location`, `website`, `rands`, `salt`, `created_unix`, `updated_unix`, `last_login_unix`, `last_repo_visibility`, `max_repo_creation`, `is_active`, `is_admin`, `allow_git_hook`, `allow_import_local`, `allow_create_organization`, `prohibit_login`, `avatar`, `avatar_email`, `use_custom_avatar`, `num_followers`, `num_following`, `num_stars`, `num_repos`, `description`, `num_teams`, `num_members`, `diff_view_style` FROM `user` WHERE `id`=? LIMIT 1 []interface {}{1} | |
2018/04/23 15:55:59 [I] [SQL] SELECT `id`, `owner_id`, `lower_name`, `name`, `description`, `website`, `default_branch`, `num_watches`, `num_stars`, `num_forks`, `num_ |
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
<?php | |
/* This pluing allows you to login via URZ-LDAP-authentication | |
{ | |
//... | |
"AuthManagerAutoConfig": { | |
"primaryauth": { | |
"UrzLdap": { | |
"class": "UrzLdapPrimaryAuthenticationProvider", |
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
### SERVER.sh | |
PORT=9876 | |
DATA=/tmp/rand.data | |
SIZE=1M | |
while true | |
do | |
netcat -l $PORT < "$DATA" | |
dd if=/dev/urandom of="$DATA" bs=$SIZE count=1 |
NewerOlder