Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 4 months ago.
Improve this question
I am a mathematician who has programming skills. I have a (Math) YouTube channel and give paid math courses. I want to build (or adjust a template of) a web application that allows me to control access to my classes (private playlists on the youtube platform). I will authorize the customers who have already paid to see the courses. Is there a known way to do that? I will be grateful for any suggestions and enlightenment. Thanks in advance.
I know you are looking for suggestions for some kind of template to work/edit anything for yourself but have you ever considered using Udemy? It's great for posting your course/classes where only people who have already paid for your course, have access to it.
Related
Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 1 year ago.
Improve this question
I want to implement a private video chat room software onto my website. Like Google Meet without the bells and whistles (just video calling with a shareable private link).
I found an open source platform called Daily.co. Should I use this? What technical requirements would I need to hire a developer for? What would be the cost of a project like this?
I work at Daily so I can try to help answer this. We have two options (Custom or Daily Prebuilt, which can just be embedded right into your website or made full screen to fill the page). Prebuilt covers the use case you described and you'd really just need a dev comfortable with basic JavaScript (we've intentionally made this as easy to embed as possible.)
There's a custom option too if you want the video call UI to have a specific design, so that would take a dev with a bit more experience. :)
Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 2 years ago.
Improve this question
I am working on a rental-system project (website + backend + DB) which suppose to be carried forward by another team after first two releases. Just wanted to know how much helpful will the UML diagrams (like deployment diagram + sequence diagram + class diagram) be for the next batch of developers? Is yes then why we stopped using UML as documentation for all projects? If no then why?
ABSOLUTELY
Time and time again I argue with team leads that documentation must be created and passed along in order for a project to be sustainable. Otherwise it's up to teams to decipher code and assume what the intent was.
I've not been on a team that has even done basic application documentation/design/UML or other basic approaches for nearly 10 years. Drives me crazy.
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 6 years ago.
Improve this question
I just need to know one thing that is suppose, a user comes to my website and find option to get login using Facebook account then once he login, can i get and save the details of user to my database for communication purposes?
If it's possible then what's the way to implement this feature in php?
..
Good ideas will be welcomed !
Yes, you can implement a "Facebook login" to your website (as you can do it with Twitter, Google+, Steam and much more..).
To do it, you must use the OAuth2 API. You can do it with JavaScript or PHP.
Check this link, it can help you.
I hope it helps you.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 years ago.
Improve this question
My Boss just gave me a website of his friend so the developer that build it was fired and i need to access the data base to change things.
The Website is developed using Bootstrap and I never used it Before where do I find the definition of the database connection help please.
Nowhere.
Bootstrap is a collection of CSS and (client-side) JavaScript.
It isn't a traditional, server-side MVC framework (or anything else that would fulfil a similar role) and doesn't do anything that would involve a database.
Bootstrap might be used in the output of a View from such a framework, but that's handled at a different level in the codebase.
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 want to get the dates booked and price from the the airbnb page: https://www.airbnb.com.sg/rooms/2781352 under the "Calendar" tab of it.
I am quite newbie to this, and I want to python to do that, can I?
And what else should learn, javascript, PHP?
For extracting data from web pages, my first stop is Beautifulsoup. It is designed for just this purpose, and is excellent at it. Combine it with the great requests HTTP library (so much better and easier than urllib/urllib2/etc.) for getting the pages.
Both of these are Python modules, there is no need to learn any other programming languages to do it, although it greatly helps to have an understanding of HTML and DTDs (Document Type Definitions) for setting up paths.