DEV Community

Cover image for Show us your open-source project!

Show us your open-source project!

Antonio | CEO at Litlyx.com on July 31, 2024

Hello everybody, I'm Antonio, CEO at Litlyx. A while ago, I made a post similar to this to give everyone a space to share their open-source proje...
Collapse
 
elanatframework profile image
elanatframework
  • Name: CodeBehind Framework
  • Repository on github: Link
  • Short Description: CodeBehind is a modern back-end framework under ASP.NET Core. CodeBehind was developed by Elanat in 2023 and competes with Microsoft's default web frameworks (ASP.NET Core MVC and Razor Pages and Blazor).
Collapse
 
litlyx profile image
Antonio | CEO at Litlyx.com

Thanks for sharing your project. I started my programming journey as Game Developer in Unity so i learned C#. It has a lspecial place in my heart.

Great project! Keep up the good work.

Collapse
 
darkwiiplayer profile image
𒎏Wii 🏳️‍⚧️

Skooma (currently working on the 2.0 branch) is what I'm working on at the moment.

It's my attempt at a JS "micro"framework; so far there's a DSL for generating DOM nodes as well as an Observable class for reactive state management. The documentation and readme are still a bit behind the actual development, but they can give a general idea of how it works. There's also a website, but that's also still work in progress 😅

I'll probably write a proper introduction post once I'm happy with it and the API is somewhat stable.

Collapse
 
litlyx profile image
Antonio | CEO at Litlyx.com

Wow it seems super simple with your solution. Great job!

Collapse
 
empe profile image
Emil Pearce

Love it!

Collapse
 
karthikmudunuri profile image
Mudunuri bhaskara karthikeya varma

Name: EldoraUI
Repository on github: Link
Short Description: Eldora UI is a collection of re-usable components that you can copy and paste into your web apps. It primarily features components, blocks, and templates geared towards creating landing pages and user-facing marketing materials.

Collapse
 
litlyx profile image
Antonio | CEO at Litlyx.com

This is amazing for real. Thanks for your work on this project. We will try to find something there to integrate some ui components you setted up in litlyx. Thanks for real. This is the amazing of hosting this panel. We can find so great project out there!

Collapse
 
karthikmudunuri profile image
Mudunuri bhaskara karthikeya varma

Thanks a lot @litlyx I would love to see your website integrated with eldora ui components. More updated and components coming soon!

Collapse
 
empe profile image
Emil Pearce

Looks like a fantastic resource for developers! Great job to the team behind it! By the way, do you have examples of those components connected to a backend?

It would be great to see how they work in a full-stack setup.

Collapse
 
karthikmudunuri profile image
Mudunuri bhaskara karthikeya varma

Will try to bring those components soon @empe

Collapse
 
paul_freeman profile image
Paul • Edited

Name: Awesome landing page
Repository on github: Github link
Short Description: A list of free and open-source landing page for SaaS, App landing pages, NGO, restaurants and more. New templates every Friday.

GitHub logo PaulleDemon / awesome-landing-pages

Free to use landing pages for SaaS developers, freelancers, agencies and businesses

Free Landing page templates

Contains free and open-sourced website templates, including but not limited to SaaS landing page, portfolio, Restaurant page and more. Useful, for freelancers, agencies, SaaS developers, and more.

Download from browsable page: awesome-landingpages.vercel.app/

Updated weekly

New templates will be uploaded every Friday. Feel free to star this repository 🌟.

Have a generic template in mind?

  • Create a new template issue, once your template request have enough thumbs up, we'll make one.

  • If you are looking for a custom one, contact here

Table of content

Collapse
 
litlyx profile image
Antonio | CEO at Litlyx.com

Love when people give so much value for free to other people. This is why FOSS is full of intresting individuals that help each other! Great

Collapse
 
empe profile image
Emil Pearce

Where were you all this time?!?!?! Amazing!

Collapse
 
misery666 profile image
Mishan Poudel

Name: Windows 11
Repository on github: Visit the website
Short Description: Experience the look and feel of Windows 11 directly in your browser with this web-based clone. Enjoy a similar user interface and functionality.

Collapse
 
litlyx profile image
Antonio | CEO at Litlyx.com

So intresting! Is cute

Collapse
 
misery666 profile image
Mishan Poudel

Thanks a lot! <3

Collapse
 
mahes profile image
Mahes R

File Explorer is cute. Give a try on recreating CASIO FX-880P pocket computer

Collapse
 
tungbq profile image
Tung Leo • Edited

GitHub repo: github.com/tungbq/devops-basics
Description: 🚀 Practical and document place for DevOps toolchain to help everyone learn and practice DevOps.

If you find this repository helpful, kindly consider showing your appreciation by giving it a star ⭐. Thanks! 💖

Collapse
 
rahulmraut profile image
Rahul Raut

Awesome work. Worth sharing on LinkedIn

Collapse
 
tungbq profile image
Tung Leo

Thank you so much for the kind words

Collapse
 
litlyx profile image
Antonio | CEO at Litlyx.com

Really helpful to getting started with DevOps career. Great resource!

Collapse
 
tungbq profile image
Tung Leo

Thank you so much!

Collapse
 
dk189 profile image
Henry Tran

Oh, amazing resources. 💕

Collapse
 
tungbq profile image
Tung Leo

Thank you @dk189 for your feedback!

Collapse
 
jwilliamsr profile image
Jesse Williams

Name: KitOps
Repository on github: Link
Short Description: Kit is an open source MLOps tool that packages AI projects into an OCI-compatible file type. Our goal is to help developers get their AI projects to production faster by turning something like a Jupyter Notebook into a deployable artifact, without standing up an AI/ML specific pipeline.

Collapse
 
litlyx profile image
Antonio | CEO at Litlyx.com

Wow! it seems a great idea. Keep going i will love to see your updates!

Collapse
 
jwilliamsr profile image
Jesse Williams

Thanks!

Collapse
 
artem1458 profile image
Artem Korniev • Edited
  • Name: Clawject
  • Repository on github: Link
  • Short Description: Clawject is a full-stack, type-safe (really type safe), declarative Dependency Injection framework for TypeScript that is build for developers convenience. It's built to avoid boilerplate unsafe code as much as possible.

GitHub logo clawject / clawject

TypeScript dependency injection made easy

Introduction 🚀

Clawject is a full-stack, type-safe, declarative Dependency Injection framework for TypeScript Clawject designed to make dependency injection and inversion of control in TypeScript as effortless clear and intuitive as possible. It allows defining class dependencies in a declarative way, without the need to use injection tokens or any other boilerplate, especially when it comes to interfaces and generics.

Check out Clawject website for more details and installation guide.


npm_version license Conventional Commits

Code with clawject

interface IRepository<T> { /*...*/ }
class RepositoryImpl<T> implements IRepository<T> { /*...*/ }
class PrimitivesService {
  constructor(
    private stringRepository: IRepository<string>,
    private numberRepository: IRepository<number>,
    private booleanRepository: IRepository<boolean>,
  ) {}
}
@ClawjectApplication
class Application {
  stringRepository = Bean(RepositoryImpl<string>);
  numberRepository = Bean(RepositoryImpl<number
Enter fullscreen mode Exit fullscreen mode
Collapse
 
litlyx profile image
Antonio | CEO at Litlyx.com

"really type safe" i loved it !! And i laughed a lot with this :)). I understand everything!
Thanks for sharing this valuable project.

Collapse
 
empe profile image
Emil Pearce

Sounds like a game-changer for TypeScript developers! Making dependency injection both declarative and convenient is no small feat, and it's impressive to see such dedication to enhancing developer experience.

Looking forward to exploring its features and seeing how it can streamline our projects. Great job on building something truly developer-friendly!

And it might be very relevant for us! :)

Collapse
 
artem1458 profile image
Artem Korniev

@empe Hey, I'm really glad that you're find this project interesting! Don't hesitate to reach out if you have any questions.

Collapse
 
stefanwerfling profile image
Stefan Werfling

Name: FlyingFish
Repository on GitHub: Link
Short Description: FlyingFish is a reverse proxy manager with own WebUI, DNS server, SSH server, DynDNS, UPNP support, Lets Encrypt and much more.

Collapse
 
litlyx profile image
Antonio | CEO at Litlyx.com

I really love the concept of your project. I will show this to my CTO he would love to work with this software. You gain a shout out man!
PS: love the flying fish mascotte

Collapse
 
punitsonime profile image
Punit Soni

Name: react-helper-hooks
Repository on github: github.com/PunitSoniME/react-helpe...
Short Description: Collection of hooks which developers can use in their projects and save time of writing them from scratch

Collapse
 
litlyx profile image
Antonio | CEO at Litlyx.com

Thanks for sharing your project with us!

Collapse
 
ujjwall-r profile image
Ujjwal Raj • Edited
  • Name: Dree (terminal based file manager)
  • Repository on Github: github.com/ujjwall-R/Dree
  • Short Description: One single package for visualization, debugging, and exploration of folder hierarchies. Dree is being developed into terminal based file manager(written in C++). Setup Dree on your mac or linux device and run dree [integer] -n to use it as a file manager.
Collapse
 
litlyx profile image
Antonio | CEO at Litlyx.com

Thanks for sharing this with us!

Collapse
 
apperside profile image
Apperside

Name: Dockerify.ai
Repository on github: github.com/apperside/dockerify.ai
Short Description: Dockerify.ai leverages Docker, AI, and TypeScript to enhance the creation of docker related files. With OpenAI integration, it allows interactive user inquiries and streamlines the creation of a working docker configuration for your project.

Collapse
 
litlyx profile image
Antonio | CEO at Litlyx.com

This can help people navigate the docker compose difficulties! Great job

Collapse
 
vrudas profile image
Vasya Rudas

Name: Spring Framework Examples
Repository on GitHub: Link
Short Description: An educational project with Spring Framework examples. Used for lectures at courses.

Collapse
 
litlyx profile image
Antonio | CEO at Litlyx.com

It seems pretty simple to start with Spring with your examples. Great!

Collapse
 
vb64 profile image
Vitaly Bogomolov

Name: Markdown to pdf renderer
Repository on github: link
Short Description: The free, open source Python module markdown-pdf will create a PDF file from your markdown content.

Collapse
 
litlyx profile image
Antonio | CEO at Litlyx.com

Really useful!

Collapse
 
mirkoperillo profile image
mirko

Name: Resting
Repository: link
Description: Resting is a free software visual HTTP client browser extension.
The mission of Resting is to simplify the daily work of developer in debugging, testing and inspecting HTTP APIs.

Collapse
 
litlyx profile image
Antonio | CEO at Litlyx.com

Thanks for sharing with us!

Collapse
 
yashksaini profile image
Yash Kumar Saini
  • Name: Chatterbox
  • Repository on Github: Link
  • Short Description: Chatterbox is a real time flask based chat application. which allows its user to chat real time, display user status, AI integrated chatbot features which uses Google Gemini API key.
Collapse
 
litlyx profile image
Antonio | CEO at Litlyx.com

Is pretty cool! Thanks for sharing with us!

Collapse
 
mimopotato profile image
Mimopotato

Name: funcml
Repository on GitHub: funcml-core
Short description: funcml is a library (funcml-core) and CLI (funcml-cli) that implements mutation functions in YAML and JSON files, allowing you to merge dictionaries, concatenate items, calculate results, use variables... It's part of a drive to create an alternative to Helm for Kubernetes.

Collapse
 
litlyx profile image
Antonio | CEO at Litlyx.com

Keep your great work up my man!

Collapse
 
novoj profile image
Jan Novotný • Edited

Name: evitaDB
Repository on github: github.com/FgForrest/evitaDB/
Short Description: evitaDB is a specialized database with an easy-to-use API (gRPC, GraphQL, REST, native) for e-commerce systems. It is a low-latency NoSQL in-memory engine that handles all the complex tasks that e-commerce systems have to deal with on a daily basis (facet calculation, hierachies, prices, graph like fetching). evitaDB is expected to act as a fast secondary lookup/search index used by front stores.

Collapse
 
litlyx profile image
Antonio | CEO at Litlyx.com

Thanks to sharing this with us!

Collapse
 
chanity profile image
Trang Pham Quynh

Name: 𝐀𝐈 𝐁𝐮𝐢𝐥𝐝𝐞𝐫 𝐊𝐢𝐭
Repository on github: github.com/chanitypham/AI-Builder-Kit
Short Description: Create tailored AI tools that fit your unique needs and group them all in one hub. So you can centralize all your tools, share with friends, or monetize them.

If you guys like it, go give it a star on GitHub. Excited to hear your thoughts about this 😊

Collapse
 
litlyx profile image
Antonio | CEO at Litlyx.com

It seems a great project my man! Great job and keep working!

Collapse
 
maurobonfietti profile image
Mauro Bonfietti

Hey Hi Antonio,

I built a collection of remote job opportunities from around the world 🌎.

Let me share the GitHub link: github.com/maurobonfietti/remote-jobs

Collapse
 
litlyx profile image
Antonio | CEO at Litlyx.com

This is amazing. Are you updating this repository in real time?

Collapse
 
maurobonfietti profile image
Mauro Bonfietti

It's updated once a day (around ~11 am 🇦🇷 Arg time)

Collapse
 
ra_jeeves profile image
Rajeev R. Sharma

Name: Name-Insights
Repository on github: Link
Short Description: It is a small 3-in-1 tool for evaluating domain names, comparing two names and get name ideas based on the app purpose. It evaluates and scores the names across 6 different aspects, thereby giving you more context and the rationale behind. Powered by Claude 3.5 Sonnet it is definitely better than getting name suggestions from an AI directly.

Collapse
 
litlyx profile image
Antonio | CEO at Litlyx.com

Thanks!

Collapse
 
edwinkys profile image
Edwin Kys

Name: OasysDB
Repository on github: OasysDB
Short Description: OasysDB is a hybrid vector database with configurable SQL storage and vector indexing layer. With multi-index support, OasysDB is flexible enough to support multi-modality in modern generative AI applications.

Collapse
 
litlyx profile image
Antonio | CEO at Litlyx.com

Great project here!

Collapse
 
salimcodes profile image
Salim Ọlánrewájú Oyinlọlá

Name: Beyond the Classroom
Check out here: Link
Short Description: Beyond the Classroom is no open source project but the idea is to tell stories of amazing Nigerian students doing amazing things with their tech careers in a bid to inspire others.

Collapse
 
litlyx profile image
Antonio | CEO at Litlyx.com

Great idea. Maybe is not Code, but i think youtube content creators like you are "Kinda Open Source" because they give value for free.

Collapse
 
best_codes profile image
Best Codes • Edited

Image description

  • Name: Codequill
  • Repo: github.com/The-Best-Codes/codequill
  • Description: CodeQuill is a web-based code editor designed to offer a free, easy, and efficient way to organize, store, edit, and share code snippets directly from your device. Whether you're working on personal projects or simply storing snippets for future reference, CodeQuill provides a seamless experience for managing your code.
Collapse
 
litlyx profile image
Antonio | CEO at Litlyx.com

Great! Thanks for sharing with us!

Collapse
 
leew profile image
Wei Lee
  • Name: commitizen
  • Repository on github: commitizen
  • Short Description: Create committing rules for projects 🚀 auto bump versions ⬆️ and auto changelog generation 📂
Collapse
 
litlyx profile image
Antonio | CEO at Litlyx.com

Wow this i will try for sure! Seems a very well thoughts CLI experience. Thanks for sharing!

Collapse
 
algot profile image
AlgoT

Where to start... I guess one of the most popular:

  • Name: Bybit SDK
  • Repository on github: bybit-api
  • Short Description: Complete SDK for Bybit's APIs and WebSockets (bybit is a crypto exchange).

At this point I have a growing number of public SDKs that are getting increasingly popular for a number of top exchanges. Some are private and haven't reached the public yet. Also sometimes release smaller tools to make the life of aspiring algo traders easier, such as the micro-utility for handling orderbook events (snapshots or deltas) for tracking a local orderbook in-memory:
npmjs.com/package/orderbooks

Collapse
 
litlyx profile image
Antonio | CEO at Litlyx.com

Great work my man!

Collapse
 
venki91 profile image
Venki
  • Name: Errsole

  • Repository on GitHub: github.com/errsole/errsole.js

  • Short Description: Errsole is a complete Node.js logger designed to collect, store, and visualize logs. A Node.js app using Errsole Logger can handle 90,000 more requests per minute than when using Elasticsearch and 70,000 more requests per minute than when using Amazon CloudWatch.

Collapse
 
litlyx profile image
Antonio | CEO at Litlyx.com

Thanks! This project can help a lot of developers out there!

Collapse
 
sethsandaru profile image
Seth Phat

ShipSaaS's Repositories some awesome Laravel libs for you guys 😉

Collapse
 
litlyx profile image
Antonio | CEO at Litlyx.com

Thanks for sharing with us!

Collapse
 
kerkg profile image
kerkg
  • name: multicellular
  • repository: multicellular
  • short description: multicellular (mlcl for short) is a game-making framework for Python and built with Python. At its core, mlcl utilizes turtle module to control and manipulate the pixels of your window pixels precisely. Also by utilizing an intermediate representation for images (pargf), mlcl lets you manipulate and create them using the game engine. Im currently building it but at worst in a few months, ıll release the alpha version. Ah also you'll have a built-in task manager
Collapse
 
litlyx profile image
Antonio | CEO at Litlyx.com

Keep up the good work!

Collapse
 
ahx profile image
Andreas Haller • Edited

Hi

  • Name: openapi_first
  • Repository on Github: github.com/ahx/openapi_first
  • Short Description: It's a Ruby library to support your API first / Design first workflow. You write your OpenAPI API description first (and discuss it with stakeholders) than you give it to openapi_first plus your Ruby/rack web framework of choice (Sinatra, Rails, Roda) and you get request validation just as described in your API description, plus response validation to make sure your implementation matches your API description.
Collapse
 
litlyx profile image
Antonio | CEO at Litlyx.com

I can see the potential here. Keep up the great work!

Collapse
 
jamalianpour profile image
Mohammad Jamalianpour
  • Name: Open Dev
  • Repository on github: Link
  • Short Description: Open Dev is a free and open-source assistant designed to make coding easier. Built with Flutter, Open Dev provides a suite of tools for developers to enhance their productivity and streamline their workflows. From parsing JSON to generating secure passwords, Open Dev offers a comprehensive set of utilities akin to those found in DevUtils and DevToys.
Collapse
 
litlyx profile image
Antonio | CEO at Litlyx.com

Really useful!

Collapse
 
liyasthomas profile image
Liyas Thomas

We are building an open source {free} Postman alternative: Hoppscotch - API request builder for web.

GitHub logo hoppscotch / hoppscotch

Open source API development ecosystem - https://hoppscotch.io (open-source alternative to Postman, Insomnia)

Collapse
 
litlyx profile image
Antonio | CEO at Litlyx.com

I really love it! An amazing project and people seems to understand. Yo uguys are doing so great!

Collapse
 
rahman_karim profile image
Rahman Karim

Name: TrendHive
Repository on GitHub: github.com/Rahmankarim/TrendHive
Short Description: TrendHive is a multitude of static pages dedicated to the latest trends, clothing collections, and style inspirations. Crafted with HTML, CSS, JavaScript, and Bootstrap (FrameWork)

Collapse
 
ezpieco profile image
Ezpie

More people need to see this! This is where every new thing open-source should get a chance to be introduced and help gain traction!

Collapse
 
litlyx profile image
Antonio | CEO at Litlyx.com

Thanks my man i will host this post once in a while so everybody of us can find great project out there. This is the magic of Open Source. I want to say thanks to everybody.

Collapse
 
adi73 profile image
Aditya

Name: golly
Repository on GitHub: golly
Short Description: Golly is a collection of reusable common utilities for the Go programming language. It aims to simplify Go development by providing essential tools and libraries, making it easier for developers to build robust and efficient applications.

Collapse
 
litlyx profile image
Antonio | CEO at Litlyx.com

I love to see the GO community grows!

Collapse
 
jigordev profile image
J. Igor Melo

Maia It is a micro framework under development for the nim language that uses the httpbeast library.

Collapse
 
litlyx profile image
Antonio | CEO at Litlyx.com

Nim i never listened before i will read something :) .

Collapse
 
jigordev profile image
J. Igor Melo

I dedicated time to this language and would like to see the community grow

Collapse
 
imduchuyyy profile image
imduchuyyy 🐬

Abstraction Wallet SDK Connect WebApp to the powerful wallet in Web3 industry

Collapse
 
litlyx profile image
Antonio | CEO at Litlyx.com

Thanks for sharing your project within this post!

Collapse
 
delverdl profile image
Delver René Domingo Lara

Name: Qt components.
GitHub repo: link.
Short description: Qt set of components to use in various applications from desktop to embedded, including mobile and Emscripten.

Collapse
 
nicolasomar profile image
Nicolás Omar González Passerino
  • Name: Reactive-Bulma.
  • Repository on github: Link.
  • Short Description: React/Typescript-based themed library based on CSS-only library Bulma.
Collapse
 
litlyx profile image
Antonio | CEO at Litlyx.com

Wow really handy!

Collapse
 
lucaargentieri profile image
Luca Argentieri

Vue-Player

Lightweight, customizable, and easy-to-implement vue video player.

The next step is do some refactor and provide a better preview

Collapse
 
litlyx profile image
Antonio | CEO at Litlyx.com

This is so handy. Thanks for sharing Luca (è bello avere un'altro italiano sulla piattaforma)

Collapse
 
bobbyiliev profile image
Bobby Iliev

GitHub logo bobbyiliev / introduction-to-bash-scripting

Free Introduction to Bash Scripting eBook

💡 Introduction to Bash Scripting

This is an open-source introduction to Bash scripting guide/ebook that will help you learn the basics of Bash scripting and start writing awesome Bash scripts that will help you automate your daily SysOps, DevOps, and Dev tasks. No matter if you are a DevOps/SysOps engineer, developer, or just a Linux enthusiast, you can use Bash scripts to combine different Linux commands and automate boring and repetitive daily tasks, so that you can focus on more productive and fun things.

The guide is suitable for anyone working as a developer, system administrator, or a DevOps engineer and wants to learn the basics of Bash scripting.

🚀 Download

To download a copy of the ebook use one of the following links:

📘 Chapters

The first 13 chapters would be purely focused on getting some solid Bash scripting foundations then the rest of…

Collapse
 
litlyx profile image
Antonio | CEO at Litlyx.com

Amazing knowledge sharing right here. Thanks a lot!

Collapse
 
ezpieco profile image
Ezpie

That's a nice ebook you wrote.

Collapse
 
sigoloh profile image
Augusto Sigolo

Name: Abaporu Lang
Repository: github.com/Sigoloh/abaporu-lang
Description: A simple turing complete language that thakes Hex Colors and use then to perform operations

Collapse
 
litlyx profile image
Antonio | CEO at Litlyx.com

Keep up the good work!

Collapse
 
thiagodella profile image
Thiago Della Libera Moreira

Respeitei, meu bom! Haha!

Collapse
 
kiraaziz profile image
kiraaziz

animated portfolio github.com/kiraaziz/new-me

Collapse
 
litlyx profile image
Antonio | CEO at Litlyx.com

Just a tip! Let us know in the readme file how the hosted portfolio looks like! Put an image to showcase. Thanks for sharing

Collapse
 
kiraaziz profile image
kiraaziz

Just clone it and link it to vercel and that it a it's a simple react app. Or if you like have other one rjaziz.com

Thread Thread
 
litlyx profile image
Antonio | CEO at Litlyx.com

Is always a good practice to show the look and feel before asking to somebody to host your solution. Just a tip man. Great work btw is a cool style.

Collapse
 
darkwiiplayer profile image
𒎏Wii 🏳️‍⚧️

That looks really cool, I love the vibe 😁👍

Collapse
 
growupanand profile image
UTKARSH ANAND
  • Name: ConvoForm
  • Repository on github: Link
  • Short Description: Imagine Google Forms, but supercharged with AI for creating conversational forms easy. I started this project as a learning exercise, and I made an effort to employ best practices and the most recent stack to create a well-structured repository.
Collapse
 
adamlui profile image
Adam Lui • Edited
  • Name: AmazonGPT
  • Repository on GitHub: Link
  • Short Description: Add AI to Amazon shopping

Collapse
 
trapajim profile image
Tobias

Name: testpilot
Repository on github: Link
Short Description: testpilot is a http testing library for go projects to create test plans and simplify re-using responses in follow up requests

Collapse
 
stsrki profile image
Mladen Macanović
  • Name: Blazorise
  • Repository on GitHub: github.com/Megabit/Blazorise
  • Short Description: Blazorise is an open-source component library for Blazor that provides a wide range of UI components compatible with popular CSS frameworks like Bootstrap, Fluent, and Material. It simplifies web development by offering pre-built components and responsive design, allowing developers to create modern web applications using C#.
Collapse
 
mateusarcedev profile image
Mateus Arce

Name: DevLinks
Repository on github: DevLinks
Short Description: DevLinks is a hub of tools for programmers.

Translate to english in progress...

Visit DevLinks

Collapse
 
asmyshlyaev177 profile image
Alex

Github: github.com/asmyshlyaev177/state-in...
Description: small library to share user data between components and sync with URL, mainly for Next.js. Can open an issue if you need more features.

Collapse
 
max529 profile image
Maxime Bétrisey

Name: AventusJS
Repository on github: Link
Website: Link
Short Description: AventusJS is a JavaScript framework designed for building web applications using Object-Oriented Programming. It leverages Web Components to ensure encapsulation, promoting modular code that's independent of other frameworks. With AventusJS, developers can create robust and maintainable applications while avoiding the complexities of integrating with external libraries.

Collapse
 
m4rcoperuano profile image
Marco Ledesma
Collapse
 
litlyx profile image
Antonio | CEO at Litlyx.com

Great laravel project!

Collapse
 
empe profile image
Emil Pearce

What a fantastic initiative!

  • Name: Novu
  • Repository on GitHub: Link
  • Short Description: Novu is an open-source notification infrastructure that simplifies sending notifications across InApp, email, SMS, chat (Discord, Slack, WhatsApp), and push channels using a unified API, and allows building workflows with code.

The main goal is to provide developers with a simple and straightforward way to build and maintain notification workflows using code, while offering a user-friendly UI for non-developers to easily modify notification content.

This visual should help understand it a bit more:
Image description

Collapse
 
i-like-databases profile image
Abhijit

Checkout our pdf segmentation model on hugging face deformable-detr-DocLayNet

Our open source model is Deformable DETR trained on the DocLayNet dataset. It can currently identify images, captions, tables and other elements of your pdf and spits them out as bounding boxes and labels in a JSON object. You can also try it out here as a service.

Collapse
 
ccbhj profile image
bingjia

Name: gendsl
Repository on github: gendsl
Short Description: gendsl is a golang framework that helps you define your own DSL(Domain Specified Language) without accessing any lexer or parser. You can not only define your own function using golang but also manipulate the abstract syntax tree and create macros with the 'if', 'switch' semantic.

Collapse
 
burhanrashid52 profile image
Burhanuddin Rashid

PhotoEditor

github.com/burhanrashid52/PhotoEditor

An android Photo Editor library with simple, easy support for image editing using paints, text, filters, emoji, and stickers like Instagram stories.

Collapse
 
prathamjagga profile image
Pratham Jagga
  • Automarket
  • Is a Web Platform to design and execute automation workflows, workflows are composed of atomic actions like ask chatgpt, send email, write to google sheet, etc.
  • Link: Automarket - Github
Collapse
 
harimanok profile image
Hari Lamichhane

Name: Animata
Repository on github: Link
Short Description: Animated and interactive React components built using TailwindCSS, TypeScript, and framer-motion.

Collapse
 
fonteeboa profile image
João Victor • Edited

Name: Log Guardian
Repository on github: Link
Short Description: Log Guardian is a library developed to standardize and manage logs efficiently and in an organized manner in systems.

Collapse
 
nmeylan profile image
Nicolas • Edited
  • Name: json-table-editor
  • Repository: github.com/nmeylan/json-table-editor
  • Short description: A tool to provide a table representation of json array, to ease visualisation and edition of large json array with performance as main objective
Collapse
 
litlyx profile image
Antonio | CEO at Litlyx.com

Pretty good tool! Thanks for sharing!

Collapse
 
fonteeboa profile image
João Victor

Name: React Starter
Repository on github: Link
Short Description: React Starter is a boilerplate project designed to help you quickly set up a React application with a customizable folder structure, TypeScript support, and pre-configured testing setup using Jest and React Testing Library. This project aims to simplify the initial setup process and provide a robust foundation for building React applications.

Collapse
 
brenopms profile image
Breno Silva

A control systems library written in typescript for all the engineers out there

Collapse
 
litlyx profile image
Antonio | CEO at Litlyx.com

Thanks for sharing this with us!

Collapse
 
rebeccapeltz profile image
Rebeccca Peltz

link-reveal is a chrome v3 extension for helping to predict phishing attempts on a web page

Collapse
 
litlyx profile image
Antonio | CEO at Litlyx.com

Thanks for sharing!

Collapse
 
mohamed_karim_2dddebb42bd profile image
mohamed karim

Thank for sharing

Collapse
 
clouddragonlee profile image
在下uptown
  1. name: DatalinkX
  2. Github link: github.com/SplitfireUptown/datalinkx
  3. Data synchronization between different data sources, supporting both streaming and streaming data sources
Collapse
 
happer64bit profile image
Wint Khant Lin

Name: Hyperscript
Repository on GitHub: Here
Short Description: HTTP testing with YAML/YML configuration syntax written in Python.

Collapse
 
koral profile image
Karol Wrótniak

Name: android-gif-drawable
Repository on github: Link
Short Description: Views and Drawable for displaying animated GIFs on Android

Collapse
 
sevensolutions profile image
Daniel Peinhopf • Edited
  • Name: Nomad IIS Plugin
  • Repository on github: Link
  • Short Description: A TaskDriver plugin for HashiCorp Nomad to run IIS workloads.
Collapse
 
hunghg255 profile image
Hung Hoang

Name: Reactjs Tiptap Editor
Repository on github: reactjs-tiptap-editor-playground.v...
Short Description: A modern WYSIWYG rich text editor based on tiptap and shadcn ui for Reactjs