![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
github.com/purarue/server_clipboard
A server which saves my clipboard (in memory), so I can share it between my devices.
This has both a CLI interface and a web interface -- I use termux on my phone to communicate with my server (with server_clipboard <c|p>
(copy/paste)); On other devices I don't have a terminal on, this has a web interface at /
:
Install golang
(requires 1.18
+)
You can clone and run go build
, or:
go install -v "github.com/purarue/server_clipboard/cmd/server_clipboard@latest"
which downloads, builds and puts the binary on your $GOBIN
.
Run server_clipboard server
on a remote server somewhere, update your ~/.bashrc
/~/.zshenv
to include a password/remote address:
export CLIPBOARD_PASSWORD='i8nCzZnSY4hlHwUF9Ny15vqtPjfezpMHKZll0030Gn1p17Uiw7'
export CLIPBOARD_ADDRESS='http://mywebsite.com/clipboard'
NAME:
server_clipboard - share clipboard between devices using a server
USAGE:
server_clipboard [global options] command [command options] [arguments...]
COMMANDS:
server, s start server
copy, c copy to server clipboard
paste, p paste from server clipboard
help, h Shows a list of commands or help for one command
GLOBAL OPTIONS:
--port value, -p value port to listen on (default: 5025) [$CLIPBOARD_PORT]
--password value password to use [$CLIPBOARD_PASSWORD]
--server_address value server address to connect to (default: "localhost:5025") [$CLIPBOARD_ADDRESS]
--help, -h show help (default: false)
This automatically detects which operating system you're on and uses the corresponding clipboard commands, see clipboard.go
. If this can't, set the CLIPBOARD_COPY_COMMAND
and CLIPBOARD_PASTE_COMMAND
environment variables (those commands should read/write from/to STDIN/STDOUT)
If you want to clear the clipboard after a certain amount of time, you can use the --clear-after
flag. For example, to clear the clipboard after 10 minutes:
server_clipboard server --clear-after 600
FAQs
Unknown package
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.