Skip to content
View frumbert's full-sized avatar

Block or report frumbert

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. A text parser that turns fairly regu...
    1
    <!DOCTYPE html>
    2
    <html lang="en">
    3
    <head>
    4
        <meta charset="UTF-8">
    5
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
  2. Make a marquee on the browser title
    1
    <!DOCTYPE html>
    2
    <html lang="en">
    3
    <head>
    4
    	<meta charset="UTF-8">
    5
    	<title>argh!</title>
  3. blob to dataurl, because I keep forg...
    1
    function blobToDataURL(blob) {
    2
        return new Promise((fulfill, reject) => {
    3
            let reader = new FileReader();
    4
            reader.onerror = reject;
    5
            reader.onload = (e) => fulfill(reader.result);
  4. moodle-format_onetopicplus Public

    Forked from davidherney/moodle-format_onetopic

    Moodle course format combining OneTopic with TopicActivityCards - with MORE options

    PHP

  5. moodle-tool_uploadactivitycompletions Public

    A Moodle Admin Tool to upload user activity completion data to Moodle via CSV

    PHP 6 4

  6. clonecategory Public

    A Moodle local plugin to clone all courses in a category, modifying shortname based on category idnumber, and adding start/end dates

    PHP 2 3