Git Finds
24 subscribers
212 photos
12 videos
5 files
1.25K links
Download Telegram
Chiaki

А вот уже opensource имплементация клиента для PlayStation 4 Remote Play на Linux, FreeBSD, OpenBSD, Android, macOS, Windows и возможно других платформ в будущем.

#С, #Cpp
​​Terminal disk space navigator written in #rust

Given a path on your hard-drive (which could also be the root path, eg. /). diskonaut scans it and maps it to memory so that you could explore its contents (even while still scanning!).

Once completed, you can navigate through subfolders, getting a visual treemap representation of what's taking up your disk space. You can even delete files or folders and diskonaut will track how much space you've freed up in this session.

https://github.com/imsnif/diskonaut
This media is not supported in your browser
VIEW IN TELEGRAM
NES.css

У нас уже были подобные посты, но только про css-фреймворки в стиле разных версий Windows. Сегодня же ловите офигительную имплементацию в стиле NES. Советуем позалипать на сайте документации, сделан он по все канонам Nintendo.

#CSS, #JavaScript
NES.icons

В этом репозитории вы сможете найти набор 8-битных иконок, которые использовались в предыдущем посте.

#CSS, #JavaScript
​​A tool for making simple #python GUIs.

https://github.com/alfiopuglisi/guietta

Guietta is a tool that makes simple GUIs simple (turns this code):

from guietta import _, Gui, Quit

gui = Gui(

[ 'Enter numbers:', '__a__' , '+' , '__b__', ['Calculate'] ],
[ 'Result: -->' , 'result' , _ , _ , _ ],
[ _ , _ , _ , _ , Quit ]
)

with gui.Calculate:
gui.result = float(gui.a) + float(gui.b)

gui.run()


Into this GUI:
Forwarded from GitHub'ненько
Rich is a Python library for rich text and beautiful formatting in the terminal.
#python #text
https://github.com/willmcgugan/rich
This media is not supported in your browser
VIEW IN TELEGRAM
gotop

А вот еще один менеджер ресурсов от того же автора, но реализованный на Go.

#Go
Forwarded from iggisv9t channel
This media is not supported in your browser
VIEW IN TELEGRAM
Попробовал taichi. Это такая штука, чтобы из питона рендерить на gpu. Строго говоря, это отдельный язык, которые встраивается в питон. Вот свою старую штуку переписал.
https://github.com/taichi-dev/taichi

#gif #taichi #processing
​​2fa is a two-factor authentication agent inside your command line.

You can use this tool instead of custom mobile applications.

https://github.com/rsc/2fa

#go
📡 Outrun.

Интересная штуковина. Позволяет выносить запущенные локально операции на ресурсы удалённой машины.

Как самый очевидный пример - запущенный локально ffmpeg может обрабатывать видео за счёт ресурсов удалённого, мощного сервера. При этом на удалённом сервере наличие этого самого ffmpeg не обязательно.

Сама утилита и описание её работы доступны прямо на странице репозитория: https://github.com/Overv/outrun

#github #будничное #outrun
Lime

Open-source-альтернатива популярного текстового редактора SublimeText. Главная особенность данного редактора в том, что он API-compatible с Sublime.

#Go
​​A utility tool powered by fzf for using git interactively.

This tool is designed to help you use git more efficiently. It's lightweight and easy to use.

Also integrates with: diff-so-fancy, delta, bat, emoji-cli.

https://github.com/wfxr/forgit

#shell #git
Forwarded from GitHub'ненько
simdjson : Parsing gigabytes of JSON per second
#json #parsing
https://github.com/simdjson/simdjson
​​Echelon - hierarchical logs in terminal on steroids.
Cross-platform #go library to organize logs in a hierarchical structure.

Features:
- Customizable and works with any VT100 compatible terminal
- Supports simplified output for dump terminals
- Implements incremental drawing algorithm to optimize drawing performance
- Can be used from multiple goroutines
- Pluggable and customizable renderers
- Works on Windows!

https://github.com/cirruslabs/echelon
​​Fully automated python fuzzer built to test if code actually is production ready in seconds.

#python allows you to do pretty much whatever you want. This is a good thing for the most part however it creates the opportunity for unexpected events to occur. One of battletested's strongest assets is its ability to show you all of those possibilities so there are no surprises. In a way, it surpasses learning about the behavior of code by reading docstrings because all behaviors are recorded during a fuzz.

https://github.com/CodyKochmann/battle_tested

For example, the image below shows just how much is brought to light about a piece of code without needing to read a textbook's worth of documentation (which almost never exists) just to learn about the full behavior of a single function.
Уважаемый читатель прислал крутой тренажер - https://learngitbranching.js.org/

Правда я сразу начал делать шаги в разные стороны от основного скрипта и все сломал, но для тренировки - отлично. А я тренировался на настоящих репозиториях с ипользованием Source tree. Но для быстрого входа в гит тренажер - вещь.
PySnooper

Инструмент для дебаггинга проектов на Python без использования print.

#Python