POC: Difference between revisions

From Craft of Testing - Wiki (old)
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
Tag: Manual revert
 
(40 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{: Header_Nav}}
{{: Header_Nav}}
This page captures Proof of Concept work.
This page captures Proof of Concept work.
=== Two Columns ===
{{Flex columns|{{lorem ipsum}}|{{lorem ipsum}}}}


*[[Automation Key]]
*[[Automation Key]]
Line 8: Line 11:


=== Link Experiments ===
=== Link Experiments ===
[./Https://www.google.com/ https://www.google.com/]
*[[Automation Key|Automation Key (Internal)]]
*[https://wiki.craftoftesting.com/index.php?title=Language_Syntax_-_Side_by_Side_Examples External]
 
=== Template Experiments ===
 
=== Template Styles ===
<templatestyles src="Template:Stylish/styles.css" />
{| class="column-demo"
|The Zebra
|Looks
|Really
|good
|-
|and
|cute
|With
|lots
|-
|of stripes
|That make
|a horse
|Jealous
|}
 
{| class="zebra"
|The Zebra
|Looks
|Really
|good
|-
|and
|cute
|With
|lots
|-
|of stripes
|That make
|a horse
|Jealous
|}
 
 
 
Welcome
 
[[Template:Welcome]]
 
{{Welcome}}


=== Table Experiments ===
==== Thankyou ====
[[Template:Thankyou]]
 
{{Thankyou|all your effort|Me}}
 
{{Thankyou|2=Me|1=your friendship}}
 
{{Thankyou|signature=Me|reason=being who you are}}
 
{{Thankyou}}
 
===Table Experiments===
{| class="wikitable"
{| class="wikitable"
|+
|+
Line 23: Line 84:
|}
|}


 
=== SyntaxHighlight ===
{{: Codesample}}
<syntaxhighlight lang="python" style="border: 3px dashed blue;">
<syntaxhighlight lang="html4strict">
def quick_sort(arr):
<html>
less = []
  <body>
pivot_list = []
    <nowiki><p>Hello <span style="font-weight: bold;">world</span></nowiki>!
more = []
    <nowiki></p></nowiki>
if len(arr) <= 1:
  </body>
return arr
</html>
else:
</syntaxhighlight>
pass
 
‎</syntaxhighlight>
== Examples ==
{{Codesample|echo "hello world!"}}
{{Codesample|echo "hello world!"|lang=text|scheme=light}}
{{Codesample|$ echo "hello world!"|lang=shell-session|scheme=dark}}
{{Codesample|code=<nowiki>{{Codesample}}</nowiki>|lang=moin}}
{{Codesample|name=ingress.yaml|lang=yaml|scheme=dark|line=1|highlight=5,8|code=
---
apiVersion: networking.k8s.io/v1beta1
kind: Ingress
metadata:
  name: foo-redirect
  namespace: tool-foo
  labels:
    name: foo-redirect
  annotations:
    kubernetes.io/ingress.class: nginx
    nginx.ingress.kubernetes.io/permanent-redirect: https://bar.toolforge.org/$1$is_args$args
spec:
  rules:
    - host: foo.toolforge.org
      http:
        paths:
          - backend:
              serviceName: unused
              servicePort: 8000
            path: /(.*)
}}
{{Codesample|name=metadata|lang=yaml|scheme=light|line=1|start=5|highlight=1,4|code=
  name: foo-redirect
  namespace: tool-foo
  labels:
    name: foo-redirect
  annotations:
    kubernetes.io/ingress.class: nginx
    nginx.ingress.kubernetes.io/permanent-redirect: https://bar.toolforge.org/$1$is_args$args
}}

Latest revision as of 19:48, 11 September 2022

What can we help you find?

Language Syntax
XPath Examples

Random
Home Testing Automation AI IoT OS RF Data Development References Tools Wisdom Inspiration Investing History Fun POC Help

This page captures Proof of Concept work.

Two Columns

Template:Flex columns

Link Experiments

Template Experiments

Template Styles

The Zebra Looks Really good
and cute With lots
of stripes That make a horse Jealous
The Zebra Looks Really good
and cute With lots
of stripes That make a horse Jealous


Welcome

Template:Welcome

Hello! Welcome to the wiki.

Thankyou

Template:Thankyou

A little thank you... for everything. hugs, Me


A little thank you... for everything. hugs, Me


A little thank you... for being who you are. hugs, Me


A little thank you... for everything. hugs, Me


Table Experiments

Hello World
1 2 3 4

Language Syntax

SyntaxHighlight

def quick_sort(arr):
	less = []
	pivot_list = []
	more = []
	if len(arr) <= 1:
		return arr
	else:
		pass
‎