- https://www.svipc.com/2024/09/24/upgrade-sonatype-nexus-3-from-3-70-x-to-3-71-x/
- https://repo1.maven.org/maven2/org/sonatype/nexus/plugins/nexus-repository-composer/
- https://help.sonatype.com/en/orientdb-downloads.html
- sonatype-nexus-community/nexus-repository-composer#157
- https://github.com/sonatype/nexus-public/releases?page=2
This repository provides a structured set of prompting rules to optimize interactions with Cursor AI. It includes three key files to guide the AI’s behavior across various coding tasks.
- Purpose: Establishes foundational rules for consistent AI behavior across all tasks.
- Usage: Place this file in your project’s
.cursor/rules/
folder to apply it persistently: - Save
core.md
under.cursor/rules/
in the workspace root.
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 | |
# | |
# Cursor IDE AppImage Launcher v0.3.0 | |
# | |
# Launches Cursor IDE with proper path handling and logging. | |
# | |
# 2025-03-01: Support for wait flag added. | |
# 2025-02-21: Created by monnef and Claude 3.6 Sonnet via Perplexity + AIlin and Cursor | |
# | |
# License: GPLv3 |
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
#!/bin/bash | |
## https://www.howtoforge.com/how-to-setup-mariadb-galera-cluster-on-ubuntu-20-04/ | |
## https://www.linkedin.com/pulse/setting-up-mariadb-galera-multi-node-cluster-ubuntu-2204-sahu-azrjc | |
## https://computingforgeeks.com/how-to-setup-mariadb-galera-cluster-on-ubuntu-with-haproxy/ | |
## https://mariadb.com/kb/en/mariadb-package-repository-setup-and-usage/ | |
## https://mariadb.com/kb/en/mariabackup-sst-method/ | |
## https://mariadb.com/kb/en/mariadb-package-repository-setup-and-usage/ | |
apt update |
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
#!/bin/bash | |
# See https://gist.github.com/bmaupin/87631863d55e2accc05ca7759247f887 | |
## https://knowledge.broadcom.com/external/article/41808/resolving-problems-installing-the-java.html | |
## https://www.oracle.com/java/technologies/javase-jce7-downloads.html | |
## https://repo.huaweicloud.com/java/jdk/7u80-b15/ | |
wget --no-cookies --no-check-certificate \ | |
--header "Cookie: gpw_e24=http%3A%2F%2Fwww.oracle.com%2F; oraclelicense=accept-securebackup-cookie" \ | |
-O jce_policy-8.zip http://download.oracle.com/otn-pub/java/jce/8/jce_policy-8.zip |
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
#!/bin/bash | |
# See https://rspamd.com/downloads.html | |
apt update | |
apt install -y sudo lsb-release wget gpg | |
CODENAME=$(lsb_release -c -s) | |
if [ $CODENAME = "trixie" ]; then | |
CODENAME="bookworm" | |
fi |
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
#!/bin/bash | |
# | |
## https://github.com/imapsync/imapsync/tree/master/INSTALL.d | |
## https://github.com/imapsync/imapsync/blob/master/INSTALL.d/Dockerfile | |
## https://raw.githubusercontent.com/imapsync/imapsync/master/imapsync | |
## https://www.managedserver.eu/how-to-migrate-emails-from-one-server-to-another-using-imapsync/ | |
apt update | |
apt install -y libauthen-ntlm-perl libcgi-pm-perl libcrypt-openssl-rsa-perl libdata-uniqid-perl libparse-recdescent-perl | |
apt install -y libencode-imaputf7-perl libfile-copy-recursive-perl libfile-tail-perl libio-compress-perl libio-socket-ssl-perl |
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
#!/bin/bash | |
## https://www.sogo.nu/download.html | |
## https://github.com/iigorr/sogo-puppet/blob/master/puppet/modules/sogo/files/sogo.nginx.conf | |
## https://linuxhostsupport.com/blog/how-to-install-sogo-on-ubuntu-20-04/ | |
## https://github.com/cha87de/sogo-docker/blob/master/config/nginx.conf.tmpl | |
## https://github.com/mailcow/mailcow-dockerized/issues/5411 | |
wget -O- "https://keys.openpgp.org/vks/v1/by-fingerprint/74FFC6D72B925A34B5D356BDF8A27B36A6E2EAE9" | gpg --dearmor >/etc/apt/trusted.gpg.d/sogo.gpg | |
apt update | |
apt install apt-transport-https |
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
#!/bin/bash | |
# | |
# https://www.howtoforge.com/how-to-install-powerdns-on-ubuntu-22-04/ | |
# https://www.cloudwizard.nl/powerdns-part-1-master-server-installation-ubuntu/ | |
# https://github.com/PowerDNS-Admin/PowerDNS-Admin/blob/master/docker-compose.yml | |
# https://github.com/PowerDNS-Admin/PowerDNS-Admin | |
# https://sempreupdate.com.br/linux/tutoriais/como-instalar-o-powerdns-e-o-powerdns-admin-no-ubuntu/ | |
# https://kifarunix.com/install-and-setup-powerdns-admin-on-ubuntu-22-04/ | |
# https://www.reddit.com/r/dns/comments/yzxk12/independent_powerdns_authoritative_and_two/ | |
# https://gist.github.com/maxivak/1daa03229493e22a7263c83dd52af76f (pdns-recursor) |
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
#!/bin/bash | |
# | |
# https://docs.gitea.com/ | |
# https://docs.gitea.com/usage/actions/act-runner | |
# https://dl.gitea.com/gitea/ | |
# https://dl.gitea.com/act_runner/ | |
# https://docs.gitea.com/administration/reverse-proxies | |
# https://www.rosehosting.com/blog/how-to-install-gitea-on-ubuntu-22-04/ | |
# https://hostnextra.com/learn/tutorials/how-to-install-gitea-on-ubuntu | |
# https://gist.github.com/MitchRatquest/dadc9484e07a627fa73b1c7bbcf609f4 |
NewerOlder