Skip to content

Instantly share code, notes, and snippets.

View jamesnotjim's full-sized avatar

James Martin jamesnotjim

View GitHub Profile
@jamesnotjim
jamesnotjim / BindTuningCalendarFix.html
Created May 1, 2019 14:23
BindTuning Calendar Fix for SharePoint Modern pages
<script type="text/css">
@page {
a[href]:after{
content: none !important
}
}
</script>
@jamesnotjim
jamesnotjim / clearTheTerminal.py
Created May 2, 2019 20:01
Clear the Terminal in Python
import os
if(os.name == "posix"):
os.system('clear')
else:
os.system('cls')
@jamesnotjim
jamesnotjim / BTPeopleHideIntAndDelve.html
Created May 3, 2019 15:32
CSS for a SharePoint Script Editor web part to hide Microsoft Delve link and "INT" (internal) badge on BindTuning People web part
<style type="text/css">
.bt-persona-account-type, .view-profile-action {
visibility: hidden;
}
</style>