Skip to content

Instantly share code, notes, and snippets.

View pranid's full-sized avatar
🎯
Focusing

Praneeth Nidarshan pranid

🎯
Focusing
View GitHub Profile
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="description" content="Moment JS clock for beginners.">
<meta name="keywords" content="HTML,CSS,MOMENT, JAVASCRIPT, JQUERY, CLOCK, TIME">
<meta name="author" content="Praneeth Nidarshan">
<title>MOMENT CLOCK</title>
<script src="https://code.jquery.com/jquery-2.2.4.min.js" integrity="sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44=" crossorigin="anonymous"></script>
@pranid
pranid / nginx-prestashop-server-config
Created August 16, 2016 17:19
Nginx Server Configuration file for Prestashop
server {
listen 80; ## listen for ipv4; this line is default and implied
listen [::]:80; ## listen for ipv6
# Replace/ set your directory path here
root /var/www/html/prestashop;
index index.html index.htm index.php;
# Make site accessible from http://localhost/
@pranid
pranid / php_getcontent.php
Last active August 25, 2016 09:52
Get API related form data JSON
<?php
// use this to capture data that not from GET OR POST
// refer http://stackoverflow.com/questions/19004783/reading-json-post-using-php
$json = file_get_contents('php://input');
$obj = json_decode($json);
?>
@pranid
pranid / AmortizationSchedule.js
Last active August 27, 2016 05:05
Amortization Schedule Example JavaScript
/**
* Created by praneeth on 8/27/2016.
*/
var capital = 100000;
var period = 12;
var rate = 12;
var r = parseFloat(rate) / (100 * period) ;
// console.log(r);
@pranid
pranid / getDates.js
Last active October 27, 2016 07:11
Get dates between two dates
/**
* Created by Praneeth Nddarshan on 10/25/2016.
*/
var from_date = '2016-01-01';
var to_date = '2016-02-20';
var dates = getDates(from_date, to_date);
@pranid
pranid / file_folder_reader.php
Last active March 28, 2017 17:43
Bulk File re-name :: tested with MP3
<?php
/*$dir_files = glob($_SERVER["DOCUMENT_ROOT"]."/*");
getFolderFiles($dir_files);*/
$dir = "D:\MUSICS\English\Collections\FAVS";
$dir = "F:\MOVIES";
$final_array = array();
$file_filter = array(
'video' => array('mkv','mov','mp4','flv', 'avi'),
@pranid
pranid / select2.full.js
Created May 18, 2017 10:00
Bootstrap-Jquery Select2 :: Improved
/*!
* Select2 4.0.3
* https://select2.github.io
*
* Released under the MIT license
* https://github.com/select2/select2/blob/master/LICENSE.md
*/
(function (factory) {
if (typeof define === 'function' && define.amd) {
// AMD. Register as an anonymous module.
@pranid
pranid / .htaccess
Created December 31, 2016 06:02
Prestashop .htaccess file for localhost :: please replace text 'yourproject' with your folder name
# ~~start~~ Do not remove this comment, prestashop will keep automatically the code outside this comment when .htaccess will be generated again
# .htaccess automaticaly generated by prestashop e-commerce open-source solution
# http://www.prestashop.com - http://www.prestashop.com/forums
<IfModule mod_rewrite.c>
<IfModule mod_env.c>
SetEnv HTTP_MOD_REWRITE On
</IfModule>
RewriteEngine on
@pranid
pranid / Country API with Jquery | Bootstrap
Created August 17, 2017 04:27
Get countries from restcountries.eu and Display it using Bootstrap & Jquery
<!DOCTYPE html>
<html>
<head>
<title>API TEST</title>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-1">
@pranid
pranid / timezone-grabber.php
Created September 19, 2017 11:06
Get PHP timezone list
<?php
/**
* TIMEZONE GRABBER
* @author PRANEETH NIDARSHAN
*/
$zones = timezone_identifiers_list();
$new_list = array();