Skip to content

Instantly share code, notes, and snippets.

View Deividev365's full-sized avatar

Deivid Almeida Deividev365

View GitHub Profile
import { parse, format } from "date-fns";
export function convertStringToDate(dateValue: string): Date {
const parsedDate = parse(dateValue, "dd/MM/yyyy", new Date());
const day = parsedDate.getDate();
const month = parsedDate.getMonth();
const year = parsedDate.getFullYear();
return new Date(year, month, day, 23, 59, 59);
@ishad0w
ishad0w / sources.list
Created April 30, 2020 16:55
Ubuntu 20.04 LTS (Focal Fossa) -- Full sources.list
deb http://archive.ubuntu.com/ubuntu/ focal main restricted universe multiverse
deb-src http://archive.ubuntu.com/ubuntu/ focal main restricted universe multiverse
deb http://archive.ubuntu.com/ubuntu/ focal-updates main restricted universe multiverse
deb-src http://archive.ubuntu.com/ubuntu/ focal-updates main restricted universe multiverse
deb http://archive.ubuntu.com/ubuntu/ focal-security main restricted universe multiverse
deb-src http://archive.ubuntu.com/ubuntu/ focal-security main restricted universe multiverse
deb http://archive.ubuntu.com/ubuntu/ focal-backports main restricted universe multiverse