Skip to content

Instantly share code, notes, and snippets.

View davik4life's full-sized avatar
👨‍💻

Victor Adeshile davik4life

👨‍💻
View GitHub Profile
@davik4life
davik4life / reinstall_git_brew.md
Created February 27, 2023 01:07 — forked from brandonsimpson/reinstall_git_brew.md
Re-installing Git on Mac OSX with Brew

Re-installing Git on Mac OSX with Brew

This is helpful if you've previously installed git from source on OSX, and other compilers can't find the correct path. You need to remove the current version of git, then re-install with brew.

Uninstall git if installed manually

  1. Check which git you're running:
    which git
    
void main(){
greet('Victor Adeshile');
}
void greet(String name){
print('Hello, $name');
@davik4life
davik4life / class.dart
Created January 9, 2020 12:36
Some explanations of Dart Classes
void main(){
User victor = User();
victor.fName = 'Victor';
victor.lName = 'Adeshile';
victor.age = (30);
User love = User();
love.fName = 'Faith';
love.lName = 'Adeshile';
love.age = 21;
print(victor.fName);