Skip to content

Instantly share code, notes, and snippets.

View ashleylizg's full-sized avatar

Ashley Gingeleski ashleylizg

View GitHub Profile
@gingeleski
gingeleski / parse_some_args.js
Created June 19, 2020 21:19
Part of a Node program I wrote, just dealing with argument parsing, to show my sister how to do that.
// Parse command line arguments with the Minimist library
const argv = require('minimist')(process.argv.slice(2));
// Main browser automation dependencies
const { chromium, firefox, webkit } = require('playwright');
// Other dependencies
const crypto = require('crypto');
const fse = require('fs-extra');
const path = require('path');
@JamesMGreene
JamesMGreene / gitflow-breakdown.md
Last active April 30, 2024 14:11
`git flow` vs. `git`: A comparison of using `git flow` commands versus raw `git` commands.

Initialize

gitflow git
git flow init git init
  git commit --allow-empty -m "Initial commit"
  git checkout -b develop master

Connect to the remote repository