- 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
#!/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
#!/usr/bin/env python3 | |
""" | |
Dell iDRAC client launcher for Linux, macOS and Windows. | |
probably works with Dell iDRAC 6/7/8 | |
Downloads needed Java files and sets up port forwarding via SSH. | |
example usage: ./idracclient.py -J jumphost.lol.domain srv42-serviceprocessor.lol.domain | |
for more info, see ./idracclient.py --help |
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 | |
## Install Debian/Ubuntu | |
## From https://pastebin.com/wEvpW0rg | |
## https://github.com/RedScourge | |
## https://github.com/drud/ddev/issues/1714#issuecomment-532015204 | |
## https://github.com/shivammathur/php5-ubuntu | |
## https://launchpad.net/~sergey-dryabzhinsky/+archive/ubuntu/php53 | |
## https://github.com/zener05/debian-stretch-php-5-3 | |
## https://github.com/phpbrew/phpbrew |
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 | |
## Install DBD::Oracle on Debian 12 | |
## DBD::Oracle on Debian 12 | |
## Link on http://www.oracle.com/technetwork/topics/linuxsoft-082809.html | |
## https://www.oracle.com/database/technologies/instant-client/linux-x86-64-downloads.html | |
## https://yum.oracle.com/repo/OracleLinux/OL7/oracle/instantclient/x86_64/index.html | |
## 2024/04/18, version *19.23.0.0.0-1* | |
## Install require package |
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 | |
## Install Goland 2024.1 on Ubuntu 22.04 | |
wget https://download.jetbrains.com/go/goland-2024.1.tar.gz | |
tar xvz goland-2024.1.tar.gz | |
mv GoLand-2024.1 /opt/GoLand | |
cat <<'EOF' >/usr/share/applications/goland.desktop | |
[Desktop Entry] | |
Encoding=UTF-8 |
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
package main | |
import ( | |
"fmt" | |
"io" | |
"io/ioutil" | |
"net" | |
"os" | |
"strings" |
NewerOlder