Skip to content

Instantly share code, notes, and snippets.

View l3ikrant's full-sized avatar

Bikrant Giri l3ikrant

View GitHub Profile
@l3ikrant
l3ikrant / coordinateValidator.php
Created June 28, 2017 15:30 — forked from anonymous/coordinateValidator.php
Validate geo coordinate
/**
* Checks given coordinate for errors
* @param float $coordinate coordinate
*
* @return bool result
*/
public function checkCoordinate($coordinate) {
if(preg_match('/^[-]?(([0-8]?[0-9])\.(\d+))|(90(\.0+)?);[-]?((((1[0-7][0-9])|([0-9]?[0-9]))\.(\d+))|180(\.0+)?)$/', $coordinate)) {
return true;
}
@l3ikrant
l3ikrant / index.html
Created March 17, 2017 07:16
Responsive News Ticker
<div class="ticker">
<li><a href="http://www.bikrantgiri.com.np" title="">ईमान्दार बन्दा हेपिने प्रवृति विरुद्ध 'निर्भय': निखिल, चैत्र ११ मा रिलिजको तयारी</a></li>
<li><a href="http://www.bikrantgiri.com.np" title="">रमाइलो दोहोरी गीत 'सेक्सी देखिन्छौ' को रेकर्डिङ सम्प्पन</a></li>
<li><a href="http://www.bikrantgiri.com.np" title="">प्रबासमा रहेर पनि गीत संगीत लागिरहेको छु : चर्चित गायक ओली</a></li>
<li><a href="http://www.bikrantgiri.com.np" title="">मेलिना राईको आवाजमा लाहाचोकलाई चिनाउने गीत सार्बजनिक</a></li>
</div>
@l3ikrant
l3ikrant / HTML-CSS3-3D-Effect.markdown
Last active August 29, 2015 14:14
HTML/CSS3 3D Effect

HTML/CSS3 3D Effect

CSS flip animation effect uses CSS animations (transitions) to show the front and back

A Pen by Bikrant Giri on CodePen.

License.