Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
dzove855
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
7 ms
·
1.
▲
by
dzove855
2y ago
Seema pretty interesting! Would be nice to remove the shell dependancy
2.
▲
by
dzove855
3y ago
Hello, You could avoid loadables. Finfo <- load file inside a variable and get the size Mktemp <- like you said with timestamp Rm <- with a fifo or variable
3.
▲
by
dzove855
3y ago
Creator here: I'm really happy to see somebody shared it on hackernews :D If you have some questions, feel free to ask me
4.
▲
by
dzove855
3y ago
it is already in my mind creating a bind to something like libressl or rustssl, but it will be much more complicated.
5.
▲
by
dzove855
3y ago
Actually, bash has now a loadable builtin to listen on tcp socket. I wrote a script and the patch. https://github.com/dzove855/Bash-web-server The patch is now included in bash 5.2
6.
▲
by
dzove855
3y ago
https://dzove855-pihole-doh.saashup.com/ https://saashup.com https://github.com/dzove855/pihole-doh
7.
▲
Show HN: Pihole-Doh as a Service
2 points
by
dzove855
3y ago
|
1 comments
8.
▲
by
dzove855
3y ago
The big difference is that saashup offers developers a platform to host they applications to third party people. The platform is free for the developper to host the applications, the only one who is paying is the person which use your appli
9.
▲
by
dzove855
3y ago
One of the worker here: The applications are all docker instances, this allows us to provide an environment cheapest then hosting a virtual machine or a dedicated instance.
10.
▲
by
dzove855
3y ago
Welcome to the new era of micro saas! Our company has established itself as the leading digital micro saas platform in France. Since when? Since 2020, we've been supporting individuals and businesses who want to create their own saas e
11.
▲
Show HN: Saashup Micro SaaS Platform
(saashup.com)
4 points
by
dzove855
3y ago
|
6 comments
12.
▲
Show HN: A BashPrompt command Timer – reborn the bash prompt
(github.com)
1 points
by
dzove855
4y ago
|
0 comments
13.
▲
by
dzove855
4y ago
Like this you can do it without nc https://github.com/dzove855/Bash-web-server
14.
▲
by
dzove855
4y ago
Creator here of this server. : = does nothing but the := in the variable declariation will assign set the value of BASH_LOADABLE_PATH to /usr/lib/bash if the variable is empty. So instead of writing: BASH_LOADABLE_PATH=${BAS
15.
▲
by
dzove855
5y ago
No need of tr here in your example. The fd will only be used to stor it temporary since, we first need to sent headers, and the headers need to be sent before the bofy. The server base os working fine now with accept and a patch request os
16.
▲
by
dzove855
5y ago
Since now, multiple concurrent connections will work after my patch. (Need to add subshell) i will need to consider using fd as output cache. Instead of temporary files.
17.
▲
by
dzove855
5y ago
The project has been patched, now we can handle multiple connections!
18.
▲
by
dzove855
5y ago
I follow some projects from you on github. Keep up the work! Falling back to something like socat, would destroy the whole idea behind it. I think the best way is patching accept and shipping it with the project. Like this no need to fallba
19.
▲
by
dzove855
5y ago
For creating some kind IPC, i would create a named fifo or even use coproc (see man bash)
20.
▲
by
dzove855
5y ago
to avoid external calls
21.
▲
by
dzove855
5y ago
Well just type: help BUILTIN Example : help read
22.
▲
by
dzove855
5y ago
Well benchmarking it os currently not possible. I will try it in a few days and provide some benchmarks.
23.
▲
by
dzove855
5y ago
Well that's true. I took me two hours to get this done. Since accept was not clear at the beginning. But it will be cleaner in the future, i'm still not convinced how it works currently.
24.
▲
by
dzove855
5y ago
Bash is not mean for kind of projects like this. I even develop on other languages. But i like bash. A good bash script, is like reading a novel, because it's challenging to have a clean script.
25.
▲
by
dzove855
5y ago
I always use mktemp and trap to remove tmp files. But in this script i would like to avoid external commands. I will even remove the use of tmp files kn thw future.
26.
▲
by
dzove855
5y ago
Basically yes, but it's a loadable builtin.
27.
▲
by
dzove855
5y ago
Yeah sure. I have see it, but basically this one use bash builtins instead of external commands.
28.
▲
Show HN: A pure bash web server. No netcat, socat, etc.
(github.com)
224 points
by
dzove855
5y ago
|
97 comments
29.
▲
by
dzove855
5y ago
That was the idea behind it, make it readable and plugable for everyone. A good documentation is still missing for all the helper functions, but one day it will be there.
30.
▲
by
dzove855
5y ago
A simple bash framework with the possibility to write API and web apps. Examples: https://github.com/dzove855/yoctapi The api will even audit every request and it's to implement other methods. Database plugin:
More ›