Skip to content

Instantly share code, notes, and snippets.

View KipchirchirIan's full-sized avatar
💭
Set your status

Ian Kipchirchir KipchirchirIan

💭
Set your status
View GitHub Profile
@josemmo
josemmo / repair-mysql-data.ps1
Created August 28, 2020 18:48
Repair MySQL data directory (for XAMPP)
# Based on this answer: https://stackoverflow.com/a/61859561/1956278
# Backup old data
Rename-Item -Path "./data" -NewName "./data_old"
# Create new data directory
Copy-Item -Path "./backup" -Destination "./data" -Recurse
Remove-Item "./data/test" -Recurse
$dbPaths = Get-ChildItem -Path "./data_old" -Exclude ('mysql', 'performance_schema', 'phpmyadmin') -Recurse -Directory
Copy-Item -Path $dbPaths.FullName -Destination "./data" -Recurse
@KipchirchirIan
KipchirchirIan / CONTRIBUTING.md
Last active May 29, 2020 05:45
Contribution Guidelines to Swahilinux projects

Contribution Guidelines

We are excited that you are interested in contributing to Swahilinux. Swahilinux is beginner friendly and everyone is welcome to contribute.

All members of our community are expected to follow our Code of Conduct. Please make sure you are welcoming and friendly in all our spaces.

Get in Touch

@KipchirchirIan
KipchirchirIan / README-Template.md
Created August 14, 2019 06:44 — forked from PurpleBooth/README-Template.md
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites