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
Piuma Screenshots |
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
<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 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 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 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 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 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: |
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
{ | |
"openapi": "3.0.3", | |
"info": { | |
"title": "SDK example - OpenAPI 3.0", | |
"description": "This spec is meant to demonstrate how to use the SDK generator by readme.io", | |
"version": "1.0.11" | |
}, | |
"servers": [ | |
{ | |
"url": "https://reqres.in/api" |
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
alert("shows up"); |
NewerOlder