Skip to content

Instantly share code, notes, and snippets.

View HodardHazwinayo's full-sized avatar

Hodard Hazwinayo HodardHazwinayo

View GitHub Profile
@HodardHazwinayo
HodardHazwinayo / postgres-cheatsheet.md
Created January 22, 2021 11:58 — forked from Kartones/postgres-cheatsheet.md
PostgreSQL command line cheatsheet

PSQL

Magic words:

psql -U postgres

Some interesting flags (to see all, use -h or --help depending on your psql version):

  • -E: will describe the underlaying queries of the \ commands (cool for learning!)
  • -l: psql will list all databases and then exit (useful if the user you connect with doesn't has a default database, like at AWS RDS)
@HodardHazwinayo
HodardHazwinayo / chmodCheatSheet.md
Created November 9, 2020 13:46 — forked from juanarbol/chmodCheatSheet.md
Chmod cheat sheet

Chmod codes cheat sheet

How to use chmod codes in UNIX:

  1. There are three types of permisions in files and folders in unix
    1. Read (r)
    2. Write (w)
    3. Execute (x)
  2. And, there is a clasificacion of users called UGO (explained bellow):
  3. U ~> User (usually, you)
@HodardHazwinayo
HodardHazwinayo / ultimate-ut-cheat-sheet.md
Created December 11, 2019 07:14 — forked from yoavniran/ultimate-ut-cheat-sheet.md
The Ultimate Unit Testing Cheat-sheet For Mocha, Chai and Sinon

The Ultimate Unit Testing Cheat-sheet

For Mocha, Chai and Sinon

using mocha/chai/sinon for node.js unit-tests? check out my utility: mocha-stirrer to easily reuse test components and mock require dependencies


@HodardHazwinayo
HodardHazwinayo / README.md
Created December 18, 2018 09:10 — forked from hofmannsven/README.md
My simply MySQL Command Line Cheatsheet
@HodardHazwinayo
HodardHazwinayo / showHide.html
Created September 11, 2018 12:23 — forked from nastanford/showHide.html
JavaScript Show Hide Scripts Samples
<script type="text/javascript">
<!--
function toggle_visibility(id) {
var e = document.getElementById(id);
if(e.style.display == 'block')
e.style.display = 'none';
else
e.style.display = 'block';
}
@HodardHazwinayo
HodardHazwinayo / meta-tags.md
Created August 31, 2017 08:15 — forked from lancejpollard/meta-tags.md
Complete List of HTML Meta Tags

Copied from http://code.lancepollard.com/complete-list-of-html-meta-tags/

Basic HTML Meta Tags

<meta name="keywords" content="your, tags"/>
<meta name="description" content="150 words"/>
<meta name="subject" content="your website's subject">
<meta name="copyright"content="company name">
<meta name="language" content="ES">
@HodardHazwinayo
HodardHazwinayo / meta-tags.md
Created August 31, 2017 08:14 — forked from kevinSuttle/meta-tags.md
List of Usable HTML Meta and Link Tags

Copied from http://code.lancepollard.com/complete-list-of-html-meta-tags/

Basic HTML Meta Tags

<meta charset='UTF-8'>
<meta name='keywords' content='your, tags'>
<meta name='description' content='150 words'>
<meta name='subject' content='your website's subject'>
<meta name='copyright' content='company name'>