Skip to content

Instantly share code, notes, and snippets.

View Ifejeremiah's full-sized avatar

Ife Jeremiah Ifejeremiah

View GitHub Profile
@Ifejeremiah
Ifejeremiah / GitConfigHttpProxy.md
Created November 16, 2022 15:37 — forked from evantoli/GitConfigHttpProxy.md
Configure Git to use a proxy

Configure Git to use a proxy

In Brief

You may need to configure a proxy server if you're having trouble cloning or fetching from a remote repository or getting an error like unable to access '...' Couldn't resolve host '...'.

Consider something like:

@Ifejeremiah
Ifejeremiah / typescript-crash.ts
Created June 22, 2022 12:31 — forked from bradtraversy/typescript-crash.ts
Basic intro to TypeScript (From YouTube Crash Course)
// Basic Types
let id: number = 5
let company: string = 'Traversy Media'
let isPublished: boolean = true
let x: any = 'Hello'
let ids: number[] = [1, 2, 3, 4, 5]
let arr: any[] = [1, true, 'Hello']
// Tuple