Ray Besiga raybesiga
-
Sparkplug
- Kampala, Uganda
- Sign in to view email
- https://raybesiga.com
View unload-keyboard
#!/bin/bash | |
# Unload the keyboard so I can use my external keyboard | |
# and not worry about accidentally pressing buttons on | |
# the built-in. This may not be a problem for you but, you | |
# should see my desk sometimes (Oh no!!) ;-) | |
sudo kextunload /System/Library/Extensions/AppleUSBTopCase.kext/Contents/PlugIns/AppleUSBTCKeyboard.kext/ |
View Create Teachers Weekly Script
import datetime | |
import logging | |
import itertools | |
from logging import handlers | |
from django.core.management.base import BaseCommand | |
from django.contrib.sites.models import Site | |
from django.contrib.auth.models import User | |
from django.core.mail import send_mail | |
from django.conf import settings | |
from django.template import Context, Template |
NewerOlder