Developer Docs

See what you can learn.

Here, you can find coding documentation which I have collected from around the internet. Languages currently include Sass and mySQL.

MySQL

Find documentation on programming as I come across articles I enjoy.

Sass

Source: freecodecamp.org

What Is sass?

Sass, or "Syntactically Awesome StyleSheets", is a language extension of CSS. It adds features that aren't available using basic CSS syntax. Sass makes it easier for developers to simplify and maintain the style sheets for their projects.

Sass can extend the CSS language because it is a preprocessor. It takes code written using Sass syntax, and converts it into basic CSS. This allows you to create variables, nest CSS rules into others, and import other Sass files, among other things. The result is more compact, easier to read code.

There are two syntaxes available for Sass. The first, known as SCSS (Sassy CSS) and used throughout these challenges, is an extension of the syntax of CSS. This means that every valid CSS stylesheet is a valid SCSS file with the same meaning. Files using this syntax have the .scss extension.

The second and older syntax, known as the indented syntax (or sometimes just "Sass"), uses indentation rather than brackets to indicate nesting of selectors, and newlines rather than semicolons to separate properties. Files using this syntax have the .sass extension.


MySQL

(Source: codecademy.org)

MANIPULATION

Congratulations! You've learned six commands commonly used to manage data stored in a relational database. What can we generalize so far?

SQL is a programming language designed to manipulate and manage data stored in relational databases.

A relational database is a database that organizes information into one or more tables.
A table is a collection of data organized into rows and columns.
A statement is a string of characters that the database recognizes as a valid command.


QUERIES

Congratulations!
We just learned how to query data from a database using SQL. We also learned how to filter queries to make the information more specific and useful.

Let's summarize: