Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View smuwanga's full-sized avatar

Simon Peter Muwanguzi smuwanga

View GitHub Profile
@smuwanga
smuwanga / vbox-change-time.sh
Created July 3, 2017 16:06 — forked from ebridges/vbox-change-time.sh
Change the bios time of a Virtualbox image of `<name>` to be +/- `<msecs>` from current time.
# Disable time synchronization
VBoxManage setextradata <name> "VBoxInternal/Devices/VMMDev/0/Config/GetHostTimeDisabled" 1
# Change time
VBoxManage modifyvm <name> --biossystemtimeoffset <msecs>
# Change time via OS (Ubuntu) to 03/09/2014 at 01:00:00
sudo date 030901002014.00
# update timezone data
@smuwanga
smuwanga / laravel-ums.markdown
Created September 29, 2016 05:27 — forked from anchetaWern/laravel-ums.markdown
Building a User Management System in Laravel

There's no shortage of good resources for learning laravel. So instead of the usual introductory tutorial were just gonna learn Laravel by building a project from scratch and that's gonna be a User Management System.

I don't know if my definition of a User Management System is correct but here's my idea of what's it's capable of doing:

  • Register Roles
  • Register Users
  • Update Users