Skip to content

Instantly share code, notes, and snippets.

@Rendydendimara
Rendydendimara / mongo-find-all-document.js
Last active August 12, 2022 03:41
Find All Document - Database MongoDB
/**
* Script untuk membaca seluruh document pada database MongoDB, kemudian di simpan kedalam sebuah file hasilnya.
*/
const mongoose = require('mongoose')
const fs = require('fs');
const databaseUrl = 'mongodb://127.0.0.1:27017/databaseName'
let seconds = 10;
@Rendydendimara
Rendydendimara / composing-software.md
Created November 19, 2021 07:50 — forked from Geoff-Ford/composing-software.md
Eric Elliott's Composing Software Series

Eric Elliott's "Composing Software" Series

A collection of links to the excellent "Composing Software" series of medium stories by Eric Elliott.

Edit: I see that each post in the series now has index, previous and next links. However, they don't follow a linear flow through all the articles with some pointing back to previous posts effectively locking you in a loop.

@Rendydendimara
Rendydendimara / meta-tags.md
Created June 15, 2021 03:44 — 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">