Top 10 trending github repos of the week🌟.

GitHub is where over 65 million developers shape the future of software, together. Contribute to the open source community, manage your Git repositories, review code like a pro, track bugs and features, power your CI/CD and DevOps workflows, and secure…

GitHub is where over 65 million developers shape the future of software, together. Contribute to the open source community, manage your Git repositories, review code like a pro, track bugs and features, power your CI/CD and DevOps workflows, and secure code before you commit it.

Here is the most popular repos published on this platform.



#1

GitHub logo

louislam
/
uptime-kuma

A fancy self-hosted monitoring tool

Uptime Kuma

It is a self-hosted monitoring tool like “Uptime Robot”.

🥔 Live Demo

Try it!

https://demo.uptime.kuma.pet

It is a 10 minutes live demo, all data will be deleted after that. The server is located at Tokyo, if you live far away from here, it may affact your experience. I suggest that you should install to try it.

VPS is sponsored by Uptime Kuma sponsors on Open Collective! Thank you so much!

⭐ Features

🔧 How to Install

🐳 Docker

docker volume create uptime-kuma
docker run -d --restart=always -p 3001:3001 -v uptime-kuma:/app/data --name uptime-kuma louislam/uptime-kuma:1

Browse to http://localhost:3001 after started.



#2

GitHub logo

facebook
/
flipper

A desktop debugging platform for mobile developers.

logo

Flipper


Android Maven Badge


iOS

Flipper (formerly Sonar) is a platform for debugging mobile apps on iOS and Android. Visualize, inspect, and control your apps from a simple desktop interface. Use Flipper as is or extend it using the plugin API

Flipper

Table of Contents

Mobile development

Flipper aims to be your number one companion for mobile app development on iOS and Android. Therefore, we provide a bunch of useful tools, including a log viewer, interactive layout inspector, and network inspector.

Extending Flipper

Flipper is built as a platform. In addition to using the tools already included, you can create your own plugins to visualize and debug data from your mobile apps. Flipper takes care of sending data back…



#3

GitHub logo

goplus
/
gop

GoPlus – The Go+ language for engineering, STEM education, and data science

The Go+ language for engineering, STEM education, and data science

Build Status
Go Report Card
Coverage Status
GitHub release
Playground
VSCode
Readme
GoDoc

Summary about Go+

What are mainly impressions about Go+?

  • A static typed language.
  • Fully compatible with the Go language.
  • Script-like style, and more readable code for data science than Go.

For example, the following is legal Go+ source code:

a := [1, 2, 3.4]
println(a)

How do we do this in the Go language?

package main
import "fmt"

func main() {
    a := []float64{1, 2, 3.4}
    fmt.Println(a)
}

Of course, we don’t only do less-typing things.

For example, we support list comprehension, which makes data processing easier.

a := [1, 3, 5, 7, 11]
b := [x*x for x <- a, x > 3]
println(b



#4



#5

GitHub logo

babysor
/
MockingBird

🚀AI拟声: 5秒内克隆您的声音并生成任意语音内容 Clone a voice in 5 seconds to generate arbitrary speech in real-time

mockingbird

MIT License

English | 中文

Features

🌍 Chinese supported mandarin and tested with multiple datasets: aidatatang_200zh, magicdata, aishell3, data_aishell, and etc.

🤩 PyTorch worked for pytorch, tested in version of 1.9.0(latest in August 2021), with GPU Tesla T4 and GTX 2060

🌍 Windows + Linux run in both Windows OS and linux OS (even in M1 MACOS)

🤩 Easy & Awesome effect with only newly-trained synthesizer, by reusing the pretrained encoder/vocoder

🌍 Webserver Ready to serve your result with remote calling

DEMO VIDEO

Quick Start

1. Install Requirements

Follow the original repo to test if you got all environment ready
**Python 3.7 or higher ** is needed to run the toolbox.

If you get an ERROR: Could not find a version that satisfies the requirement torch==1.9.0+cu102 (from versions: 0.1.2, 0.1.2.post1, 0.1.2.post2 ) This error is probably due to a low version of python, try using 3.9 and it will…



#6

GitHub logo

lvgl
/
lvgl

Powerful and easy-to-use embedded GUI library with many widgets, advanced visual effects (opacity, antialiasing, animations) and low memory requirements (16K RAM, 64K Flash).

LVGL – Light and Versatile Graphics Library

LVGL provides everything you need to create an embedded GUI with easy-to-use graphical elements, beautiful visual effects and a low memory footprint

Website ·
Docs ·
Forum ·
Services ·
Interactive examples

Table of content

Overview

Features

  • Powerful building blocks: buttons, charts, lists, sliders, images, etc.
  • Advanced graphics engine: animations, anti-aliasing, opacity, smooth scrolling, blending modes, etc
  • Supports various input devices: touchscreen, mouse, keyboard, encoder, buttons, etc.
  • Supports multiple displays
  • Hardware independent, can be use with any microcontroller and display
  • Scalable to operate with little memory (64 kB Flash, 16 kB RAM)
  • Multi-language support with UTF-8 handling, CJK, Bidirectional and Arabic script support
  • Fully customizable graphical elements via CSS-like styles
  • Powerful layouts inspired by CSS: Flexbox and Grid
  • OS, External memory and GPU are supported but not required. (built in support for STM32 DMA2D, and…



#7

GitHub logo

trailofbits
/
algo

Set up a personal VPN in the cloud

Algo VPN

Twitter

Algo VPN is a set of Ansible scripts that simplify the setup of a personal WireGuard and IPsec VPN. It uses the most secure defaults available and works with common cloud providers. See our release announcement for more information.

Features

  • Supports only IKEv2 with strong crypto (AES-GCM, SHA2, and P-256) for iOS, macOS, and Linux
  • Supports WireGuard for all of the above, in addition to Android and Windows 10
  • Generates .conf files and QR codes for iOS, macOS, Android, and Windows WireGuard clients
  • Generates Apple profiles to auto-configure iOS and macOS devices for IPsec – no client software required
  • Includes a helper script to add and remove users
  • Blocks ads with a local DNS resolver (optional)
  • Sets up limited SSH users for tunneling traffic (optional)
  • Based on current versions of Ubuntu and strongSwan
  • Installs to DigitalOcean, Amazon Lightsail, Amazon EC2, Vultr, Microsoft Azure, Google Compute Engine, Scaleway, OpenStack…



#8

GitHub logo

hrsh7th
/
nvim-cmp

A completion plugin for neovim coded in Lua.

nvim-cmp

A completion engine plugin for neovim written in Lua
Completion sources are installed from external repositories and “sourced”.

Kapture.2021-10-11.at.12.12.19.mp4

Readme!

  1. nvim-cmp’s breaking changes are here.
  2. This is my hobby project. You can support me via GitHub sponsors.
  3. The bug reports are welcome, but I might not fix if you don’t provide a minimal reproduction configuration and steps.

Concept

  • No flicker
  • Works properly
  • Fully customizable via Lua functions
  • Fully supported LSP’s Completion capabilities
    • Snippets
    • CommitCharacters
    • TriggerCharacters
    • TextEdit and InsertReplaceTextEdit
    • AdditionalTextEdits
    • Markdown documentation
    • Execute commands (Some LSP server needs it to auto-importing. e.g. sumneko_lua or purescript-language-server)
    • Preselect
    • CompletionItemTags
  • Support pairs-wise plugin automatically

Setup

Recommended Configuration

This example configuration is using vim-plug.

call plug#begin(s:plug_dir)
Plug 'neovim/nvim-lspconfig'
Plug 'hrsh7th/cmp-nvim-lsp'
Plug 'hrsh7th/cmp-buffer'
Plug 'hrsh7th/nvim-cmp'
" For vsnip user.
Plug 'hrsh7th/cmp-vsnip'
Plug 'hrsh7th/vim-vsnip'

" For luasnip



#9

GitHub logo

argoproj
/
argo-cd

Declarative continuous deployment for Kubernetes.

Integration tests
slack
codecov
Release Version
CII Best Practices

Argo CD – Declarative Continuous Delivery for Kubernetes

What is Argo CD?

Argo CD is a declarative, GitOps continuous delivery tool for Kubernetes.

Argo CD UI

Argo CD Demo

Why Argo CD?

  1. Application definitions, configurations, and environments should be declarative and version controlled.
  2. Application deployment and lifecycle management should be automated, auditable, and easy to understand.

Who uses Argo CD?

Official Argo CD user list

Documentation

To learn more about Argo CD go to the complete documentation
Check live demo at https://cd.apps.argoproj.io/.

Community

Contribution, Discussion and Support

You can reach the Argo CD community and developers via the following channels:

Participation in the Argo CD project is governed by the CNCF Code of Conduct

Blogs and Presentations

  1. Combining Argo CD (GitOps), Crossplane (Control Plane), And KubeVela (OAM)



#10

GitHub logo

ossrs
/
srs

SRS is a simple, high efficiency and realtime video server, supports RTMP/WebRTC/HLS/HTTP-FLV/SRT/GB28181.

SRS(Simple Realtime Server)







SRS/4.0,Leo,是一个简单高效的实时视频服务器,支持RTMP/WebRTC/HLS/HTTP-FLV/SRT。

SRS is a simple, high efficiency and realtime video server, supports RTMP/WebRTC/HLS/HTTP-FLV/SRT.

SRS is licenced under MIT, but some depended libraries are distributed using their own licenses.

Usage

Build SRS from source or docker(CN / EN), please read Wiki: Gettting Started(CN / EN):

git clone -b 4.0release https://gitee.com/ossrs/srs.git &&amp
cd srs/trunk && ./configure && make && ./objs/srs -c conf/srs.conf

Open http://localhost:8080/ to check it, then publish
by FFmpeg or OBS as:

ffmpeg -re -i ./doc/source.flv -c copy -f flv -y rtmp://localhost/live/livestream

Note: It’s also able to publish by H5 if WebRTC is enabled.

Play the following streams by players:

From here, please read wikis:

  • Getting Started, please read Wiki first.
  • 中文文档:起步,不读Wiki一定扑街,不读文档请不要提Issue,不读文档请不要提问题,任何文档中明确说过的疑问都不会解答。

Fast index for Wikis:

  • Overview? (CN, EN)
  • How…

Enjoy these repos.
Follow me for more articles.
Thanks 💖💖💖


Print Share Comment Cite Upload Translate
APA
Kavindu Santhusa | Sciencx (2024-03-28T14:33:56+00:00) » Top 10 trending github repos of the week🌟.. Retrieved from https://www.scien.cx/2021/10/15/top-10-trending-github-repos-of-the-week%f0%9f%8c%9f/.
MLA
" » Top 10 trending github repos of the week🌟.." Kavindu Santhusa | Sciencx - Friday October 15, 2021, https://www.scien.cx/2021/10/15/top-10-trending-github-repos-of-the-week%f0%9f%8c%9f/
HARVARD
Kavindu Santhusa | Sciencx Friday October 15, 2021 » Top 10 trending github repos of the week🌟.., viewed 2024-03-28T14:33:56+00:00,<https://www.scien.cx/2021/10/15/top-10-trending-github-repos-of-the-week%f0%9f%8c%9f/>
VANCOUVER
Kavindu Santhusa | Sciencx - » Top 10 trending github repos of the week🌟.. [Internet]. [Accessed 2024-03-28T14:33:56+00:00]. Available from: https://www.scien.cx/2021/10/15/top-10-trending-github-repos-of-the-week%f0%9f%8c%9f/
CHICAGO
" » Top 10 trending github repos of the week🌟.." Kavindu Santhusa | Sciencx - Accessed 2024-03-28T14:33:56+00:00. https://www.scien.cx/2021/10/15/top-10-trending-github-repos-of-the-week%f0%9f%8c%9f/
IEEE
" » Top 10 trending github repos of the week🌟.." Kavindu Santhusa | Sciencx [Online]. Available: https://www.scien.cx/2021/10/15/top-10-trending-github-repos-of-the-week%f0%9f%8c%9f/. [Accessed: 2024-03-28T14:33:56+00:00]
rf:citation
» Top 10 trending github repos of the week🌟. | Kavindu Santhusa | Sciencx | https://www.scien.cx/2021/10/15/top-10-trending-github-repos-of-the-week%f0%9f%8c%9f/ | 2024-03-28T14:33:56+00:00
https://github.com/addpipe/simple-recorderjs-demo