I hereby claim:
- I am fronn on github.
- I am donomans (https://keybase.io/donomans) on keybase.
- I have a public key whose fingerprint is 5397 6E29 8709 C2B7 9690 8FB9 4E03 2DC6 952B 5A4F
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| skip_files: | |
| - ^(.*/)?app\.yaml | |
| - ^(.*/)?app\.yml | |
| - ^(.*/)?index\.yaml | |
| - ^(.*/)?index\.yml | |
| - ^(.*/)?#.*# | |
| - ^(.*/)?.*~ | |
| - ^(.*/)?.*\.py[co] | |
| - ^(.*/)?.*/RCS/.* | |
| - ^(.*/)?\..* |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>Texture creator</title> | |
| <link type="text/css" rel="stylesheet" href="sunflower.css"> | |
| </head> | |
| <body> | |
| <div id="container"> | |
| <canvas id="canvas" width="150" height="150" class="center"></canvas> |
| private static String StripHtml(String source) | |
| { | |
| List<Char> array = new List<Char>(source.Length); | |
| Boolean inside = false; | |
| Boolean dquotes = false; | |
| Boolean squotes = false; | |
| ///1) look for tags or things that need to be fully removed (entire containing contents) and remove them | |
| source = source.Replace(" ", "").Replace("Â", "").Replace("<br>", " ").Replace("<br />", " "); | |
| String lowersource = source.ToLower(); |