Sorry, i am not very much into kernel/netstack development, but a question. So does it mean that even if an alternative NAT system will be available in Linux (kernel module with a switch or whatever) - it will not be…
thanks to the author of the article, it inspired me to try making a small gui app i wanted for long time - it simply reads and shows the contents of the system clipboard in a window. and it was really super easy, i…
for viewing all the history files at once this is one of the simplest options cat $HOME/zsh/* should be easy to copy-paste or pipe it to an editor. i mean, the problem of viewing all history files at once is much easier…
zshrc for saving history: mkdir -p $HOME/zsh HISTFILE="$HOME/zsh/$(date '+%y:%m%d:%H%M')-$$" echo "HISTFILE $HISTFILE" for easily accessing the history without running grep... will figure it out later :)))
this is an example of overcomplicated solutions that could be avoided with the tool we already have for years - file system - why do this "heroic" effort of "cleverly" putting everything in one file from many sessions…
i cannot trust tech advices from a guy who puts three ad banners (left, right and bottom, taking approx quarter of my screen space) on his personal blog.
cue? what is that? i remember only cue which holds audio tracks metadata.
what are those modern quic-based terminal emulators? i never heard about the concept before.
any details on that? links to people reporting it?
can you please suggest any alternatives to switch to? i hardly can find any alternative which provides free service and is a non-profit org at the same time.
even this "ascii" (i expected raw text but still got html+css) was hardly readable for me, had to reach to the reader view, finally readable, ohh... looks much like ai-generated, why did i spend so much time jumping…
afaik tcp and udp are the same on top of ipv6 as they are on top of ipv4, there are no tcp6 and udp6, the "6" suffix just hints they are comminucated on top of ipv6, but the packets are the same as before, no new…
can you please demonstrate the workflow you are suggesting? asking because i tried what you suggest, and it does not work.
can you please explain what you mean by this? because technically i do not see any similarity in this "analogy".
the question was "can we use port names from /etc/services instead of port numbers?" how about "ssh://git@ssh.github.com:https/golang/go.git" instead of "ssh://git@ssh.github.com:443/golang/go.git"? does not work, hmm.
URI contains ":port" tho, but practically it is only digital number. the OP made a tool which helps them to avoid using port numbers. people commented in a way that looked like laughing at him, like he reinvented the…
if you configure sshd to listen on port 443, does it become an https server? i was just trying to demondtrate: pick any port from /etc/services and try to use the name instead of port number. no, it does not work well…
ipv6 packet does not have any port field. ports are on the level of tcp and udp, and you don't have to use tcp or udp on top of ipv6. ipv4 packet does not have any port information as well.
i know, but the OP's goal was to host/access http(s) services with names and avoid port numbers, and gopher service name was chosen by me as an example. my point was that /etc/services cannot be used for the OP's need.…
i chose gopher port just as an example. try with any other service name mapped to a port number from /etc/services and the result will be the same. the OP's goal was to use many http/https services, so we are talking…
this is a nice idea, but idk why, in macos if i do `nc -l 127.0.0.1 gopher` and then try to open url "http://127.0.0.1:gopher/" - safari does not open it, no requests visible in the `nc` output. also `curl -v…
the first paragraph in the linked post says "Major investors are Amplify, CRV, and HeavyBit." but i know nothing about what the comment says, just answering your question.
> it’s a pretty basic hex viewer that runs in your browser excuse me? "basic" and "runs in your browser" together sound very contradictory to me. while doing things i actually feel (yes, emotionally) much better when…
oops, sorry, so it is not as bad as i imagined :) is it just a way to have an unlimited account for free?
maybe try to fix it for them as soon as you have the root access?
Sorry, i am not very much into kernel/netstack development, but a question. So does it mean that even if an alternative NAT system will be available in Linux (kernel module with a switch or whatever) - it will not be…
thanks to the author of the article, it inspired me to try making a small gui app i wanted for long time - it simply reads and shows the contents of the system clipboard in a window. and it was really super easy, i…
for viewing all the history files at once this is one of the simplest options cat $HOME/zsh/* should be easy to copy-paste or pipe it to an editor. i mean, the problem of viewing all history files at once is much easier…
zshrc for saving history: mkdir -p $HOME/zsh HISTFILE="$HOME/zsh/$(date '+%y:%m%d:%H%M')-$$" echo "HISTFILE $HISTFILE" for easily accessing the history without running grep... will figure it out later :)))
this is an example of overcomplicated solutions that could be avoided with the tool we already have for years - file system - why do this "heroic" effort of "cleverly" putting everything in one file from many sessions…
i cannot trust tech advices from a guy who puts three ad banners (left, right and bottom, taking approx quarter of my screen space) on his personal blog.
cue? what is that? i remember only cue which holds audio tracks metadata.
what are those modern quic-based terminal emulators? i never heard about the concept before.
any details on that? links to people reporting it?
can you please suggest any alternatives to switch to? i hardly can find any alternative which provides free service and is a non-profit org at the same time.
even this "ascii" (i expected raw text but still got html+css) was hardly readable for me, had to reach to the reader view, finally readable, ohh... looks much like ai-generated, why did i spend so much time jumping…
afaik tcp and udp are the same on top of ipv6 as they are on top of ipv4, there are no tcp6 and udp6, the "6" suffix just hints they are comminucated on top of ipv6, but the packets are the same as before, no new…
can you please demonstrate the workflow you are suggesting? asking because i tried what you suggest, and it does not work.
can you please explain what you mean by this? because technically i do not see any similarity in this "analogy".
the question was "can we use port names from /etc/services instead of port numbers?" how about "ssh://git@ssh.github.com:https/golang/go.git" instead of "ssh://git@ssh.github.com:443/golang/go.git"? does not work, hmm.
URI contains ":port" tho, but practically it is only digital number. the OP made a tool which helps them to avoid using port numbers. people commented in a way that looked like laughing at him, like he reinvented the…
if you configure sshd to listen on port 443, does it become an https server? i was just trying to demondtrate: pick any port from /etc/services and try to use the name instead of port number. no, it does not work well…
ipv6 packet does not have any port field. ports are on the level of tcp and udp, and you don't have to use tcp or udp on top of ipv6. ipv4 packet does not have any port information as well.
i know, but the OP's goal was to host/access http(s) services with names and avoid port numbers, and gopher service name was chosen by me as an example. my point was that /etc/services cannot be used for the OP's need.…
i chose gopher port just as an example. try with any other service name mapped to a port number from /etc/services and the result will be the same. the OP's goal was to use many http/https services, so we are talking…
this is a nice idea, but idk why, in macos if i do `nc -l 127.0.0.1 gopher` and then try to open url "http://127.0.0.1:gopher/" - safari does not open it, no requests visible in the `nc` output. also `curl -v…
the first paragraph in the linked post says "Major investors are Amplify, CRV, and HeavyBit." but i know nothing about what the comment says, just answering your question.
> it’s a pretty basic hex viewer that runs in your browser excuse me? "basic" and "runs in your browser" together sound very contradictory to me. while doing things i actually feel (yes, emotionally) much better when…
oops, sorry, so it is not as bad as i imagined :) is it just a way to have an unlimited account for free?
maybe try to fix it for them as soon as you have the root access?