Skip to content

Instantly share code, notes, and snippets.

View hmtanbir's full-sized avatar
🏠
Working from home

HM Tanbir hmtanbir

🏠
Working from home
  • BDMADE
  • Dhaka
View GitHub Profile
@Showrin
Showrin / MetaWrapper.jsx
Last active April 19, 2023 05:17
A component that implements basic SEO to any NextJS app
import Head from 'next/head';
import PropTypes from 'prop-types';
const MetaWrapper = (props) => {
const {
title,
description,
type,
imageUrl,
contentUrl,
@vielhuber
vielhuber / script.sh
Last active May 14, 2025 23:58
PostgreSQL: Backup and restore export import pg_dump with password on command line #sql
# best practice: linux
nano ~/.pgpass
*:5432:*:username:password
chmod 0600 ~/.pgpass
# best practice: windows
edit %APPDATA%\postgresql\pgpass.conf
*:5432:*:username:password
# linux
@gokulkrishh
gokulkrishh / media-query.css
Last active May 29, 2025 08:11
CSS Media Queries for Desktop, Tablet, Mobile.
/*
##Device = Desktops
##Screen = 1281px to higher resolution desktops
*/
@media (min-width: 1281px) {
/* CSS */