DEV Community

BekahHW for OpenSauced

Posted on

Who's looking for open source contributors? (week 39)

Restarting something Ben was doing for a while, and we plan on doing this every Friday!

Open Source is about the community. Whether you have a project or you're looking to make your first PR.

Tell us about your project

Promote your project by providing a link to the repo. Everyone who posted in previous weeks is welcome back this week, as always 😄

Open Source should be a welcoming space for contributors. The README is the front door of your project. If you'd like to check out an example of a README, here's our OpenSauced/insights README.

If you submit please have the following in your repo to make it welcoming and helpful for contributors:

  1. README.md
  2. CONTRIBUTING.md

Finally, consider reading the Best Practices for Maintainers.

Happy coding!

Top comments (8)

Collapse
 
cbid2 profile image
Christine Belzie

Looking for some new resources to amplify womxn in open source:
Women-Led Open Source README Women-Led Open Source Contributing md

Collapse
 
darkterminal profile image
Imam Ali Mustofa

Hello Punk! Will you telling some Metaphor Story?

GitHub logo StreetCommunityProgrammer / metaphore

Story as Code. Public Collections of Metaphore our Freestyler accross the world. Gain knowledge with unusual perspective from our Punk members.

Metaphore

Metaphore Story (SCP) - Public Collections of Metaphor our Freestylers in the world. | Product Hunt

Public Collections of Metaphore our Freestylers accross the world. Gain knowledge with unusual perspective from our Punk members.

See it in action!




Every Punk can make any contributions to share your styles and unsual code snippet metaphor that belived it's something wrong different in traditional theory or usual business, but it's work! That our Punk Freestyle Engineer. Welcome to the Street Community Programmer

How it's work?

- We use GitHub issues templates to create a new metaphore.

- Once the metaphore is accepted, we use GitHub Action to generate a markdown file that contains the metaphore.

- The website vercel build is triggered and updated automatically.

- Your metaphore is now live online!

[ I have a story to list ]

Create & Share Your Metaphor Story

Don't ask how to contribute, just share what you want to share!

[ Let Me In ]

Notes

Every

Collapse
 
sriparno08 profile image
Sriparno Roy

This repository contains a list of useful resources that will help beginners get started with contributing to Open Source.

Contributors are welcomeee!

GitHub logo Sriparno08 / Start-Contributing

The list of resources you need to get started with contributing to Open Source!

🚀 Start Contributing

This repository is a collection of resources that will help you get started with contributing to Open Source.

Your contribution is most welcome! Kindly go through the CONTRIBUTING guide for details.

🧾 Table of Contents

🧐 Introduction to Open Source

  • What is Open Source?
  • How does it work?
  • Why should we contribute to it?

These are some of the questions that revolve around the world of Open Source.

Here are some priceless resources that will help answer the above questions in detail.

📄 Articles:

Collapse
 
thumbone profile image
Bernd Wechner

I guess I am ;-). But I have a very particular desire. I'm interested in finding folk motivated to provide tabletop gamers (board gamers, if you prefer), who are keen to contribute to a Python (Django) based back end with a Postgresql database and (surprise surprise) JS front end (albeit with nothing much fancier than JQuery at present). It's evolving but as a hobby sideline, and is an in service web site, but pre-beta, to wit I don't advertise it strongly at all, or need a flood of interest. It's by invite only at this stage.

But I have tried to find contributors locally in the gaming community, inducted 2, had another 2 or 3 offers, but in the years this project has been evolving am still to see a single line of contributed code or even documentation ... ;-). So perhaps rather than looking for gamers who love to code, this post reminds me, it might be time to throw a net out to coders (dev.to community) who love to game. And by game, we mean tabletop not computer or video games.

Drop me a line if you might be interested.

To consider how much effort is welcome, I offer this for context: I have been pottering on this very loosely starting with spreadsheets before moving to Python based solution since about 2014 ... and can and have given it maybe on average about 5 evening windows of my time between having children in bed and retiring per month (sometimes not touching it for two months or three sometimes doing a sprint where I am working on something for 10 such evenings across a month).

As stated, it's a sideline, a hobby interest, but a cool project and I would like to share it some time more broadly and in the interim on EoI (expression of interest). That said an enterprising soul could find it anyhow with a little research, it's not hidden, just not publicised).

Collapse
 
devkiran profile image
Kiran Krishnan

Looking for new contributors for github.com/boxyhq/saas-starter-kit

Collapse
 
bethropolis profile image
Bethuel

Anyone interested 😊

GitHub logo bethropolis / suplike-social-website

a full self-hosted social network, easy to setup with a nice UI.

logo

hello welcome to suplike

suplike github watch CodeFactor code

suplike is a social website similar to instagram and facebook for socializing and communications.
I built it some years back and it has been one of my favourite projects.
it's made out of PHP/JS/CSS

it's easy to install and setupfeatures;

check out demo;

Table



getting started

Installation

Requirements

  • PHP
  • Apache server
  • MySQL Database
  • SQL
  • phpMyAdmin

All of these requirements can be completed at once by simply installing a server stack like Wamp or Xampp etc.

Installation Steps

  1. Download the latest release file.

    you can get other releases here.

  2. unzip the file and extract all the files into your htdocs or www directory depending on what you are using.

I recommend renaming the folder to suplike (the url will be shorter).

alternatively you…




Collapse
 
bdougieyo profile image
Brian Douglas

Looking for documentation and testing in this project.

github.com/open-sauced/browser-ext...

Collapse
 
dnfesenk profile image
Denis Fesenko

The free alternatives to many SaaS services with paid subscriptions. Try it!

GitHub logo dnfesenk / html2openxml

html2openxml is a Java library converting HTML to OpenXML docx format, supporting various elements.

html2openxml: Java HTML to OpenXML converter

html2openxml is a Java library that converts HTML content to OpenXML format (Microsoft Word .docx format), supporting common HTML elements like paragraphs, bold, italic, underline, tables, and more. Built using docx4j and Jsoup, you can try a live demo of this library at html2openxml-demo.herokuapp.com/.

Maven Central

Table of Contents

Installation

Add the following dependency to your pom.xml:

<dependency>
  <groupId>com.denisfesenko</groupId>
  <artifactId>html2openxml</artifactId>
  <version>1.0.0</version>
</dependency>
Enter fullscreen mode Exit fullscreen mode

Or if you're using Gradle, add this to your build.gradle:

implementation 'com.denisfesenko:html2openxml:1.0.0'
Enter fullscreen mode Exit fullscreen mode

Usage

Here's a simple example of how to use html2openxml to convert HTML to a .docx file:

import com.denisfesenko.converter.HtmlToOpenXMLConverter
import org.docx4j.openpackaging.exceptions.InvalidFormatException;
import org.
Enter fullscreen mode Exit fullscreen mode