type: PIN
Consumer key: 3nVuSoBZnx6U4vzUxf5w
Consumer secret: Bcs59EFbbsdF6Sl9Ng71smgStWEGwXXKSjYvPVt7qys
type: PIN
Consumer key: IQKbtAYlXLripLGPWd0HUA
| <div class="box"> | |
| <div class="box-title"> | |
| <h1>Neon Form</h1> | |
| <p>Hover me</p> | |
| </div> | |
| <div class="form-box"> | |
| <input | |
| type="text" | |
| class="email" | |
| placeholder="Please enter your e-mail" |
| <?php | |
| // Referensi : | |
| // https://id.wikipedia.org/wiki/Algoritma_Knuth-Morris-Pratt | |
| // https://stackoverflow.com/questions/44081348/is-it-possible-to-use-knuth-morris-pratt-algorithm-for-string-matching-on-text-t | |
| // http://www.elangsakti.com/2013/03/implementasi-algoritma-string-matching.html | |
| // https://stackoverflow.com/questions/29439930/knuth-morris-pratt-string-search-algorithm | |
| // https://stackoverflow.com/questions/5873935/how-to-optimize-knuth-morris-pratt-string-matching-algorithm | |
| // https://stackoverflow.com/questions/13271856/understanding-knuth-morris-pratt-algorithm | |
| // | |
| // |
| <?php | |
| /** | |
| * This is an implementation of the Knuth-Morris-Pratt-Algorithm as in | |
| * Thomas H. Cormen et. al.: "Algorithmen - Eine Einführung" | |
| * (German version by Paul Molitor) 3. Auflage, page 1017 | |
| * | |
| * My changes: | |
| * - Indexes starting with 0 | |
| * - overlapping matches are recognized | |
| */ |
Just playing around
A Pen by Jesus Mendoza on CodePen.
A Pen by CORY HARKINS on CodePen.
| <h1>JavaScript Calculator</h1> | |
| <p class="warning">Don't divide by zero</p> | |
| <div id="calculator" class="calculator"> | |
| <button id="clear" class="clear">C</button> | |
| <div id="viewer" class="viewer">0</div> | |
| <button class="num" data-num="7">7</button> |
| <div id="wrapper"> | |
| <div id="app"></div> | |
| </div> |
| .container | |
| - for (i = 0; i < 400; i++) | |
| .trigger | |
| .monitor | |
| .camera.o-x | |
| .camera.o-y | |
| .camera.o-z | |
| .vr | |
| - for (i = 0; i < 20; i++) | |
| .vr_layer |
Update: There is a more secure version available. Details
<?php
$plaintext = 'My secret message 1234';