Giter Site home page Giter Site logo

beginnerbounties.com's Introduction

๐Ÿ‘‹ I'm a Ruby and Rails developer building things for the community.

๐Ÿ’ป Here's a few of the projects I'm working on:

  • GoRails - Screencasts for Ruby on Rails developers
  • Jumpstart - A complete Ruby on Rails SaaS template
  • Hatchbox - Hosting for Ruby and Rails apps
  • RailsBytes - Reusable templates for adding features to Ruby on Rails apps
  • Rails Hackathon - A weekend hackathon for Ruby on Rails developers to get together and build their ideas.
  • Pay - A complete payments engine for Ruby on Rails apps
  • Noticed - Notifications system for Ruby on Rails apps
  • ActsAsTenant - Multitenancy for Ruby on Rails apps
  • A bunch of other Ruby gems

โœจ You can follow me on Twitter @excid3

If you like my work and want me to be able to keep improving it, please sponsor me on GitHub.

beginnerbounties.com's People

Contributors

aj-abhishek-jadav avatar dependabot[bot] avatar deyemiobaa avatar excid3 avatar ezekiel-cudium avatar gregmolnar avatar itsandl avatar mybuddyandrew avatar youngbloodcyb avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

beginnerbounties.com's Issues

Stronger password requirement

At the moment, the password requirement is min. 6 characters long without any restrictions on uppercase, lowercase, numbers, or symbols. For example, a user's password could be 123456 and it would meet the requirement. To ensure all users have a secure password, could I increase the password requirement? I have implemented this before using Devise's custom password and would love to work on this issue. I've also attached an image of how long it takes a hacker to brute force a password.

Screenshot 2023-03-03 at 12 21 18 PM

Add pagination with Pagy

The pagy gem is an excellent gem for adding pagination. Let's add pagination to the Bounties and Users::Bounties controllers using pagy.

  • Paginate the Bounties index
  • Paginate the Users::Bounties index

This project has a $20 bounty.

Password reset emails do not send

Repro:

Expected:

Password reset email is sent.

Actual:

500 error page.
image

Additional info:

I suspect a missing or incorrect mailer configuration. When I enter a dummy email address and submit, the page reloads with a validation error "email not found." So the exception only seems to happen when the email entered is actually registered.

Add ability for Users to sign up to receive updates

No idea if this is something you think would be useful but was thinking of something very simple to start.

Something bare-bones like allowing a user to opt-in to weekly updates where new issues created in the past week are still open are emailed out once a week as a gentle nudge to keep people coming back and looking for new issues.

If this is too soon or out of scope from what you all have planned, feel free to close!

Create testing suite to improve maintainability

Hi,

I noticed that the code for this project does not currently have any automated tests (especially for models). As tests can help ensure the reliability and maintainability of the codebase, I suggest that we add some automated tests to the project.

I'd be happy to help with this effort, so please let me know if this is something that you'd be interested in pursuing.

Thanks!

Add GitHub Actions CI

We should run standardrb and the Rails tests on GitHub Actions for pull requests and on the main branch.

We need to add the standardrb gem and the following config to .github/workflows/ci.yml

name: Tests

on:
  pull_request:
    branches:
      - '*'
  push:
    branches:
      - main

jobs:
  test:
    runs-on: ubuntu-latest
    services:
      postgres:
        image: postgres:latest
        env:
          POSTGRES_USER: postgres
          POSTGRES_PASSWORD: password
        ports: ['5432:5432']

    steps:
      - uses: actions/checkout@v3

      - name: Setup Ruby
        uses: ruby/setup-ruby@v1
        with:
          bundler: default
          bundler-cache: true

      - name: Setup Node
        uses: actions/setup-node@v3
        with:
          node-version: '18'
          cache: yarn

      - name: Install dependencies
        run: |
          sudo apt-get install -y -qq libvips
          yarn install --frozen-lockfile

      - name: Standardrb Check
        run: bundle exec standardrb

      - name: Run tests
        env:
          DATABASE_URL: postgres://postgres:password@localhost:5432/test
          RAILS_ENV: test
          PG_USER: postgres
        run: |
          bin/rails test:prepare
          bin/rails db:test:prepare
          bin/rails test
          bin/rails test:system

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.