Skip to content

Instantly share code, notes, and snippets.

View pouyamn's full-sized avatar

Pouya MN pouyamn

View GitHub Profile
@pouyamn
pouyamn / g2j
Created October 14, 2019 05:12 — forked from omidp/g2j
postgresql persian to gregorian function
select g2j(now())
CREATE OR REPLACE FUNCTION g2j(in_date timestamp with time zone)
RETURNS character varying AS
$BODY$
DECLARE
y smallint;
aday smallint;
amonth smallint;
ayear smallint;
@pouyamn
pouyamn / bobp-python.md
Created January 16, 2019 14:32 — forked from sloria/bobp-python.md
A "Best of the Best Practices" (BOBP) guide to developing in Python.

The Best of the Best Practices (BOBP) Guide for Python

A "Best of the Best Practices" (BOBP) guide to developing in Python.

In General

Values

  • "Build tools for others that you want to be built for you." - Kenneth Reitz
  • "Simplicity is alway better than functionality." - Pieter Hintjens