This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- add to onload function - sets initial description of il_fer (explan) --> | |
update_il_fer_description(document.getElementById("IL_FER_FIELD_WRAP").children[0].value); | |
<!-- changes to ethnicity part of table --> | |
<tr class="~[evenoddrow]"> | |
<td colspan="2" title="fedethnicity" id="ethnicity_column"> | |
<div> | |
<label>Is the student Hispanic or Latino?</label> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#step through users and check for java prefs file, if found enable java web componets | |
USERS=`ls /Users` | |
for f in $USERS | |
do | |
JPREFS=`ls /Users/$f/Library/Preferences/ByHost/com.apple.java.JavaPreferences.*.plist` | |
if [ -e "$FPREFS" ] | |
then |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>com.google.Chrome</key> | |
<dict> | |
<key>AutoFillEnabled</key> | |
<dict> | |
<key>state</key> | |
<string>always</string> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>AutoFillEnabled</key> | |
<false/> | |
<key>BookmarkBarEnabled</key> | |
<true/> | |
<key>ExtensionInstallBlacklist</key> | |
<array> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<plugin xmlns="http://plugin.powerschool.pearson.com" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://plugin.powerschool.pearson.com plugin.xsd" | |
name="Clever" | |
version="1.28" | |
description="Pull data for Clever sync"> | |
<publisher name="Your Name"> | |
<contact email="[email protected]"/> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This is an example only. I no longer use it and hope to update it eventually. | |
# If you are starting from scratch you should be using the users table not the teachers view | |
# for creating a PK for your staff. If you don't, teachers who teach at multiple schools will | |
# not work correctly. My fix was to just keep using the schoolstaff id's (that is what the | |
# teacher view uses) but make sure it is always the users homeschool's sschoolstaff id. It'd be | |
# cleaner to have just used the users table to begin with though. I have a much better understanding | |
# of mysql and ps tables then I was when I first wrote this. | |
<queries> | |
<query name="org.yourschool.clever.schools.all" coreTable="SCHOOLS" flattened="true"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#separate pdf based on a phrase that can be used to delineate break points and names files by first word after that break point | |
import PyPDF2 | |
import pdfplumber | |
if __name__ == '__main__': | |
pdf_path = 'MBA Report Creator.pdf' | |
pdf_break_point = 'Student_Number ' | |
base_pdf = PyPDF2.PdfFileReader(pdf_path) | |
new_pdf = PyPDF2.PdfFileWriter() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function BuildRandomFused(username, player_color) | |
Player[player_color].broadcast("Fetching your deck, one moment please.") | |
FetchData('fuseddeck?pageSize=100&username=' .. username, function(error, data) | |
if error then | |
return Player[player_color].broadcast('Request for Deck failed:\n' .. data) | |
end | |
local fuseddecks = data.Items | |
local numberOfDecks = tablelength(fuseddecks) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function pullFused(){ | |
var ui = SpreadsheetApp.getUi(); | |
var username = ui.prompt("Enter your Solforge Fusion Username"); | |
console.log(username); | |
//the user name for which collection to grab | |
//fetch fused deck from api endpoint |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def make_request(self, id="", type="deck", username="TMind"): | |
endpoint = f"{self.base_url}/{type}/{id}" | |
self.params.update({"username" : username}) | |
print(f"Requesting Data from Website: {','.join([username,type,id])}") | |
response = requests.get(endpoint, params=self.params) | |
data = json.loads(response.content) | |
#insert pagination code |
OlderNewer