Giter VIP home page Giter VIP logo

timeless's Introduction

Timeless

Timeless is a single-page web application inspired by Flickr built using Ruby on Rails on the backend, PostgreSQL database, and React/Redux on the frontend.

Timeless is a personal project by Dong Kim.

Features

  • User accounts creation with secure authentication with guest login
  • Photo Streaming
  • photo uploading with management
  • Album creation for users
  • Profile page for each users with photos, photo stream, and albums view.
  • Comments availability on each Photo with management for each user.

Project Design

Timeless was designed and built in two weeks.

Technology

  • backend technology
    • Rails
      • Keeps password safe

          def password=(password)
            @password = password
            self.password_digest = BCrypt::Password.create(password)
          end
        
          def is_password?(password)
            BCrypt::Password.new(self.password_digest).is_password?(password)
          end
      • Filters data through given parameters and send back to frontend

        def index
          if (params[:data])
            photos = Photo.where(user_id: params[:data][:id])
            @photos = photos.includes(:user)
          else
            @photos = Photo.all.includes(:user)
          end
          render :index
        end
    • Database
      • PostgreSQL
    • jBuilder
      • To manipulate hash structures in JSON format
  • Frontend technology
    • React & Redux
      • Uses the components to keep renders organized and reusable. Action, API util, reducers, and store.
    • jQuery
      • To make AJAX request to the Rails server.
    • SCSS
      • Used to style.
    • Others
      • ReactDOM, React Router, React History, Link, Babel for transpiling JSX into javascript.
  • File storage (Cloudinary)
    • Used Cloudinary for image uploading, storing, manipulation, and for fast CDN.

timeless's People

Contributors

dankim93 avatar

Watchers

James Cloos avatar  avatar

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.