Default path of database in a bootstrap website? [closed] - javascript

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.

Related

What should I use to run HTML/CSS/JS code? [closed]

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 6 years ago.
Improve this question
I've created a few simple HTML/CSS/JS games. This time a few friends and I are going to create another game that people can download from some website. We want to use HTML CSS and JS even though that is probably not the best option.
All the games I created before I've used Chrome to run them. Of course I can't just make people run my games with Chrome. So how should I run it?
You can try using Electron (http://electron.atom.io/). You can use it to build desktop apps using Html/Css/Js.

Is it possible to practice AJAX using the Brackets web editor with local files only? [closed]

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
What I'm ultimately trying to accomplish: Making a site that allows you to browse through videos and add/remove them from an AJAX-controlled playlist. So far, my website has only been created through Brackets using local web files, and I'm curious how much I'll need to change my work environment if I want to begin using AJAX with my website. I've never used AJAX before, if that isn't obvious....
You have to use a local server like WAMP (http://www.wampserver.com/en/), MAMP(https://www.mamp.info/en/), or LAMP

How to get the data I need from airbnb web page? [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 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.

Javascript Python-Postgres [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 years ago.
Improve this question
I'm building a public database of scientific data.
By now I have a postgres 9.1 database running on a machine, and I've been using psycopg2 to interact from python 2.7.
At the other hand, I'm working on a Boilerplate html interface.
The question is, how to build the interaction between the webpage and the python/postgres database? which library should I use ?
Thanks in advance
What you're looking for is a web framework. Finding the right one is a hard choice and source of lots of discussions. Have a look at this list: http://wiki.python.org/moin/WebFrameworks

Is there a way to control an email service like yahoo using javascript? [closed]

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 8 years ago.
Improve this question
I am making an open-source addon for firefox and chrome called and I am wondering if there is a way to control an email service like yahoo using javascript?
You can control the look of the page and probably (although I cannot be sure) send and edit messages without having to use the on-page buttons, but you cannot do server-side stuff such as logging into an account from a page without a log-in on it or sending a message from a page other than the email sending page. If you have any specific questions about controlling one specific thing, please add them in the comments, and I may answer them.

Categories