Skip to content

Instantly share code, notes, and snippets.

View isman17's full-sized avatar
🧨
Blinking

Isman isman17

🧨
Blinking
View GitHub Profile
@isman17
isman17 / css3-searchbox-with-on-focus-suggestionbox.markdown
Created April 2, 2020 09:38
CSS3 SearchBox with On-focus SuggestionBox

CSS3 SearchBox with On-focus SuggestionBox

Styled Search Box with On-Focus Suggestion Box CSS3: Transitions, Round-Corners, Box-shadows

A Pen by Pratap on CodePen.

License.

@isman17
isman17 / BoyerMoore.php
Created July 16, 2022 08:25 — forked from nticaric/BoyerMoore.php
Boyer–Moore algorithm implementation in PHP
<?php
/**
* Returns the index of the first occurrence of the
* specified substring. If it's not found return -1.
*
* @param text The string to be scanned
* @param pattern The target string to search
* @return The start index of the substring
*/