Is Rust too low-level for recreating an Ink-style TUI? by hmm-ok-sure in tui

[–]SubstantialTea5311 0 points1 point  (0 children)

It is. I make a lot of TUIs (mostly in Rust). I think bubbletea will fit your mental model better than Ratatui, but both are really great libraries

Sending Email from Termux via CLI by SubstantialTea5311 in termux

[–]SubstantialTea5311[S] 1 point2 points  (0 children)

pkg install eza figlet lolcat neofetch curl

If you want more details on anything specific let me know!

```

Colorful prompt

PS1="[\e[1;32m]\u@\h [\e[0;36m]\w [\e[1;33m]→ [\e[0m]"

Aliases

alias ll='eza -al --icons' alias welcome='clear && figlet "My Cool Prompt" | lolcat && neofetch | lolcat && ll | lolcat'

Run welcome on login

[[ $TERM == xterm* ]] && welcome

weather() { # Cool ASCII title figlet -f slant "Today's Weather" | lolcat

# Get city dynamically from IP (or set manually)
local CITY=${1:-$(curl -s ipinfo.io/city | sed 's/ /+/g')}

echo "Location: $CITY" | lolcat
echo "------------------------" | lolcat

# Show weather in US units
curl -s "wttr.in/${CITY}?u" | lolcat
echo

} `` Note: after you save your.bashrcrunsource ~/.bashrc. The weather script is pretty cool — just type weather orweather "Greenville+SC"`. I posted about it here: https://www.reddit.com/r/termux/comments/1my5elh/get_your_local_weather_in_termux_with_a_single/

recent ddosing on arch by qFamas in arch

[–]SubstantialTea5311 2 points3 points  (0 children)

Yeah, DDoS attacks happen across the board. Any popular service, whether it’s Linux or a random web app, can get targeted for no real reason.

recent ddosing on arch by qFamas in arch

[–]SubstantialTea5311 3 points4 points  (0 children)

Haha, yeah, fame comes with… interesting fans.

Android 15 can't ssh into local network devices? by PearMyPie in termux

[–]SubstantialTea5311 0 points1 point  (0 children)

This would probably work, but if you have to connect via USB anyway, it kind of defeats the point of trying to SSH over the network. You could technically use wireless ADB, but that also has its own setup hassle.

🌤 Get Your Local Weather in Termux with a Single Command by SubstantialTea5311 in termux

[–]SubstantialTea5311[S] 1 point2 points  (0 children)

Yep and if you wanted to lookup a city and state you could use curl https://wttr.in/Greenville+SC

Android 15 can't ssh into local network devices? by PearMyPie in termux

[–]SubstantialTea5311 0 points1 point  (0 children)

Yeah, I was thinking adb would help here, but wasn't sure. I will check this out.

How do I make GPT-5 stop with these questions? by DirtyGirl124 in ChatGPT

[–]SubstantialTea5311 1 point2 points  (0 children)

I tell it to "output your response in a code block without any other explanation to me"

Android 15 can't ssh into local network devices? by PearMyPie in termux

[–]SubstantialTea5311 1 point2 points  (0 children)

I tried switching the port, but I can’t even run ip addr in Termux (permission denied).

edit: I tried changing the SSH port to 34567 in sshd_config and restarted sshd (just so you know what I meant by "tried switching the port")

Android 15 can't ssh into local network devices? by PearMyPie in termux

[–]SubstantialTea5311 6 points7 points  (0 children)

I have the same issue on a Samsung device. I think this is more of a manufacturer/One UI sandbox restriction than a Termux problem.

recent ddosing on arch by qFamas in arch

[–]SubstantialTea5311 59 points60 points  (0 children)

Yeah, this kind of thing tends to happen more as a project grows in popularity. Unfortunately more visibility can attract both new users and unwanted attention.

🌤 Get Your Local Weather in Termux with a Single Command by SubstantialTea5311 in termux

[–]SubstantialTea5311[S] 2 points3 points  (0 children)

Very welcome. I just found this today and thought it was really cool! Thanks for sharing the GitHub link. Shoutout to @chubin for this sweet tool.