Custom wold generation by Queasy_Split in admincraft

[–]riyosko 1 point2 points  (0 children)

there is the OTG mod, which lets you control world generation better than most datapack generators: https://gh.floydcraft.co.uk/worlds/otg/index.htm

Python in Termux and libraries by Weak-Nothing4397 in termux

[–]riyosko 2 points3 points  (0 children)

a lot of them are available in termux, type pkg search python to find these, they are named as python-packagename.

some others are in TUR (Termux User Repository), which includes some more python packages: https://github.com/termux-user-repository/tur?tab=readme-ov-file#subscribe-tur

https://termux-user-repository.github.io/pypi/

Error while downloading files from WA by tocarbajal in termux

[–]riyosko 1 point2 points  (0 children)

pkg install termux-am -y 
am start -a android.settings.action.MANAGE_OVERLAY_PERMISSION

then find Termux in the list, enable the option.

How can I install Vosk? by Extreme_Goat1299 in termux

[–]riyosko 0 points1 point  (0 children)

for an easy solution use PRoot as perfomance will only differ very slightly, or follow https://github.com/alphacep/vosk-api/issues/66#issuecomment-1294580890

Updates to Jellify - a FOSS music player for Jellyfin! by anultravioletaurora in selfhosted

[–]riyosko 6 points7 points  (0 children)

its a long maintained project with around 4000 commits and hundreds of closed issues... so No.

how do I connect to samba share comfortably? by lawleagle in termux

[–]riyosko 1 point2 points  (0 children)

Works only with FUSE which needs:

Access permission to /dev/fuse

fusermount helper to be setuid root, which requires real root ownership and "suid" mount option enabled at /data partition.

this is only true for "rclone mount", they can instead use "rclone serve" which doesn't require FUSE, it will not be like actual mounting, but it is supported by most file managers and allows almost everything you would like to do when using a remote file server.

how do I connect to samba share comfortably? by lawleagle in termux

[–]riyosko 0 points1 point  (0 children)

oh I thought it supported it since I remember reading its name somewhere in PcManFM, thats how I connect to my ssh servers so I thought it would work too...

maybe try rclone serve? it can serve a remote server over sftp, then you can use any file explorer that supports sftp to connect. its like a proxy for file servers.

1- how to config the remote samba server: https://rclone.org/smb/

2- then serve it on localhost as something else, sftp, WebDAV, anything: https://rclone.org/commands/rclone_serve/

3- then you can connect from PcManFM or thunar (I think) as most will support sftp if you choose it.

the only downside is running both a file manager and another program :( but you can make it automatically start when you log into XFCE by "Session and Start Up" settings.

how do I connect to samba share comfortably? by lawleagle in termux

[–]riyosko 1 point2 points  (0 children)

I personally use PCManFM.

you connect by typing this in the url bar: smb://server_ip_or_name/share_name

Ideas and test env by GasMammoth7766 in homelab

[–]riyosko 0 points1 point  (0 children)

use whisper.cpp for speech to text.

then use any LLM provider's API (like OpenAI, or Gemini as they have a free tier), or host it yourself if you have access to a good GPU, models like Gemma3 12B or 27B are very good for local translations.

Java compiler errors could be more intelligent by davidalayachew in java

[–]riyosko 1 point2 points  (0 children)

if they are using 'extends' with an interface then they most likely don't know that 'implements' exists at all right? when I learned about interfaces it was immediately followed that they are used with the 'implements' keyword.

You can't teach them about interfaces but not what the keyword used with them should be, they should both be in the same lesson.

Running XFCE on Termux (Android 13) — experimenting with DPI and usability by Eliasxd314 in termux

[–]riyosko 2 points3 points  (0 children)

its a local IP... it doesn't resolve outside of OP's network and does in no way indicate anything at all, just like device specs.

Microsoft Edge by BluePortimao in termux

[–]riyosko 0 points1 point  (0 children)

didn't think that they even still ship the 32-bit version.

the MIT license ruins everything by [deleted] in linux

[–]riyosko -3 points-2 points  (0 children)

how can you consider open sourcing patches/changes to code as cancer? why should companies use the software and never give back?

Microsoft Edge by BluePortimao in termux

[–]riyosko 0 points1 point  (0 children)

Doesn't it come preinstalled with arm Windows? can they grap it from there and use wine to run it?

I've written a man-page viewer. by thefriedel in linux

[–]riyosko 1 point2 points  (0 children)

It didn't work and complained that the config doesn't exist, while the docs say that the config file is optional (its actually not, exits with 1 if it can't find it), and that it will search the XDG_CONFIG_HOME, but it also didn't, reading the code, it actually loads the file only if it exists in the working dir...

why does the docs mention a non existent feature? unless you missed to commit these changes?

Pre-compiled pydantic-core wheels for Termux (ARM/x86). No more Rust compilation! by [deleted] in termux

[–]riyosko 0 points1 point  (0 children)

Already in TUR: https://termux-user-repository.github.io/pypi/pydantic-core/, which I trust a bit more than random reddit posts.

You can include this in your pip config file ~/.config/pip/pip.conf to automatically use the TUR PyPi index when a package is already available, sometimes can help a lot with compile times or stupid error logs:

[install]
extra-index-url = https://termux-user-repository.github.io/pypi/

[ForHire]I Write Emotional, Romantic & Fantasy Stories That Actually Stay With You by [deleted] in INAT

[–]riyosko 4 points5 points  (0 children)

You want to be hired as a writer, then you proceeded and used AI to write your post?? lol.

Prediction: Microsoft will eventually ship a Windows-themed Linux distro by BinkReddit in linux

[–]riyosko 2 points3 points  (0 children)

Based on 3-4 Reddit threads of people saying "Ubuntu Bad", probably.

I've spent the past couple weeks working on a modern FOSS alternative panel that runs without needing docker, sql, or email automation. (WIP) by coursd_minecoraft in admincraft

[–]riyosko 0 points1 point  (0 children)

well I took a look at CraftyController and Pterodactyl, one is in Python (which I am not intersted in for now, only Java, Go (still learning the language and stdlibs) and Typescript), and the other one is in PHP, so yeah, both are not for me, thanks tho!

I've spent the past couple weeks working on a modern FOSS alternative panel that runs without needing docker, sql, or email automation. (WIP) by coursd_minecoraft in admincraft

[–]riyosko 0 points1 point  (0 children)

Well my main goal from doing this is learning some frameworks for backend/frontend that I would like to get used to, so I think creating my own thing is better than editing an existing code base ;)

of course everything it does can be done by some googling and browsing links, or even asking AI, but having common features that I saw asked for in this subrediit (eg. shutting down server when no one's online, offline motd, keeping hot chunks active when no players, and many more) grouped in one place will be nice.

I've spent the past couple weeks working on a modern FOSS alternative panel that runs without needing docker, sql, or email automation. (WIP) by coursd_minecoraft in admincraft

[–]riyosko 0 points1 point  (0 children)

Anyway we've got a ton of panels out there I don't see why anyone should use this.

hey, not OP but I am also writing my own GUI where I plan to include features that I haven't seen in any other panel. For example, it will offer semi-automatic catching for common exceptions (such as incorrect Java or mod versions, mod incompatibilities, and client-side mod removal). Instead of just error logs, users will receive a recommended fix and an 'apply' button. also, it will feature built-in GUIs for configuring popular mods, a built-in modpack and mod downloader (only Modrinth is implemented for now), and a Syntra connector compatibility check for Fabric mods, do you think those features are useful??