-
https://medium.com/voxy-engineering/introduction-to-lti-1-3-270f17505d75
- Has workflow diagrams
-
https://github.com/1EdTech/ltibootcamp?tab=readme-ov-file
- Useful links like sample projects, and even a GPT for LTI (lol)
-
Moodle demo (for us to create sample LTI?)
-
(i) Only Moodle 4+ supports LTI 1.3
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
import atexit | |
import streamlit as st | |
from selenium import webdriver | |
from selenium.webdriver.support.ui import WebDriverWait | |
from selenium.common.exceptions import WebDriverException | |
def init_chrome(): | |
chrome_options = webdriver.ChromeOptions() | |
# chrome_options.add_argument("--headless=new") |
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 | |
# Folder where your images are located | |
folder="./" | |
# Loop through each image in the folder | |
for filename in "$folder"/*; do | |
# Extract the date and time from the filename using regex | |
if [[ $filename =~ ([a-z]{3,})-([0-9]{1,2})[a-z]{2}-([0-9]{4})-at-([0-9]{1,2})([0-9]{2})-([ap]m)\.[a-z]{3,4} ]]; then | |
month="${BASH_REMATCH[1]}" |
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
// ==UserScript== | |
// @name Force GPT3 | |
// @namespace altbdoor | |
// @match https://chatgpt.com/* | |
// @grant none | |
// @version 1.1 | |
// @author altbdoor | |
// @run-at document-start | |
// @updateURL https://gist.github.com/altbdoor/ff538bc6b411583fdc500750e7faff04/raw/force-gpt3.user.js | |
// @downloadURL https://gist.github.com/altbdoor/ff538bc6b411583fdc500750e7faff04/raw/force-gpt3.user.js |
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
version: "3.9" | |
# borrowed from | |
# https://github.com/docker/awesome-compose/blob/master/wordpress-mysql/compose.yaml | |
services: | |
db: | |
# https://make.wordpress.org/hosting/handbook/compatibility/#wordpress-php-mysql-mariadb-versions | |
image: mariadb:11.3 | |
command: '--default-authentication-plugin=mysql_native_password' | |
volumes: |
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
#!/usr/bin/env python | |
""" | |
Pack the GOG games entries into a SQLite database | |
License: WTFPL | |
https://github.com/ezerear/gog-games.to_backup | |
""" | |
import json |
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
import java.awt.Color; | |
import java.awt.Component; | |
import java.awt.Graphics; | |
import java.awt.Frame; | |
import java.awt.event.WindowAdapter; | |
import java.awt.event.WindowEvent; | |
class CzechiaFlag { | |
static class CzechiaFlagComponent extends Component { | |
public void paint(Graphics g) { |
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
#!/usr/bin/env node | |
/* eslint-env node */ | |
const process = require("process"); | |
const fs = require("fs"); | |
const args = process.argv.slice(2); | |
if (args.length !== 1) { | |
console.error("Please pass in path to angular.json file"); | |
process.exit(1); |
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
#!/usr/bin/env python3 | |
import urllib.request | |
import urllib.parse | |
from bs4 import BeautifulSoup | |
base_url = 'https://www.sigstick.com/stickers' | |
params = { 'author': 'kal (we-巫巴多-duck)' } | |
url = f'{base_url}?{urllib.parse.urlencode(params)}' |
NewerOlder