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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Tenseri — Onboarding</title> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/vue/3.4.21/vue.global.prod.min.js"></script> | |
| <style> | |
| /* Same token subset as your main stylesheet — delete this :root | |
| block once this page pulls in the real one, keep the rest. */ |
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
| dfdf |
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
| Piuma Screenshots |
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
| <table > | |
| <tr> | |
| <th>Header 1</th> | |
| <th>Header 2</th> | |
| <th>Header 3</th> | |
| </tr> | |
| <tr> | |
| <td>Row 1 column 1</td> | |
| <td>Row 1 column 2</td> | |
| <td>Row 1 column 3</td> |
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
| from decimal import Decimal | |
| number = 2 | |
| x = (number/2) | |
| for _ in range(10000): | |
| x = Decimal( x - ( ((x**2)-2) / (2*x) ) ) | |
| print(x) |
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
| from decimal import Decimal | |
| def find_square_root(number, decimal_places, current_result=None, current_decimal_place=1): | |
| # Find the integer part of the square root | |
| if current_result is None: | |
| current_result = int(number / 2) | |
| # Check if we have computed the required number of decimal places | |
| if current_decimal_place-1 == decimal_places: | |
| return current_result |
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 | |
| use Illuminate\Support\Facades\Process; | |
| $__tinkerModeDefinedVars__ = get_defined_vars(); | |
| $_reload = function ($lineStart = null, $endLine = null) use ($__tinkerModeDefinedVars__) { | |
| $histFile = '.__tinkerMode__history.php'; //stores executable history |
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
| { | |
| "openapi": "3.0.1", | |
| "info": { | |
| "title": "Questionnaire Links API", | |
| "description": "The questionnaire link API.\n", | |
| "version": "1.0.0" | |
| }, | |
| "/questionnaire-links": { | |
| "get": { | |
| "tags": [ |
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
| openapi: 3.0.3 | |
| info: | |
| title: Simple OpenAPI template | |
| description: | | |
| Simple open API template | |
| license: | |
| name: Apache 2.0 | |
| url: http://www.apache.org/licenses/LICENSE-2.0.html | |
| version: 1.0.11 | |
| servers: |
NewerOlder