Git Product home page Git Product logo

queued-music's People

Contributors

rldaulton 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  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

queued-music's Issues

iPhone: Taptic & Audio Feedback

Taptic Engine

Use an enum to add some taptic engine functionality to small feature points throughout the app:

public enum Vibration {
      case Light
      case Medium
      case Heavy
  
      @available(iOS 10.0, *)
      func hapticFeedback() -> UIImpactFeedbackGenerator {
          switch self {
          case .Heavy:
              return UIImpactFeedbackGenerator(style: .heavy)
          case .Medium:
              return UIImpactFeedbackGenerator(style: .medium)
          case .Light:
              return UIImpactFeedbackGenerator(style: .light)
          }
      }
}

And implement a global func API using:

@available(iOS 10.0, *)
   public func withHapticVibration(_ intesity: Vibration) {
       intesity.hapticFeedback().impactOccurred()
}

Sounds

The already implemented SwiftySound file will allow for quick sounds to be played.

For Example, using: Sound.play(file: "dog.wav") or Sound.play(url: fileURL)

iPhone: Crash - App Background Re-Enter

When app has been backgrounded for a while and the user is still checked in, once app enters active state / focus again, crash.

This is the only observable patter when finding this crash

Backend: Check Ins by hour

Allow venue owners to see number of check ins by the hour. This can then be extrapolated into daily, weekly, etc...

Backend: Remove Song from Queue

Create a backend function that monitors and deletes songs that drop below a determined vote threshold.

General Architecture Idea:
onWrite() to voteCount in the queue, trigger a function that checks if

  • the voteCount is < -10 (?)
  • AND if voteCount < ( usersCheckedIn.count * 0.25) ?

Perhaps delete a song if it falls past a negative vote balance based on a ratio of checked in users?

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.