Skip to content

Instantly share code, notes, and snippets.

View petyoMitkov's full-sized avatar

Petyo Mitkov petyoMitkov

View GitHub Profile
@bradtraversy
bradtraversy / webdev_online_resources.md
Last active September 18, 2024 10:59
Online Resources For Web Developers (No Downloading)
@dblock
dblock / getWeek.js
Created July 13, 2011 22:49
get week of the year in JavaScript
function( d ) {
// Create a copy of this date object
var target = new Date(d.valueOf());
// ISO week date weeks start on monday
// so correct the day number
var dayNr = (d.getDay() + 6) % 7;
// Set the target to the thursday of this week so the