Want to setup a voice-to-voice communication service/group call service on rails. Where should I start? [closed] - ruby-on-rails

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I already have a fair bit of experience making rails applications, but I have never really tried to make an application with the use of a microphone. I don’t need to have video call, only voice, but I would want to control how many people could connect to a single call. Also I would like it to not have to do with actual phone numbers, but have a completely separate service like skype. Any help would be appreciated, Thanks!

This is not a trivial rails app, but just from googling I found Adhearsion
Check it out: http://www.adhearsion.com/
Adhearsion is a full-featured framework for the development of
applications which interact with or control voice communications.

Related

How to find link to media in any site [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 hours ago.
Improve this question
Note
I barely have any knowledge on web development but got some idea.
What I'm doing
I'm trying to make a Rust program to scrape any link to a media in a website, like how JDownloader 2 does. Not required to find all media, just any media this is simple enough to get.
Problems
Resolving links to media (Blob, Data)
Site that result differently on browser to a single get request (I have some idea that this might need a web driver but I want to have least dependency as much as possible)
Question
How did JDownloader find these media so I can implement it in my crate? (Just enough information to get start)

I made a game with Ruby, How do I make it playable on the internet?[Ruby] [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 years ago.
Improve this question
It is a very simple game, only consisting of about 80 lines of code, and 2 images. I am a new developer, so pardon my ignorance.
I uploaded the three files to a domain, but when I visit the location, it just downloads the file.
What do I need to do in order to have the file be executed opposed to just downloaded? What other information is relevant to running it as a 'web app'?
Thanks
If you're written a console application (which it sounds like you have) then you will not be able to run it on the web. Depending on what you've made you may be able to translate it into a web application using a Ruby web framework like Ruby on Rails or Sinatra. If you link to your GitHub or wherever the code is you may be able to get more specific advice.

How may I customize app suggestions in iOS [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
I would like to customise App Suggestions in iOS programatically.
It usually says Good Morning and my app name.
Is it possible that I configure it to say something other than "good morning"?
Can I control when and where it appears?
I couldn't find much information in this regard.
Thanks,
Elstine
You can't modify App Suggestions from an application, as that content is outside of the scope of an app's sandbox.
"Good Morning" appears there because the App Suggestion feature detected that you usually use a particular app in the morning and greets you with an according message. Those strings come directly from this feature and are not app-dependent; therefore, they can't be changed as of now.

Swift - Run Code Stored Online [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I know this is probably a long shot but I wanted to know if there is any relatively easy way to run swift code which is stored on a server or hosted somewhere other than the application bundle. I would like to be able to change single lines of code without having to publish an update to the app.
If anyone could help or has a work around then that would be great.
Thanks
No it's both not possible (there is no compiler on an iOS device) and not allowed (downloading code is expressly forbidden by Apple's app store guidelines.)
So you both cannot and may not do this.

How to send an E-mail over an iOS app using Swift? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I would like to allow users to send me emails directly through my app, and am wondering if this is possible to do?
Your best and most simple way is to bring up the send email view (or even mailto:) with your app specific email to receive comments and requests on.
Another option is to design a web page that has a couple of fields for information and then hooking it up with PHP.
Just about anything works, it all depends on how you balance user experience and easy of implementation.

Resources