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... A text parser that turns fairly regular plain text into a series of form elements for use in a survey. There is no concept of numbered questions, only responses. Questions can be grouped by adding a 'page:' identifier, which results in subsequent questions being part of a new fieldset, and are only a visual change (does not appear in results). Statements can be grouped by dichotomy. Lines without a type are ignored. Unanswered questions are reported as empty. There is no concept of required items. Results are in the format statement:answer or statement:answer1,answer2,answerN.
    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 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... blob to dataurl, because I keep forgetting how to do it!
    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 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 moodle-tool_uploadactivitycompletions Public

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

    PHP 6 4

  6. clonecategory 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