Мы используем Makefile думая, что нет альтернатив, что это стандарт и всё такое.
Но make это не запускалка команд, а система сборки. Мы фактически используем его не по назначению.
И на самом деле альтернатива есть! Некоторое время назад я открыл для себя прекрасный инструмент - just. Он решает все проблемы make.
just - это не система сборки как make, это именно исполнитель команд!
Больше никаких Phony Targets и табуляций, привет нормальный синтаксис и передача аргументов!!! 😎
⭐️Что умеет just:
✅ Автодокументирование команд
Не нужно делать отдельную команду с докой, просто добавь комментарий
# команда сборки
build:
...
$ just --list
Available recipes:
build # команда сборки
Команда с именем default запускается по умолчанию если не указано другое, так что я обычно делаю так:
default:
just --list
Теперь просто выполняем just и получаем доку из текущего файла.
✅ Удобная работа с переменными окружения
# загрузить из .env
set dotenv-load
# глобальная переменная
export PYTHONPATH := "./src"
# переменная для команды
test $TESTUNG="true":
pytest
✅ Передача аргументов
build target:
@echo 'Build {{target}}...'
команда запуска
$ just build dev
# Build dev...
✅ Выбор интерпретатора прямо в команде
Пример с инлайн-скриптом на python:
system:
#!/usr/bin/env python3
import platform
print(platform.system())
Эта же функция позволит выполнить скрипт как одну команду вместо перезапуска шела для каждой строки
foo:
#!/usr/bin/env sh
for file in ls .; do
echo $file
done
✅ Выполнение команды в определенной директории. Можно указать как релятивный путь так и абсолютный
[working-directory: 'backend']
build:
docker compose build
Также можно задать рабочую директорию глобально
Там еще много интересного:
- поддержка функций
- автокомплиты и интеграции
- экспрешены
- алиасы команд
- группировка команд
- альтернативы команды под разные ОС
- импорт других just-файлов
- цветной вывод
- ... и другие штуковины!
Так что вперёд - ➡️ читать доку!
Репозиторий: ➡️https://github.com/casey/just
Статья: ➡️https://www.chicks.net/reference/file_formats/just/
ЗЫ. Кажется, на Makefile я уже не вернусь)
#tools
Warpinator for Android is an unofficial port of Linux Mint's file sharing tool of the same name. It is fully compatible with the original protocol and allows for easy transfer of files between Android and Linux devices.
Features:
- Automatic discovery of compatible services on local network
- Works on WiFi or hotspot, no internet connection needed
- Transfer any type of files quickly and easily
- Receive entire directories
- Run multiple transfers in parallel
- Share files from other applications
- Limit who can connect using a group code
- Option to start on boot
- Does not require your location or any other unnecessary permissions
Android
https://github.com/slowscript/warpinator-android
https://f-droid.org/packages/slowscript.warpinator/
Linux
https://github.com/linuxmint/warpinator
Windows
https://winpinator.swisz.cz
https://github.com/slowscript/warpinator-windows
#share#transfer
LocalSend
free, open-source multiplatform app that allows you to securely share files and messages with nearby devices over your local network without needing an internet connection.
https://github.com/localsend/localsend
#share#transfer
FlyingCarpet
Cross-platform AirDrop. File transfer between Android, iOS, Linux, macOS, and Windows over ad hoc WiFi. No network infrastructure required, just two devices with WiFi chips in close range.
https://github.com/spieglt/FlyingCarpet
#transfer#share
Sharik
Share files across devices with Sharik!
The app works with a Wi-Fi connection or a Wi-Fi Hotspot. No internet connection is needed. It is available for Android, iOS, Windows, Mac, and Linux.
Download - https://github.com/marchellodev/sharik/releases
Source - https://github.com/marchellodev/sharik/
@foss_Android
#share#transfer
Now KDE Connect can hook up your Windows machine as well!
KDE Community @ https://www.twitter.com/kdecommunity/status/1409808049116700673/
The Windows version of KDE Connect gets official support and you can get the beta version right now from the Microsoft Store. Exclusive link-only access: https://microsoft.com/store/apps/9N93MRMSXBF0
https://kdeconnect.kde.org
https://f-droid.org/repo/org.kde.kdeconnect_tp
#kdeconnect#transfer#windows
tFileTransporter
Transfer apps, images and files to Android Devices and PCs
Use UDP Broadcast or WiFi P2P create connections, Use TCP protocol to transfer files. This program builds with RxJava and Kotlin Coroutines.
Android:
https://github.com/Tans5/tFileTransporter
F-droid (Izzy repo): https://f-droid.org/packages/com.tans.tfiletransporter/
Play Store: https://play.google.com/store/apps/details?id=com.tans.tfiletransporter
Desktop:
https://github.com/Tans5/tFileTransfer_desktop
#tFileTransporter#transfer#share
Warpdrop
Warpdrop is a privacy-first, peer-to-peer file sharing tool that allows users to securely transfer files directly between terminals and browsers with ephemeral links, powerful NAT traversal, and complete self-hosting control.
🔗 Links:
- Website
- Features
- Screenshots
- Support group
- Source code
Developer: Mohd Zaid
❤️ Support the Project
If this project makes your life easier, here are a few quick ways to show some love:
⭐ Star the repo/app
☕ Buy a coffee for the developer
🛠 Contribute code, issues, or pull-requests
🏷 Tags: #Website#P2P#Tools#Transfer
#Musicopy#Music#File#Transfer
Join the Musicopy: Music File Transfer beta on ✈️#TestFlight
🔗 Link: https://testflight.apple.com/join/Ck9KaZVR
Shared by Dimitri
.
KDE Connect is an app that makes it easy to connect your DeGoogled phone and/or Linux Phone to your Linux laptop using your phone's hot spot, or any network.
KDE Connect can do these things:
- Share files
- Share clipboard
- Control Slideshows w/phone
- Send/Receive texts on laptop
(Using KDE Connect
Taskbar Indicator)
- Control laptop media player
- Move laptop mouse pointer
1. Install KDE Connect on phone
Use KDEConnect on F-Droid
2. Install on laptop
For Debian based distros:
sudo apt install kdeconnect
On your laptop firewall, make sure you open ports that KDE Connect uses.
To do this, open up terminal and enter these commands:
sudo ufw allow 1714:1764/udp
sudo ufw allow 1714:1764/tcp
sudo ufw reload
3. Connect both devices
- Connect both to the same network
- Open app on both devices
- Find and pair devices
⚡️@LinuxTechIndex
#KDEConnect#transfer#Files#share
Croc
Easily and securely send things from one computer to another
Features
- allows any two computers to transfer data (using a relay)
- provides end-to-end encryption (using PAKE)
- enables easy cross-platform transfers (Windows, Linux, Mac, Android)
- allows multiple file transfers
- local server or port-forwarding not needed
- ipv6-first with ipv4 fallback
https://github.com/schollz/croc
https://f-droid.org/en/packages/com.github.howeyc.crocgui/
📡@NoGoolag📡@Libreware
#croc#transfer#send#share