Skip to content

Instantly share code, notes, and snippets.

View Sadicko's full-sized avatar
🎯
Focusing

SADICK ODAI Sadicko

🎯
Focusing
View GitHub Profile
@Sadicko
Sadicko / Formatting date in jquery
Created June 9, 2019 17:35
How to format a date using jquery
$.date = function(dateObject) {
var d = new Date(dateObject);
var day = d.getDate();
var month = d.getMonth() + 1;
var year = d.getFullYear();
if (day < 10) {
day = "0" + day;
}
@Sadicko
Sadicko / gist:090fc62133ae5fa506a16b376280dcaa
Created May 25, 2019 07:57 — forked from webaware/gist:4048580
basic example of populating a form from a database using AJAX and JSON, jQuery version
<?php
// jQuery version of https://gist.github.com/3110728
/*
-- the SQL database table
create table form_ajax (
ID varchar(5) not null,
Name varchar(100),
Address varchar(100),
@Sadicko
Sadicko / Tour.java
Created November 24, 2016 17:25 — forked from Sable-Shinigami/Tour.java
Travelling Salesman Assignment for Algorithms class
/*
* This is my code for a Travelling Salesman Problem assignment from college.
* I was supposed to create a Hamilton Cycle of N points on a 2D plane i.e. find the shortest
* path that visits all points exactly once and returns to the starting point.
* I implemented both the Smallest Insertion and Nearest Insertion algorithms which inserts
* a point where it will create the smallest increase in the total length of the cycle and
* insert a point where it is nearest to an other point already on the cycle respectively.
*
* In our brief we were informed that speed was the most important factor and so I decided
* to try and squeeze every last nanosecond out of the program... even at the cost of the memory.