Java
Lua
| Java | Lua | |
|---|---|---|
| 10 | 122 | |
| 65,792 | 10,011 | |
| 0.5% | 1.0% | |
| 9.6 | 8.5 | |
| 6 days ago | 7 days ago | |
| Java | C | |
| MIT License | MIT License |
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
Java
- Algorithms Implemented in Java
-
How I merged Five Pull Requests, Lose Sanity, and Laugh It Off
PR: TheAlgorithms/Java#5580 Contribution Summary:
-
Top 10 GitHub Repositories for Python and Java Developers
6. The Algorithms - Java This repository contains implementations of popular algorithms and data structures in Java, making it a valuable learning tool for those interested in these topics. https://github.com/winterbe/java8-tutorial
- Cool Github repositories for Everyone
-
Algorithms and data structures implemented in many programming languages
yeah I agree. I think it's because they pretty much allow contributions of algorithms from various people and the code review standards are not super high. I recall at one point the BFS algorithm in Java actually used an ArrayList (roughly equivalent to std::vector) for the queue, which is silly because popping from the front is O(N), so I had to submit a fix for that:
https://github.com/TheAlgorithms/Java/pull/3231
but I agree that basic low-hanging issues like this (and the exponential-time fibonacci that another commenter pointed out) really prevents me from taking this repo very seriously
- Ingeniería informática. ¿Alguien me puede hablar de sus experiencias?
- GitHub - TheAlgorithms/Java: All Algorithms implemented in Java
-
Any beginner-friendly tutorials on hashing +salting strings?
here you can use of the ciphers
-
Where is the best place online to learn Java?
I would start by learning about base class libraries: What is java and then study how some algorithms might be implemented by looking at this repository
Lua
-
RediShell: Critical Remote Code Execution
Seems similar in impact to https://nvd.nist.gov/vuln/detail/cve-2021-32626, I wonder why this has a CVE 10.
This code also looks generally fixed in Lua5.4, https://github.com/lua/lua/blame/9ea06e61f20ae34974226074fc6.... Valkey and Redis really need to move to Lua that isn't so old.
- Compact Representations for Arrays in Lua [pdf]
-
Recent Performance Improvements in Function Calls in CPython
One of the performance improvements mentioned is "Remove the usage of the C stack in Python to Python calls" [0]. Since Python 3.11, a Python-level function call can be evaluated within the bytecode interpreter loop, no longer requiring a C-level function call.
Interestingly, Lua did the opposite. Its implementation introduced C-level function calls for performance reasons [1] (although this change was reverted in 5.4.2 [2]).
[0] https://bugs.python.org/issue45256
[1] https://github.com/lua/lua/commit/196c87c9cecfacf978f37de4ec...
[1] https://github.com/lua/lua/commit/5d8ce05b3f6fad79e37ed21c10...
-
What do I think about Lua after shipping a project with 60k lines of code?
I would start at https://lua.org/
I'm creating a set of libraries to make Lua into a (still lightweight) application language
https://github.com/civboot/civlua
-
5-Step Approach: ProjectSveltos Event Framework for Kubernetes Deployment with Cilium Gateway API
The EventSource uses the Lua language to search for any services with ports set to 80 or 443 in the ‘argocd’ namespace. More examples can be found here.
-
Building a Wordle Clone with Lua! 🕹
If you're new to the 12 in 24 series, I'm learning and building projects with a new programming language every month - this month, it's the Lua scripting language. You can find source code for the projects I build in the official GitHub repository (check it out, this week's folder contains code for both this and two other bonus projects!).
-
Gearing up for Lua
This month, we're talking about Lua. It's not always a first choice when it comes to programming, but I think there's a lot to enjoy about this little language. Heck, I'm a big game development fan myself - I would look into it even if that was the only reason to.
-
Pluto, a Modern Lua Dialect
It’s Portuguese. It’s the same in the Lua codebase [1].
[1]: https://github.com/lua/lua
-
Fluent Bit with ECS: Configuration Tips and Tricks
If we think we need more flexibility for processing records, we can write our own embedded filters using Lua language. Lua is a highly efficient programming language used mainly for embedded scripting.
- A Linguagem Lua completa 30 anos!
What are some alternatives?
C - Collection of various algorithms in mathematics, machine learning, computer science, physics, etc implemented in C for educational purposes.
luau - A small, fast, and embeddable programming language based on Lua with a gradual type system.
TheAlgorithms - All Algorithms implemented in Python
berry - A ultra-lightweight embedded scripting language optimized for microcontrollers.
Go - Algorithms and Data Structures implemented in Go for beginners, following best practices.
julia - The Julia Programming Language