HN user

sudo_bangbang

31 karma
Posts26
Comments11
View on HN
codeberg.org 24d ago

Show HN: Adipoli: a hand-wired keyboard for opposable thumbs

sudo_bangbang
4pts0
github.com 1mo ago

Show HN: A hand-wired keyboard for animals with opposable thumbs

sudo_bangbang
2pts0
github.com 6mo ago

Show HN: Learn how to make your first open source pull request on GitHub

sudo_bangbang
3pts0
news.ycombinator.com 9mo ago

Ask HN: Pure HTML micro-front end

sudo_bangbang
1pts0
news.ycombinator.com 1y ago

Ask HN: How to implement HTML fragments in file://

sudo_bangbang
2pts0
github.com 1y ago

Code Contributions

sudo_bangbang
2pts1
activist.org 2y ago

Show HN: activist.org – Open-source, nonprofit activism platform

sudo_bangbang
8pts0
github.com 2y ago

Show HN: Make your first open source contribution in 5 minutes

sudo_bangbang
33pts3
github.com 2y ago

Show HN: Hands on tutorial for open source contribution

sudo_bangbang
1pts0
github.com 3y ago

First Contributions, sandbox to learn how to contribute to projects on GitHub

sudo_bangbang
1pts1
svelte.dev 7y ago

Cybernetically Enhanced Web Apps

sudo_bangbang
1pts0
medium.com 7y ago

Hacktoberfest is back. Contribute to open source and get a cool T-shirt

sudo_bangbang
4pts2
medium.freecodecamp.org 8y ago

What’s the difference between UX and UI design?

sudo_bangbang
1pts0
medium.freecodecamp.org 8y ago

An Intro to Color Theory: How to combine colors and set the mood of your designs

sudo_bangbang
3pts0
www.lvguowei.me 8y ago

SICP Goodness – A deep dive into square root procedure

sudo_bangbang
16pts2
github.com 8y ago

Show HN: First Contributions – Make your first OpenSource contribution in 5 mins

sudo_bangbang
3pts1
github.com 8y ago

Show HN: Make your first open source contribution in 5 minutes

sudo_bangbang
2pts0
medium.freecodecamp.org 8y ago

How to make your first open source contribution in 5 minutes

sudo_bangbang
2pts0
github.com 8y ago

Show HN: First Contributions – Make your first OpenSource contribution in 5 mins

sudo_bangbang
1pts0
github.com 8y ago

Show HN: A project to help beginners get started on contributing to open source

sudo_bangbang
10pts0
github.com 8y ago

Show HN: A project to help beginners get started on contributing to open source

sudo_bangbang
1pts0
roshanjossey.github.io 8y ago

Show HN: First Contributions – Make your first opensource contribution in 5 mins

sudo_bangbang
2pts0
medium.com 8y ago

How drafting good issues in your open source project improves collaboration

sudo_bangbang
1pts0
roshanjossey.github.io 9y ago

Show HN: Make your first open source contribution in 5 minutes

sudo_bangbang
4pts0
github.com 9y ago

Show HN: A simple web developer portfolio

sudo_bangbang
1pts0
news.ycombinator.com 9y ago

What are the problems faced by people who are starting to contribute to OSS

sudo_bangbang
8pts13
* 1 year ago

I'm working on a project for people who are new to web development and open source.

https://github.com/Roshanjossey/code-contributions. Users will go through a tutorial, add an HTML file and submit a pull request to the same repository on GitHub.

I have two self imposed restrictions for this project.

1. Users shouldn't have to install anything or setup tooling 2. Their changes should be a separate HTML file

Reasoning behind (1) is to make the project more accessible. I'm assuming users would already have a web browser, text editor and terminal emulator on their machine. I'd like them to be able to complete the tutorial without installing any tooling (runtime, compiler etc) of a language. I'm expecting users to open `index.html` in their browser and see their changes.

Reasoning behind (2) is to avoid a big HTML file and merge conflicts

To implement fragments, I tried vanilla js, htmx, https://unpoly.com/ etc. My implementations ended up needing a server to be run on local (which goes against (1))

I ended up with a solution using iframes. All fragment HTML files are loaded in iframes now. I don't like this solution though. Ideally, I like to share scope, styles etc from the parent with child fragments.

If you have suggestions on enabling HTML fragments, please let me know.

Also, I'd love your feedback on this project. It's still in alpha stage and I'd love to improve.

The impact this project has on open source communities is something I often think about. To the point, I search on GitHub to see if there are random PRs to add names to Contributors list in other projects.

From those searches and getting feedback, I'm getting the feeling most users see this as a sandbox environment and real open source projects have different process.