Skip to content

Instantly share code, notes, and snippets.

View pranid's full-sized avatar
🎯
Focusing

Praneeth Nidarshan pranid

🎯
Focusing
View GitHub Profile
@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 / compress.php
Last active November 20, 2017 07:04
Bulk Images Compressor for Servers
<?php
function getFolderFiles($dir){
$quality = 60;
$scan_dir = scandir($dir);
echo '<ol>';
foreach($scan_dir as $file_path){
$destination = $dir."\/".$file_path;
@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 / 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 / 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 / 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 / Amortization.php
Last active May 1, 2024 15:05
Amortization Schedule Example -- PHP Version
<?php
/**
* AMORTIZATION CALCULATOR
* @author PRANEETH NIDARSHAN
* @version V1.0
*/
class Amortization
{
private $loan_amount;
private $term_years;
@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);
<!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 / smtpMail.php
Last active November 23, 2022 07:02
Send email using gmail smtp - Codeigniter
<?php defined('BASEPATH') OR exit('No direct script access allowed');
class SMTPMail extends CI_Controller {
/**
* @author Praneeth Nidarshan
* @see git@gist.github.com:8d54499e903d35155af6.git
*/
public function index()
{