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 | |
# Demoscript erzeugt mit Github Copilot, vergleiche https://youtu.be/CMB1HEr5MnM | |
# Ist auch durchaus verwendbar. :-) | |
function usage() { | |
cat <<EOF | |
Verwendung: $0 [-h] [-l] [-v] [tag] | |
Führt einen Build / ein Deployment mit einem für das aktuelle Verzeichnis konfigurierten Befehle aus. | |
Der Script sucht nach einer Konfigurationsdatei mit dem Namen .deploycmds im aktuellen Verzeichnis |
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
/* jshint -W028 */ | |
// bookmarklets to summarize the shown webpage. | |
// replace XXXInsertAPIKeyHereXXX with your API key to use these bookmarklets. | |
// this summarizes the text on the page. (We might have to cut it down to 3000 words, because the API has a limit of 3000 words.) | |
javascript:(async () => { | |
var apikey = "XXXInsertAPIKeyHereXXX"; | |
const maxwordcount = 2500; | |
try { |
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
// see also https://platform.openai.com/playground?mode=complete | |
// command line example: | |
// node suggestCommand.js "Write a bash command line to do the following: log the last 3 git commits" | |
// Needs an API key in ~/.openaiapi , see https://beta.openai.com/docs/api-reference/authentication | |
// Idea for a shellscript calling that. You could also add things to the prompt there. | |
// #!/bin/bash | |
// node "$(dirname "$(readlink -f "$0")")/suggestCommand.js" "$*" | |
const axios = require('axios'); | |
const fs = require('fs'); |
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
/** | |
* This is a servlet that enables to download a package of a JCR subtree without | |
* having to create a package in the package manager. The package is | |
* created on the fly, and not saved to disk / the repository, so this is | |
* better suited to large content trees, but valuable also for quickly downloading | |
* a page. | |
* | |
* CAUTION: not suitable for production, only for internal testing systems! | |
* | |
* Usage with curl e.g. |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
package net.stoerr.testing; | |
import java.io.UnsupportedEncodingException; | |
import java.util.ArrayList; | |
import java.util.List; | |
/** | |
* Returns a couple of teststrings to detect character escaping problems. This file encodes all chars numerically to | |
* make sure we are independent of the encoding of this file. Caution: this currently covers only relatively common | |
* stuff - it does not yet lead into the deeper realms of UTF like substitutes, right to left, Kanji, characters |
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
import javax.annotation.Nonnull; | |
import java.util.Objects; | |
import java.util.concurrent.locks.Lock; | |
/** | |
* Allows using a {@link java.util.concurrent.locks.Lock} with a try with resources, e.g.: | |
* <code> try (LockAsAutoCloseable locked = LockAsAutoCloseable.lock(lock)) { ... } </code> . | |
*/ | |
@SuppressWarnings("LockAcquiredButNotSafelyReleased") | |
public class LockAsAutoCloseable implements AutoCloseable { |
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
<%@ page language="java" contentType="text/html; charset=ISO-8859-1" | |
pageEncoding="ISO-8859-1"%> | |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
<%-- | |
This JSP lists all threads with stati as configured in a checklist, optionally whose names match a specified regex. | |
If two threads have the same stacktrace, they are shown together and the stacktrace is printed only once. | |
--%> | |
<%@page import="java.util.*"%> | |
<%@page import="javax.servlet.*"%> | |
<%@page import="java.io.*"%> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
NewerOlder