HackerTrans
TopNewTrendsCommentsPastAskShowJobs

noboruma

no profile record

Submissions

Remote Clipboard via Curl

softweavers.net
2 points·by noboruma·last month·1 comments

Text Extraction from Images via Curl

softweavers.net
1 points·by noboruma·2 months ago·1 comments

Go-msquic: v0.11 is out

3 points·by noboruma·last year·0 comments

S1h: SSH and scp and passwords manager unified in one simple CLI

github.com
2 points·by noboruma·last year·1 comments

Go-msquic: A new QUIC/HTTP3 library for Go

github.com
87 points·by noboruma·last year·26 comments

Critical Analysis of Agentless Vulnerability Scans in Cloud Environments

deepfence.io
2 points·by noboruma·2 years ago·0 comments

comments

noboruma
·last month·discuss
Hello everyone,

A couple of years back, I created: https://github.com/noboruma/rclip A small CLI tool to copy/paste content from different machines using a unique identifier. But I realized how painful this was to setup and ended up using it less and less over time. If you are on a docker image or a small machine, chances are you will have curl. So I created a small online service instead.

Usage is simple, you can copy something doing: ``` $ curl https://rc.softweavers.net/aAbCdD -F copy="my stuff" ``` And then paste from anywhere with internet access: ``` curl https://rc.softweavers.net/aAbCdD ```

Nothing ground breaking but the solutions we see outside are usually not developer friendly and super opaque when it comes to how the data is being stored and used. Here the solution I am proposing is all RAM based, no persistence, no analysis guaranteed.

Disclaimer: I am proposing paid subscriptions for heavy users
noboruma
·2 months ago·discuss
Hello everyone,

I created a small service to extract text from images (OCR) from the command line.

The service is mostly focusing on extracting text from screenshots.

If you have colleagues who can't copy/paste terminal output in plain text but always send your screenshots, this service is for you!

Simply use it like:

curl https://i2t.softweavers.net -F image=@/your/image

Disclaimer: I propose subscriptions for heavy users. Please feel free to check out: https://softweavers.net/image-to-text.html
noboruma
·last year·discuss
Hello everyone, I use ssh a lot, and I have a mixture of passwords & private key, which is a pain to work with. To solve that pain point, I created this tool called s1h inspired by k9s. Hope you find it useful as well!
noboruma
·last year·discuss
Most of the benchmarks comparing msquic with other libraries are showing it on top.

That's the reason we decided to go ahead and see how it performs within our Go lang code base.

On our setup we are seeing a 50% latency reduction compared with other implementations. Definitely worth a try if you are looking for performance.
noboruma
·last year·discuss
Never claimed the library to be full Go implementation, it is a library for Go. If you want a pure Go implementation, it already exists: quic-go.

It is mentioned & advised to use that one in the README. However if you need more perf, you might want to give a try at go-msquic.
noboruma
·last year·discuss
msquic is one of the most performant QUIC protocol library out there. go-msquic is a wrapper around msquic so you can use it inside your Go project.

https://github.com/noboruma/go-msquic

The project is quite new, but we have seen good performance results with it so far. PRs are welcome!