Top levels:
- #discord-help
- #rules
- #announcements
- #computer-science
- #careers
- #general-coding-help
- #random
- #lounge (voice)
| As an instructor, I can ask students one or more questions (i.e., MQ, TF, essays). | |
| Sometimes as individuals and sometimes in pairs or small groups, they arrive at an answer (e.g., voting, google-docs style essay). | |
| Students' answers are recorded and stored in my Learning Management System. | |
| If there's a definitive right answer, I should be able to mark them as correct at that point in time (less important), or just give points for partial credit. | |
| I should be able to conveniently "listen-in" to any group's conversation. | |
| I want to have a clear measure of whether they were making an attempt and interacting. | |
| This would replace not only my Think-Pair-Share, but also the whole "Do this worksheet in small groups" activity. | |
| I'm not opposed to mangling together technologies where it makes sense, but I also don't want to overwhelm students with too many tools. |
Top levels:
| today = "Tuesday" | |
| def is_early(day_of_week: int) -> bool: | |
| return day_of_week < 2 | |
| def is_late(day_of_week: int) -> bool: | |
| return day_of_week >= 4 | |
| def convert_date(date: str) -> int: | |
| if date.lower() == 'monday': | |
| return 0 |
| """ | |
| Author: acbart@udel.edu | |
| Updated: 2/4/2021 | |
| Description: A sample of taking a filename from stdin, loading it into a string | |
| array, and printing out the first line. | |
| """ | |
| def print_all_lines(lines: list[str]) -> str: | |
| """ Print each line, then return the last one. """ |
| <html> | |
| <head> | |
| <!-- Required meta tags --> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <script src="https://ohyay.co/js/api.js"></script> | |
| <!-- Jquery --> | |
| <script |
| # Python program for weighted job scheduling using Dynamic | |
| # Programming and Binary Search | |
| # Class to represent a job (simple data-only class) | |
| class Job: | |
| def __init__(self, start: int, finish: int, profit: int): | |
| self.start: int = start | |
| self.finish: int = finish | |
| self.profit: int = profit |
| (async function(){ | |
| // https://stackoverflow.com/questions/8735792/how-to-parse-link-header-from-github-api | |
| const linkParser = (linkHeader)=>{ | |
| let re = /,[\s]*<(.*?)>;[\s]*rel="next"/g; | |
| let result = re.exec(linkHeader); | |
| if (result == null) { | |
| return null; | |
| } | |
| return result[1]; |
| import { Message, MessageEmbed } from 'discord.js'; | |
| import moment from 'moment'; | |
| import fetch from 'node-fetch'; | |
| import { Command } from '@lib/types/Command'; | |
| export default class extends Command { | |
| description = 'Render some LaTeX as a PNG'; | |
| usage = '[latex]'; | |
| extendedHelp = 'Type whatever LaTeX you want.'; |
| from guizero import * | |
| from designer import * | |
| # GuiZero stuff | |
| app = App(title="Main window", width=200, height=200) | |
| text_1 = Text(app, text="X", color="red", size=20) | |
| # Designer stuff | |
| frog = emoji("frog") | |
| grow(frog, 5) |
| ['ADMN561011 GRADUATE CONTRACT: GRADUATE ASSISTANT' | |
| 'ADMN561012 GRADUATE CONTRACT: RESEARCH ASSISTANT' | |
| 'ADMN561013 GRADUATE CONTRACT: TEACHING ASSISTANT' | |
| 'ADMN561014 GRADUATE CONTRACT: GRADUATE FELLOW' | |
| 'ADMN561015 GRADUATE CONTRACT: TUITION SCHOLAR' | |
| 'AFSC150010L Initial Military Training I' | |
| 'AFSC250010L Field Training Preparation I' | |
| 'AFSC350010L Intermediate Cadet Leader Training I' | |
| 'AFSC450010L Senior Cadet Leader Training I' 'ART417002 BFA Exhibition' | |
| 'ART676010 Pedagogy' 'BHAN860010 Graduate Research Seminar' |