Difference between revisions of "Testing"


(Created page with "<html> <head> <script type="text/javascript" src="dygraph.js"></script> <link rel="stylesheet" src="dygraph.css" /> </head> <body> <div id="graphdiv"></div> <script type="te...")
 
 
(20 intermediate revisions by the same user not shown)
Line 1: Line 1:
<html>
+
__NOTOC__
<head>
 
<script type="text/javascript"
 
  src="dygraph.js"></script>
 
<link rel="stylesheet" src="dygraph.css" />
 
</head>
 
<body>
 
<div id="graphdiv"></div>
 
<script type="text/javascript">
 
  g = new Dygraph(
 
  
    // containing div
+
===Serif===
    document.getElementById("graphdiv"),
 
  
    // CSV or path to a CSV file.
+
<span class="il-serif">ABCDEFGHIJKLMNOPQRSTUVWXYZ 0123456789 ¿ ? ¡ ! & @ ‘ ’ “ ” « » % * ^ # $ £ € ¢ / ( ) [ ] { } . , ® © Ç ç Ğ ğ İ ı Ö ö Ş ş Ü ü</span>
    "Date,Temperature\n" +
 
    "2008-05-07,75\n" +
 
    "2008-05-08,70\n" +
 
    "2008-05-09,80\n"
 
  
  );
+
===Sans-Serif===
</script>
+
<span class="il-sans-serif">ABCDEFGHIJKLMNOPQRSTUVWXYZ 0123456789 ¿ ? ¡ ! & @ ‘ ’ “ ” « » % * ^ # $ £ € ¢ / ( ) [ ] { } . , ® © Ç ç Ğ ğ İ ı Ö ö Ş ş Ü ü</span>
</body>
+
 
</html>
+
===Code with syntaxhighlight===
 +
<syntaxhighlight lang="Python" line='line'>
 +
# code - http://rosettacode.org/wiki/Evolutionary_algorithm
 +
 
 +
from string import letters
 +
from random import choice, random
 +
 +
  target  = list("METHINKS IT IS LIKE A WEASEL")
 +
  charset = letters + ' '
 +
  parent  = [choice(charset) for _ in range(len(target))]
 +
  minmutaterate  = .09
 +
  C = range(100)
 +
</syntaxhighlight>
 +
 
 +
===HTML Codes===
 +
 
 +
&#129409;

Latest revision as of 00:53, 24 April 2020


Serif

ABCDEFGHIJKLMNOPQRSTUVWXYZ 0123456789 ¿ ? ¡ ! & @ ‘ ’ “ ” « » % * ^ # $ £ € ¢ / ( ) [ ] { } . , ® © Ç ç Ğ ğ İ ı Ö ö Ş ş Ü ü

Sans-Serif

ABCDEFGHIJKLMNOPQRSTUVWXYZ 0123456789 ¿ ? ¡ ! & @ ‘ ’ “ ” « » % * ^ # $ £ € ¢ / ( ) [ ] { } . , ® © Ç ç Ğ ğ İ ı Ö ö Ş ş Ü ü

Code with syntaxhighlight

 1 # code - http://rosettacode.org/wiki/Evolutionary_algorithm
 2 
 3 from string import letters
 4 from random import choice, random
 5  
 6   target  = list("METHINKS IT IS LIKE A WEASEL")
 7   charset = letters + ' '
 8   parent  = [choice(charset) for _ in range(len(target))]
 9   minmutaterate  = .09
10   C = range(100)

HTML Codes

🦁