You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/pages/03-data/00-data.markdown
+7Lines changed: 7 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -86,6 +86,13 @@ and [data visualization](/data-visualization.html) pages.
86
86
combines earthquake data with questions around earthquake recurrence
87
87
probabilities to tell its story.
88
88
89
+
*[Data Science Project: Profitable App Profiles for App Store and Google Play](https://www.dataquest.io/blog/basic-data-science-portfolio-project-tutorial/)
90
+
is a tutorial that shows you how to use iOS and Android app store data
91
+
for business analysis. This post is part of a larger series on
92
+
[how to get your first job as a data scientist](https://www.dataquest.io/blog/how-to-get-your-first-data-science-job/)
93
+
which is all worth your time reading to understand the intersection of
94
+
working with data to figure out its value to companies sand organizations.
95
+
89
96
90
97
### Example data sets
91
98
Looking for freely-available data to use in your projects but aren't
is amazing because they are given by the creator and he shines a ton
127
+
of light on how SQLite is built and why.
128
+
121
129
*[How SQLite is tested](https://www.sqlite.org/testing.html) digs into the
122
130
nitty-gritty behind the quality assurance practices for testing potential
123
131
SQLite releases.
@@ -148,3 +156,15 @@ you are having with SQLite rather than going through a general tutorial.
148
156
covers how to control access to the SQLite database connection and
149
157
file even though SQLite normally allows unauthorized access by design.
150
158
159
+
*[Can I read and write to a SQLite database concurrently from multiple connections?](https://stackoverflow.com/questions/10325683/can-i-read-and-write-to-a-sqlite-database-concurrently-from-multiple-connections)
160
+
answers one of the concerns that was an issue in earlier versions of
161
+
SQLite that could have issues if more than one connection was writing
162
+
to the database at one time.
163
+
164
+
*[Appropriate uses for SQLite](https://sqlite.org/whentouse.html) is an
165
+
official documentation page that explains what types of applications
166
+
are designed to work well with SQLite as the backend.
167
+
168
+
*[How to corrupt a SQLite file](https://sqlite.org/howtocorrupt.html)
169
+
explains how the database file could potentially get corrupted if you
<divclass="well see-also">The Django ORM is an implementation of the <ahref="/object-relational-mappers-orms.html">object-relational mapping (ORM)</a> concept. Learn more in the <ahref="/data.html">data</a> chapter or view <ahref="/table-of-contents.html">all topics</a>.</div>
Copy file name to clipboardExpand all lines: content/pages/05-deployment/41-google-cloud-functions.markdown
+9Lines changed: 9 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -27,3 +27,12 @@ alternative until Google Cloud Functions supports Python.
27
27
*[Microsoft Azure Functions vs. Google Cloud Functions vs. AWS Lambda](http://cloudacademy.com/blog/microsoft-azure-functions-vs-google-cloud-functions-fight-for-serverless-cloud-domination-continues/)
28
28
gives an overview of these three serverless cloud platforms and
29
29
compares their current capabilities.
30
+
31
+
*[Getting Started With Google Cloud Functions and MongoDB](https://thecodebarbarian.com/getting-started-with-google-cloud-functions-and-mongodb.html)
32
+
explains how to connect a
33
+
[Google Cloud Function](/google-cloud-functions.html) to a persistent
34
+
[MongoDB](/mongodb.html) data store.
35
+
36
+
*[Running End to End tests as Google Cloud Functions](https://hackernoon.com/running-end-to-end-tests-as-google-cloud-functions-f5e34ffc3984)
37
+
provides the code and a walkthrough for running a headless Chrome
38
+
instance in a serverless Cloud Function to perform browser-based tests.
0 commit comments