-
Notifications
You must be signed in to change notification settings - Fork 13k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into css-frameworks
- Loading branch information
Showing
18 changed files
with
125 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
--- | ||
topic: async-await | ||
display_name: async/await | ||
short_description: async/await allows an asynchronous, non-blocking function to be structured in a way similar to an ordinary synchronous function. | ||
related: callback, coroutines, async, promise, future, actor-model, continuation-passing-style, concurrent-computing | ||
released: 2007 | ||
wikipedia_url: https://en.wikipedia.org/wiki/Async/await | ||
--- | ||
In computer programming, the **async/await** pattern is a syntactic feature of many programming languages that allows an asynchronous, non-blocking function to be structured in a way similar to an ordinary synchronous function, and is primarily intended to provide opportunities for the program to execute other code while waiting for a long-running, asynchronous task to complete, usually represented by promises or similar data structures. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
--- | ||
aliases: demos | ||
display_name: Demo | ||
short_description: A example of a product or system. | ||
topic: demo | ||
wikipedia_url: https://en.wikipedia.org/wiki/Technology_demonstration | ||
--- | ||
A rough example or otherwise incomplete version of a conceivable product or future system. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
aliases: examples | ||
display_name: Example | ||
short_description: A representation of something. | ||
topic: example | ||
--- | ||
A particular instance of something that is a representative of a group, or an illustration of somethign that's been generally described. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
--- | ||
aliases: julia-fractal, julia-set | ||
display_name: Julia Sets | ||
short_description: Julia Sets are mathematical objects generally associated with fractals. | ||
topic: julia-sets | ||
logo: julia-sets.png | ||
wikipedia_url: https://en.wikipedia.org/wiki/Julia_set | ||
related: mandelbrot, fractal | ||
--- | ||
Julia Sets are mathematical objects relating to the field of complex dynamics. In general, Julia sets are studied in parallel to Fatou sets, as they are complementary sets defined from a complex function. | ||
To be specific, in a metric space $(X,d)$, a Fatou set of a map $f: X \to X$ is the maximal open subset of $X$ on which the family of iterates $\lbrace f^n \rbrace$ is equicontinuous, and the Julia set is its complement in $X$. | ||
|
||
To approximate images of these sets, a common approach is to iterate the function of interest over some subset of the complex plane, which often yield beautiful fractals. |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--- | ||
topic: promise | ||
display_name: Promise | ||
short_description: A promise is an object returned by an asynchronous function, which represents the current state of the operation. | ||
related: future, async-await, callback, deferred, coroutines, fiber, concurrency | ||
wikipedia_url: https://en.wikipedia.org/wiki/Futures_and_promises | ||
created_by: Barbara Liskov, Liuba Shrira, Mark S. Miller, Dean Tribble, Rob Jellinghaus, Daniel P. Friedman | ||
released: 1988 | ||
--- | ||
A **promise** is an object returned by an asynchronous function, which represents the current state of the operation. At the time the promise is returned to the caller, the operation often isn't finished, but the promise object provides methods to handle the eventual success or failure of the operation. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,12 @@ | ||
--- | ||
aliases: rest, rest-api-tutorial | ||
display_name: REST API | ||
related: api, graphql-api | ||
related: api, graphql-api, soap, rpc, wsdl | ||
short_description: A representational state transfer (REST) API is a way to provide | ||
compatibility between computer systems on the internet. | ||
topic: rest-api | ||
wikipedia_url: https://en.wikipedia.org/wiki/Representational_state_transfer | ||
created_by: Roy Fielding | ||
released: 2000 | ||
--- | ||
A representational state transfer (REST) API is a way to provide compatibility between computer systems on the Internet. The concept was first outlined in a dissertation by Roy Fielding in 2000. | ||
A **representational state transfer** (**REST**) **API** is a way to provide compatibility between computer systems on the internet. The concept was first outlined in a dissertation by Roy Fielding in 2000. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
--- | ||
display_name: RSpec | ||
short_description: rspec is a DSL for behaviour driven development for Ruby. | ||
topic: rspec | ||
logo: rspec.png | ||
wikipedia_url: https://en.wikipedia.org/wiki/RSpec | ||
github_url: https://github.com/rspec | ||
related: tdd, bdd, cucumber, minitest, gherkin, relish, domain-specific-language, jmock, capybara, ruby | ||
created_by: Andy Lindeman, Jon Rowe, Sam Phippen, Bradley Schaefer, Steven Baker, Dave Astels, Aslak Hellesøy | ||
released: May 18, 2007 | ||
--- | ||
**rspec** is a computer domain-specific language (DSL) testing tool written in the programming language Ruby to test Ruby code. It is a behavior-driven development (BDD) framework which is extensively used in production applications. The basic idea behind this concept is that of test-driven development (TDD) where the tests are written first and the development is based on writing just enough code that will fulfill those tests followed by refactoring. It contains its own mocking framework that is fully integrated into the framework based upon JMock. The simplicity in the RSpec syntax makes it one of the popular testing tools for Ruby applications. |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
aliases: scripts | ||
display_name: Script | ||
short_description: A program or sequence of instructions that is interpreted. | ||
topic: script | ||
--- | ||
A program or sequence of instructions that is interpreted or carried out by another program rather than by the computer processor. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
--- | ||
topic: tls | ||
display_name: TLS (Transport Layer Security) | ||
short_description: TLS is a cryptographic protocol designed to provide communications security over a computer network. | ||
aliases: ssl | ||
related: https, x509 | ||
created_by: Internet Engineering Task Force | ||
released: 1999 | ||
wikipedia_url: https://en.wikipedia.org/wiki/Transport_Layer_Security | ||
--- | ||
**TLS** (**Transport Layer Security**) is a cryptographic protocol designed to provide communications security over a computer network. The protocol is widely used in applications such as email, instant messaging, and voice over IP, but its use in securing HTTPS remains the most publicly visible. | ||
|
||
The TLS protocol aims primarily to provide security, including privacy (confidentiality), integrity, and authenticity through the use of cryptography, such as the use of certificates, between two or more communicating computer applications. It runs in the presentation layer and is itself composed of two layers: the TLS record and the TLS handshake protocols. | ||
|
||
TLS builds on the now-deprecated SSL (Secure Sockets Layer) specifications (1994, 1995, 1996) developed by Netscape Communications for adding the HTTPS protocol to their Navigator web browser. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters