Sorted list of cursors and added missing types, updated total count from 36 to 39. Added note about using auto (default) with URL cursor in case file is unavailable on page load.
I noticed most of the pseudo-selectors/pseudo-elements are missing from this section, so I created a basic document as a starting point for the ::after pseudo-element. I tried to follow the same layout and style as the other articles in this section. This document is meant to be a start and added to/expounded on.
It's also my first real pull request - so please let me know how I can improve if needed 👍
* Added Blender Info file
Added a Blender general information text file as my first participation to Hacktoberfest!
* Added Blender Info file
Added a Blender general information text file
* Added Blender 3D scene files
A simple 3D polar waters scene with an iceberg and a description on how to produce a water-like shader effect.
* fix (guide): Improve Java Lambda Expressions
Introduced several changes to the guide on Java Lambda Expressions. Currently, the guide is titled "Lambda Expressions" while it talks about the Stream API, which is an entirely different topic. It introduces code using Lambda expressions without even explaining what lambda expressions are.
Added content about Lambda Expressions - what they are, how they are written, etc. The new content would be helpful when reading about the subsequent content on Stream API.
The code introduced in Stream API also uses 'Method References' without any explanation of what they are. Added a link to an article about Method References for now, and will add more content about it soon.
Also fixed several style and formatting errors.
* Basic editing.
When using strpos() it is important to run a comparison to avoid mistaken values. Also, when files only contain PHP (such as the snippets shown), they should not have closing tags (?>) as this can cause undesirable output.
The document has mentioned about keys method in dictionary . An equivalent & frequently used method is values. Added description and example for the same
Revised formatting to follow PSR, included additional examples, added multiple conditions with logical operators, and added a reference to ternary operators.
Created a draft guide for finding a percent. Also added info about arithmetical operations on percentages. (first pull request, so please forgive any errors).
* Added fall-through documentation & return notation
Fall-through is an important feature of switch statements. In addition, best practices with break-usage have been included.
* fix: added closing switch curly braces
* fix: corrected link syntax
It is also known as an 'entry-controlled loop' since the condition is checked before the next iteration. Another example of an 'entry-controlled loop' is a while loop.
They can be categorized as:
(a) Entry controlled loops- Loops in which the condition is checked before every iteration. e.g. for loop, while loop
(a) Exit controlled loop- Loops in which the execution takes place once even if the condition is false. e.g. for do-while loop