Skip to content

Instantly share code, notes, and snippets.

View andyt96's full-sized avatar

Andy andyt96

  • New York, NY
  • 23:06 (UTC -05:00)
View GitHub Profile
@andyt96
andyt96 / brew-bundle-brewfile-tips.md
Last active April 15, 2022 16:56 — forked from ChristopherA/brew-bundle-brewfile-tips.md
Brew Bundle Brewfile Tips

Brew Bundle Brewfile Tips

Copyright & License

Unless otherwise noted (either in this file or in a file's copyright section) the contents of this gist are Copyright ©️2020 by Christopher Allen, and are shared under spdx:Creative Commons Attribution Share Alike 4.0 International (CC-BY-SA-4.) open-source license.

Intro to Brew, Bundle, and Brewfile

If you are using a Mac as your development environment, you really should be using Brew. You probably should be using it if you are a power user as well, as it isn't really that difficult.

@andyt96
andyt96 / Public_Time_Servers.md
Created February 24, 2022 20:10 — forked from mutin-sa/Top_Public_Time_Servers.md
List of Top Public Time Servers

Google Public NTP [AS15169]:

time.google.com

time1.google.com

time2.google.com

time3.google.com

@andyt96
andyt96 / AddingExistingProjectToGit.md
Last active November 19, 2020 16:25 — forked from alexpchin/Add_Existing_Project_To_Git.md
Add Existing Project To Git Repo

Adding an existing project to GitHub using the command line

1. Create a new repository on GitHub.

In Terminal, change the current working directory to your local project.

2. Initialize the local directory as a Git repository.

git init

Add the files in your new local repository. This stages them for the first commit.