Built with the vision to encourage open-source enthusiasts! We provide the best resources, conducts weekly contests to test your skills, a guide to Open-source, and help you build projects.
Jump into the world of Open-source
built with the vision to encourage open-source enthusiasts!
Get out of tutorial hell and start contributing
1
2
3
4
5
6
7
8
9
10
11
12
import matplotlib.pyplot as plt
def draw_scatterplot(x_values, y_values):
plt.scatter(x_values, y_values, s=20)
plt.title(“Scatter Plot”)
plt.xlabel(“x-values”)
plt.ylabel(“y-values”)
plt.show()
Copilot
const seconds = 3600
const minutes = seconds / 60
const hours = minutes / 60
const days = hours / 24
const weeks = days / 7
const months = days / 30
const years = months / 12
Copilot
package main
func Memoize(fn func (int) int) func (int) int {
cache := make(map[int]int)
return func(n int) int {
if v, ok := cache[n]; ok {
return v
}
cache[n] = fn(n)
return cache[n]
}
}
Copilot
Built with the vision to encourage open-source enthusiasts!
built with the vision to encourage open-source enthusiasts! built with the vision to encourage open-source enthusiasts!
Explore Projects to contribute
ClueLess Official Website
HTML
Tailwind CSS
built with the vision to encourage open-source enthusiasts!
SeamLess UI
HTML
Tailwind CSS
built with the vision to encourage open-source enthusiasts!
Flutter UI Components
Flutter
Tailwind CSS
built with the vision to encourage open-source enthusiasts!
Learn about some biggestOpen-source Programs
Lacking skills?
We got you covered.
built with the vision to encourage open-source enthusiasts built with the vision to encourage open-source enthusiasts