.
|-- Actions
|-- APIs
| |-- Clients
| |-- Connectors
| |-- Gateways
| |-- Requests
| |-- Transports
|-- Bindings
This file contains hidden or 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
| Online kms host address: | |
| -------- | |
| kms.digiboy.ir | |
| 54.223.212.31 | |
| kms.cnlic.com | |
| kms.chinancce.com | |
| kms.ddns.net | |
| franklv.ddns.net | |
| k.zpale.com | |
| m.zpale.com |
This file contains hidden or 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
| {# | |
| /** | |
| * @file | |
| * Default theme implementation to display a paragraph in Bootstrap Paragraphs. | |
| * | |
| * Available variables: | |
| * - paragraph: Full paragraph entity. | |
| * - id: The paragraph ID. | |
| * - bundle: The type of the paragraph, for example, "image" or "text". | |
| * - authorid: The user ID of the paragraph author. |
This file contains hidden or 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
| <?php | |
| $ch = curl_init('https://www.howsmyssl.com/a/check'); | |
| curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); | |
| $data = curl_exec($ch); | |
| curl_close($ch); | |
| $json = json_decode($data); | |
| echo "<pre>TLS version: " . $json->tls_version . "</pre>\n"; |
This file contains hidden or 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
| @mixin breakpoint($minWidth: 0, $maxWidth: 0, $minHeight: 0, $maxHeight: 0) { | |
| $type: type-of($minWidth); | |
| @if $type == string { | |
| $class: $minWidth; | |
| @if $class == xs { | |
| @media (max-width: 767px) { @content; } | |
| } | |
É um design pattern que o Rails implementa a partir da gem ActiveRecord.
Serve para conectar a camada Model da aplicação com tabelas do database, para assim criar um modelo de domínio persistível, onde a lógica (Model) e dados (BD) são apresentados em uma única solução.
Já persiste no BD:
obj.create