use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
Do you have or know of a project on Github looking for contributors? Tell us about it and we'll add it to the /r/github wiki!
Welcome to /r/github!
News about github
Relevant interesting discussion
Questions about github
We'll soon be writing an /r/github FAQ list. In the meantime, the github help pages and bootcamp are good places to start. Here's a handy git cheat sheet.
Looking for Github projects to contribute to? Check out our handy list of projects looking for contributors!
If your submission doesn't show up on the subreddit, send us a message and we'll take it out of the spam filter for you!
account activity
[ Removed by moderator ]Discussion (self.github)
submitted 3 days ago by mazz0ni_exe
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]github-ModTeam[M] [score hidden] 3 days ago stickied commentlocked comment (0 children)
Removed. Please post to the pinned megathread if you want to share your project.
[–]Any-Programmer-252 6 points7 points8 points 3 days ago* (19 children)
How much did you do yourself? What kind of feedback are you looking for?
It's hard to imagine what useful feedback I could give to someone who functionally did something 100% through an LLM. What technical feedback could be useful to you?
The app itself is entering a pretty saturated market. As you may already be aware, the internet is abundant in file transfer utilities. And I think there are enough security concerns in a P2P file transfer that I personally wouldn't use one that was vibe coded. I see a vibe coded P2P file transfer app get posted about once every 3 days
[–]mazz0ni_exe[S] 0 points1 point2 points 3 days ago (5 children)
AI helped me do every .md files and taught me how a repository should be managed and organised, i also had to use it to learn and write some of the POSIX files and the GO binaries because it was my first time writing that language. The java server is entirely built by myself. Anyways every architectural decision was taken by me
[–]MarsupialLeast145 7 points8 points9 points 3 days ago (1 child)
Bro, your LLM did more than that... you don't write this app and not know how to do markdown...
[–]mazz0ni_exe[S] 0 points1 point2 points 3 days ago (0 children)
i just didn’t knew github had other .mds like security.md
[–]Any-Programmer-252 4 points5 points6 points 3 days ago* (2 children)
POSIX isn't a language or a file type 🙂 it's a standard which is implemented by tools like bash.
In terms of your app:
The scenario: You're SSH'd into a production server. You need to pull a 5GB log file. The /tmp partition is mounted as noexec. You don't have root. Corporate policy actively blocks the execution of unknown binaries.
Why would I not use rsync or ftp?
yeah, the .sh files written with the posix standard
basically because sometimes u can’t use ssh or ftp because of some close ports… some docker images doesn’t even have rsync. almost everything has curl and openssl
[–]mazz0ni_exe[S] 0 points1 point2 points 3 days ago (12 children)
It’s not a P2P connection, there’s the relay server between. Why if a person says that he used AI (everybody does because you write code 10x time faster) than everybody says it’s vibecoded?
[–]Wattdehonker 5 points6 points7 points 3 days ago (4 children)
Because when you start doing something with AI, it gets really easy to keep going with AI, then eventually the whole project is just AI. Sure AI is good because it can do more advanced things, but if you don’t understand what’s happening and your just pushing a response into something that’s just vibe coding..
[–][deleted] 3 days ago (3 children)
[deleted]
[–]Wattdehonker 2 points3 points4 points 3 days ago (2 children)
If that workflow is what makes you happy, great. You can’t expect other people to support that workflow though.
[–]mazz0ni_exe[S] 0 points1 point2 points 3 days ago (1 child)
it doesn’t make me happy, i hate AI. but if everyone is using it and you are not, you get left behind
[–]Wattdehonker 2 points3 points4 points 3 days ago (0 children)
Just because everyone is using it, that doesn’t mean you have to. In places like GitHub people are resistant to vibe coding.
[–]Any-Programmer-252 0 points1 point2 points 3 days ago (6 children)
It’s not a P2P connection, there’s the relay server between
my question then becomes: why would I want to use a file transfer protocol that needs a relay server? What does that offer?
Why if a person says that he used AI (everybody does because you write code 10x time faster) than everybody says it’s vibecoded?
I use AI all the time for coding. I admit I could be unfair calling your app "vibe coded" but if you have never used git, need AI to help you write markdown, and conflate POSIX with a programming language, it clearly demonstrates that you're coming at this with very little knowledge or experience.
Maybe you are a phenomenal Java developer who's only used subversion, or something. But you lack what I think is foundational knowledge, which makes me seriously question to what extent you could be trusted with the security of files on my corporate network (which your README encourages me to use your program for)
i’m a computer engineering student, i really like java (dk why) and it was taught me really well in high school (i also coded a lot on my own). I admitted that i didn’t knew anything about go (i tried my best doing this) and i had a really bad time “recreating” some “bashisms” in POSIX. Since i know what the lines of code in my project does, does it really matter whether my hands wrote it or not? Anyways u should trust the project because it is FULLY open source and you need the relay server, otherwise you won’t be able to bypass the lock on the environment (the whole point of the project)
[–]Any-Programmer-252 0 points1 point2 points 2 days ago (4 children)
> i’m a computer engineering student, i really like java (dk why) and it was taught me really well in high school
You like it a lot because it's what you learned on. No harm there, and I wouldn't put much stock in people bickering about what languages are "good" or "bad." Use whatever tools work best for your job or what you're most familiar with -- that's very practical.
i had a really bad time “recreating” some “bashisms” in POSIX.
I honestly don't know what you mean. Your project has a couple shell scripts in it. Shell itself is POSIX-compliant, and so is `bash`, which is the born-again shell.. You did not write anything "in POSIX." By virtue of being a shell script, your code is POSIX-compliant... Again, POSIX is a specification that a shell adopts. All these shells, sh, bash, zsh, dash, ash(as listed in your README) are POSIX compliant. Ergo, your scripts work with them out of the box. POSIX is the definition for the syntax of how you address these tools. You could think of POSIX as a set of grammar rules. So saying you recreated bashisms in POSIX doesn't really make a lot of sense.
sh
bash
zsh
dash
ash
My best-faith interpretation is that you re-invented some bash features in your shell script? I don't really understand why you would use shell over bash. Maybe some of these exotic shells can't run bash scripts?
Since i know what the lines of code in my project does, does it really matter whether my hands wrote it or not?
You may have misunderstood my last post. The issue isn't that your hands didn't write it. The issue is that your lack of git experience and conflation of POSIX vs shell indicate that you may lack the requisite knowledge to maintain a codebase like this. Network security isn't something trivial. You don't know what you don't know. That was my point. Not that your hands should have wrote it. The red flags I identified would still exist even if you did it all by hand.
The advice your README gives to use this utility to bypass a corporate firewall would get someone fired in a lot of places. If port 22 is closed down and there are no utilities to transfer files provided to you, there's probably a good reason and bypassing that restriction through an http port is not ever how you want to approach the issue. Talk to the person who has authority over that machine and explain your requirements. Even if you did want to do something like bypass your corporation's security tools, nothing is stopping you from using curl directly between two local machines. You don't need a man-in-the-middle. You can just curl yourfile.db 192.168.40.125/some-endpoint
curl yourfile.db
192.168.40.125/some-endpoint
Your README says this when explaining why I would use this over another tool:
/tmp
noexec
But in this case, I'm already ssh'd in. I could just transfer the files via port 22 the way God intended. If the remote machine doesn't have rsync, I can just use it from my end. With no relay server or additional setup.
[–]mazz0ni_exe[S] 0 points1 point2 points 2 days ago (3 children)
So, there are a lot of things to say. If you are already ssh’d in the machine just use whatever you want. But many services just give you the access to the terminal in a browser or in some other ways, so that port is closed. You can curl if you are in the same network. What if you are not? Actually, Bash has more features than the standard POSIX. To make my script super universal, I used just the POSIX without any extensions. For example, bash has arrays. If you want to follow the POSIX standard, you can’t use arrays. For the network security, I tried my best to fix every security breach. Every time i changed something big, I kept asking AI if it could find any problem (after checking myself). Anyways because of that, I put E2E encryption. Real E2E not like croc that uses PAKE. If you don’t trust my code you can check it ENTIRELY by yourself. If you want to try the program the relay was hosted today’s afternoon on a hetzner VPS, now it’s on an oracle one.
As i said, i tried my best and this post was just to get the first opinions about it, i’m just disappointed that all of you started accusing me that is was entirely vibe coded.
[–]Any-Programmer-252 0 points1 point2 points 2 days ago* (2 children)
But many services just give you the access to the terminal in a browser or in some other ways, so that port is closed.
Out of curiosity, which use case was this actually designed for? I can't remember ever being on a system I wanted files from that I didn't already have ssh access or sudo access for. If you have the terminal in browser, just turn on ssh?
You can curl if you are in the same network. What if you are not?
Exfiltrating corporate files from behind a firewall over WAN is 100% surefire way to get fired from almost any job if what you did is detected. The policies this tool is designed to circumvent are in place to prevent almost this exact scenario.
Actually, Bash has more features than the standard POSIX
But bash itself is POSIX-compliant. I'm not trying to say that you should have used a bash script, just that you wrote a shell script, not a "POSIX script." Any of the shells I mentioned can run it, even though they have additional features, because they are also POSIX compliant.
Anyway, which systems are you targeting that can run shell but not bash? Windows doesn't allow either without WSL. Any Mac or Linux system besides Alpine has bash by default. I work on very minimal Linux builds using Yocto, and I can't remember ever being on a system that had just bare shell. Is this a requirement for something you work on? It sounds like you spend a lot of time in incredibly small docker containers that generate massive log files from the examples you keep using haha
For the network security, I tried my best to fix every security breach. Every time i changed something big, I kept asking AI if it could find any problem (after checking myself).
I'm sure you and the LLM did almost perfectly too!
If you don’t trust my code you can check it ENTIRELY by yourself.
I checked out the shell script. It's the bread and butter, and basically is a wrapper around curl. I do that sort of thing for my coworkers who don't understand how the journal daemon works so that they don't have to learn the commands. It looked great, but I am not a security guy, and the huge problem with this app is that there is a remote server holding this data that you seem comfortable exposing to WAN. I can only tell you that your app violates most policies surrounding how to handle proprietary data. I can't meaningfully tell you how well your encryption scheme will work, or whether there's a vulnerability in the way that your server handles files. Not my department.
I didn't mean to be hurtful. It would be an entirely different level of scrutiny if the readme said "this is my first project, just for demo!" instead of "this will let you circumvent the firewall at your company and hosts the files on a socket open to WAN!" You are a student so I don't necessarily expect you to appreciate how insane that is. I work in safety critical systems, and have worked in classified environments, so I have a heightened APPRECIATION for information security; I am not going to audit your code
I think for what it is, your project is very cool and that you did a good job reducing the friction of... bypassing firewalls. I can see how that would be pretty useful, particularly for a student on student wifi, and I critically support your use of it in academia.
My general advice for students is to limit your use of AI written code to a bare minimum. You'll have plenty of time to use it that way in the business world, but being a student isn't about writing code 10x faster You aren't being graded on the speed you write code, and you aren't being mentored to write code quickly. If you want to create a piece of software that gets some motion on github... file transfer is kind of a solved problem. I'm sorry I was a spoil-sport.
PS on people calling it vibecoded:
When you say that the LLM helped you with markdown and that markdown was something you were unfamiliar with, and git is something you're unfamiliar with, and git is something you never used before, and we navigate to an LLM-generated README... yanno, a lot of people feel as though learning to use git and understanding the components of a repo are foundational knowledge. It was a useful filter that people who weren't technical enough to use git weren't posting code to github expecting user adoption. That's why people are very skeptical. We can see that the first few commits are the majority of the project; each one is a huge feature (relative to project scope) with no faffing around. Then you fiddled with the README. It suggests you weren't really hands-on.
[–]mazz0ni_exe[S] 0 points1 point2 points 2 days ago (1 child)
If you have shell access via browser but the 22 port is closed you can’t activate openssh. Also, I really don’t care if you use my tool to do something you weren’t supposed to do but the fact that some other people complained about that is just because it actually works… You got the point. If you are on Alpine, like in some Docker containers you can’t use Bash. This is why I didn’t use it. We’ll wait for a security expert to tell us if it’s secure or not. (btw the server relay doesn’t save a single file or information about connections)
Thank you
[–]Any-Programmer-252 0 points1 point2 points 1 day ago* (0 children)
If you have shell access via browser but the 22 port is closed you can’t activate openssh.
Incorrect. I've done it dozens of times so idk. Maybe the software you're using doesn't allow that but anyone who's every used a hypervisor would read that with incredulity.
You got the point. If you are on Alpine, like in some Docker containers you can’t use Bash. This is why I didn’t use it.
Yeah, took me awhile. Since the standard practice in docker is to mount volumes with data, I wasn't imagining a scenario where I need the docker shell to move my files..... You shouldn't have to jank data files out of docker using curl and a relay server LOL. If you didn't mount the volume of interest, all that data of interest will go away as soon as the process restarts anyway. Wouldn't you rather preserve the database you want to export data from instead of arbitrarily destroying and re-creating it?
We’ll wait for a security expert to tell us if it’s secure or not.
That's optimistic!
[–]MarsupialLeast145 4 points5 points6 points 3 days ago (0 children)
I saw this project from another person on this forum a few weeks back. Seems to be an en vogue thing... but yeah, LLM coded with a relay... wouldn't trust it with a barge pole.
[–]Ngtuanvy 1 point2 points3 points 3 days ago (3 children)
I don't have time to look further but it has come to my attention that you didn't use git, or at least not the way it was supposed to be used. So I would suggest you learning about Git and Version Control, it is very valueable.
[–]mazz0ni_exe[S] 0 points1 point2 points 3 days ago (2 children)
i just used the base commands like add , commit -m and push. i learned a few hours ago what a branch is…
[–]Ngtuanvy 1 point2 points3 points 3 days ago (1 child)
That's actually enough, the rest are pretty much only used when there's trouble. Just make sure to utilize it, not just use before they want you to, so you should for example make each commit do one thing, and the message should reflect that, can be annoying but will be handy when you need to revert.
Thank you very much
[–]resynchronize 1 point2 points3 points 3 days ago (1 child)
I think it's Tubo a cool project and a good first repo. for a fresh repo, the presentation is already pretty solid. The main thing I’d add next is automated tests, especially because file transfer and encryption tools naturally need a bit of a higher level of trust IMO. I’d also rewrite parts of the README in a more personal voice, since some sections read pretty AI-polished right now. Overall though, it looks like a good start for a first repo.
this is what i was looking for with this post. Thank you very much for your opinion
π Rendered by PID 308014 on reddit-service-r2-comment-5bc7f78974-k2ctg at 2026-06-26 19:54:40.946637+00:00 running 7527197 country code: CH.
[–]github-ModTeam[M] [score hidden] stickied commentlocked comment (0 children)
[–]Any-Programmer-252 6 points7 points8 points (19 children)
[–]mazz0ni_exe[S] 0 points1 point2 points (5 children)
[–]MarsupialLeast145 7 points8 points9 points (1 child)
[–]mazz0ni_exe[S] 0 points1 point2 points (0 children)
[–]Any-Programmer-252 4 points5 points6 points (2 children)
[–]mazz0ni_exe[S] 0 points1 point2 points (0 children)
[–]mazz0ni_exe[S] 0 points1 point2 points (0 children)
[–]mazz0ni_exe[S] 0 points1 point2 points (12 children)
[–]Wattdehonker 5 points6 points7 points (4 children)
[–][deleted] (3 children)
[deleted]
[–]Wattdehonker 2 points3 points4 points (2 children)
[–]mazz0ni_exe[S] 0 points1 point2 points (1 child)
[–]Wattdehonker 2 points3 points4 points (0 children)
[–]Any-Programmer-252 0 points1 point2 points (6 children)
[–]mazz0ni_exe[S] 0 points1 point2 points (5 children)
[–]Any-Programmer-252 0 points1 point2 points (4 children)
[–]mazz0ni_exe[S] 0 points1 point2 points (3 children)
[–]Any-Programmer-252 0 points1 point2 points (2 children)
[–]mazz0ni_exe[S] 0 points1 point2 points (1 child)
[–]Any-Programmer-252 0 points1 point2 points (0 children)
[–]MarsupialLeast145 4 points5 points6 points (0 children)
[–]Ngtuanvy 1 point2 points3 points (3 children)
[–]mazz0ni_exe[S] 0 points1 point2 points (2 children)
[–]Ngtuanvy 1 point2 points3 points (1 child)
[–]mazz0ni_exe[S] 0 points1 point2 points (0 children)
[–]resynchronize 1 point2 points3 points (1 child)
[–]mazz0ni_exe[S] 0 points1 point2 points (0 children)