- Course aliases
- Friendly nicknames can now be set for courses, replacing
AP ENG LANG A: TERM AF - PER 1with nicer names, like "English (P1)" - Course aliases are used everywhere the full course name would be used
- Available as a new setting in Course Options
- Friendly nicknames can now be set for courses, replacing
- Material tooltips
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
| with open("words.txt") as file: | |
| list = [x for x in file.read().split() if len(x) == 8 and x[0] == x[6] and ord(x[0]) + 1 == ord(x[1]) and ord(x[2]) + 2 == ord(x[7])] | |
| print(list) |
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
| int water = 0; | |
| int iterations = 0; | |
| int area = 0; | |
| int lastCheckedIndex = 0; | |
| if (Pipes[0] == PipeMaxHeight && Pipes[Pipes.Length - 1] == PipeMaxHeight) | |
| { | |
| for (int i = 1; i < Pipes.Length - 1; i++) | |
| { | |
| iterations++; |
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
| #include <stdio.h> | |
| #define RATE_CONSTANT 20 //in L/(mol*s) | |
| #define TIME_STEP 0.001 //in s | |
| double hso3minus = 0.01; //in mol /L | |
| double io3minus = 0.015; //in mol/L | |
| double time = 0.001; //in seconds | |
| double rate = 0; //in mol/(L*s) |
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
| using System; | |
| using System.IO; | |
| using System.Threading; | |
| using Newtonsoft.Json; | |
| using Newtonsoft.Json.Linq; | |
| using System.Collections.Generic; | |
| namespace DiscordBotNew.Settings | |
| { | |
| public class SettingsManager |
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
| static string rot(string s, int n) => return string.Concat(s.Select(x => (char)(x >= 'A' && x <= 'Z' ? (x + n > 'Z' ? x - 26 + n : x + n) : x >= 'a' && x <= 'z' ? (x + n > 'z' ? x - 26 + n : x + n) : x))); |
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
| [ | |
| { | |
| "id": 1, | |
| "title": "Welcome to Schoology Plus!", | |
| "message": "Thanks for installing Schoology Plus! <a href=\"https://github.com/aopell/SchoologyPlus\">Click here</a> to check out all of the interesting features! Be sure to check out the Schoology Plus menu at the top of the page next to the messages button.", | |
| "shortMessage": "Thanks for installing Schoology Plus! Click here for more info.", | |
| "timestamp": "2018-03-06T02:54:26.758Z" | |
| }, | |
| { | |
| "id": 2, |
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
| /** | |
| * Represents a time interval (i.e. the difference between two times or an amount of time) | |
| */ | |
| export default class TimeSpan { | |
| /** | |
| * Creates a new TimeSpan with the given values for each portion | |
| * @param {Date|TimeSpan|number} [t=0] Date, TimeSpan, or number of milliseconds | |
| * @param {number} [s=0] Seconds | |
| * @param {number} [m=0] Minutes | |
| * @param {number} [h=0] Hours |
TL;DR: LAUSD is updating the Schoology interface on December 15, which will cause Schoology Plus to function incorrectly until the next version.
On December 15, LAUSD is updating Schoology for all users (click here for more info). This will result in significant changes to the Schoology interface (notably the navigation bar at the top of the page), breaking many of the features of Schoology Plus. This change will take place during winter break, so hopefully it will not be a major inconvenience. Nonetheless, we will be working hard to get a working version of Schoology Plus out as soon as possible after the update. Thank you for understanding.
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 initialize() { | |
| let script = document.createElement("script"); | |
| script.src = "https://cdn.jsdelivr.net/npm/chart.js@2.8.0/dist/Chart.min.js"; | |
| script.onload = processData; | |
| document.head.appendChild(script); | |
| let style = document.createElement("style"); | |
| style.textContent = ` | |
| body { | |
| font-family: sans-serif; | |
| } |
OlderNewer
