https://mcpt.ca/

ID da verificação
b7656d6b-9c8f-499c-b53f-8f676adc0d5fConcluído
URL enviado:
https://mcpt.ca/
Relatório concluído:
LinkTexto
https://forms.gle/XhUqFsrgt5VRYaqF7this form
https://classroom.google.com/c/Mzk3NTkyNTk0MjYw?cjc=2ubkkqiJoin Classroom
https://forms.gle/y8rTRrWKjELgoHMj8https://forms.gle/y8rTRrWKjELgoHMj8
https://forms.gle/Wn3QuZgWRnxpkNsx9https://forms.gle/Wn3QuZgWRnxpkNsx9
https://forms.gle/Tvdv1d9FjX8N8yx88https://forms.gle/Tvdv1d9FjX8N8yx88
https://forms.gle/6PyHWXFJjFRnqP9q9https://forms.gle/6PyHWXFJjFRnqP9q9
https://itch.io/jam/mackenzie-holiday-game-jam-iiihttps://itch.io/jam/mackenzie-holiday-game-jam-iii
https://github.com/MCPT/wlmojSource code

Variáveis JavaScript · 30 encontrada(s)

NomeTipo
onbeforetoggleobject
documentPictureInPictureobject
onscrollendobject
djangoobject
pluralidxfunction
gettextfunction
ngettextfunction
gettext_noopfunction
pgettextfunction
npgettextfunction

Mensagens de registro do console · 0 encontrada(s)

HTML

<!DOCTYPE html><html lang="en"><head>
    <title>Home - MCPT: Mackenzie Competitive Programming Team</title>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
        <meta name="keywords" content="MCPT,Canadian,WLMCI,WLMOJ,William Lyon Mackenzie,online judge,programming,code,contest,Canada,Ontario,Toronto,grade,interactive,Moose">
    <meta id="viewport" name="viewport" content="width=device-width, initial-scale=1">
    <!-- Favicons-->
    <link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
    <link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
    <link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
    <link rel="manifest" href="/site.webmanifest">
    <link rel="mask-icon" href="/safari-pinned-tab.svg" color="#fa013c">
    <meta name="msapplication-TileColor" content="#2d89ef">
    <meta name="theme-color" content="#2d89ef">
    <meta property="og:site_name" content="MCPT: Mackenzie Competitive Programming Team">
    <meta property="og:url" content="http:///">
    <script type="application/ld+json">
        {
            "@context": "https://schema.org",
            "@type": "WebSite",
            "url": "http://mcpt.ca/",
            "potentialAction": {
                "@type": "SearchAction",
                "target": "http://mcpt.ca/problems/?search={search_term_string}",
                "query-input": "required name=search_term_string"
            }
        }
    </script>
            <link rel="stylesheet" href="/static/style.acd5af5515c9.css">
<link rel="stylesheet" href="/static/libs/fontawesome/font-awesome.58f9cacb44d8.css">        <link rel="stylesheet" type="text/css" href="/static/libs/clipboard/tooltip.ccd04693fbaa.css">
        <link rel="stylesheet" type="text/css" href="/static/libs/select2/select2.c20888586739.css">
    <link rel="canonical" href="http:///">
    <link rel="alternate" type="application/atom+xml" href="/feed/blog/atom/" title="Atom Blog Feed">
    <link rel="alternate" type="application/rss+xml" href="/feed/blog/rss/" title="RSS Blog Feed">
    <link rel="alternate" type="application/atom+xml" href="/feed/comment/atom/" title="Atom Comment Feed">
    <link rel="alternate" type="application/rss+xml" href="/feed/comment/rss/" title="RSS Comment Feed">
    <link rel="alternate" type="application/atom+xml" href="/feed/problems/atom/" title="Atom Problem Feed">
    <link rel="alternate" type="application/rss+xml" href="/feed/problems/rss/" title="RSS Problem Feed">

        <script type="text/javascript">

'use strict';
{
  const globals = this;
  const django = globals.django || (globals.django = {});

  
  django.pluralidx = function(n) {
    const v = (n != 1);
    if (typeof v === 'boolean') {
      return v ? 1 : 0;
    } else {
      return v;
    }
  };
  

  /* gettext library */

  django.catalog = django.catalog || {};
  

  if (!django.jsi18n_initialized) {
    django.gettext = function(msgid) {
      const value = django.catalog[msgid];
      if (typeof value === 'undefined') {
        return msgid;
      } else {
        return (typeof value === 'string') ? value : value[0];
      }
    };

    django.ngettext = function(singular, plural, count) {
      const value = django.catalog[singular];
      if (typeof value === 'undefined') {
        return (count == 1) ? singular : plural;
      } else {
        return value.constructor === Array ? value[django.pluralidx(count)] : value;
      }
    };

    django.gettext_noop = function(msgid) { return msgid; };

    django.pgettext = function(context, msgid) {
      let value = django.gettext(context + '\x04' + msgid);
      if (value.includes('\x04')) {
        value = msgid;
      }
      return value;
    };

    django.npgettext = function(context, singular, plural, count) {
      let value = django.ngettext(context + '\x04' + singular, context + '\x04' + plural, count);
      if (value.includes('\x04')) {
        value = django.ngettext(singular, plural, count);
      }
      return value;
    };

    django.interpolate = function(fmt, obj, named) {
      if (named) {
        return fmt.replace(/%\(\w+\)s/g, function(match){return String(obj[match.slice(2,-2)])});
      } else {
        return fmt.replace(/%s/g, function(match){return String(obj.shift())});
      }
    };


    /* formatting library */

    django.formats = {
    "DATETIME_FORMAT": "N j, Y, P",
    "DATETIME_INPUT_FORMATS": [
      "%Y-%m-%d %H:%M:%S",
      "%Y-%m-%d %H:%M:%S.%f",
      "%Y-%m-%d %H:%M",
      "%m/%d/%Y %H:%M:%S",
      "%m/%d/%Y %H:%M:%S.%f",
      "%m/%d/%Y %H:%M",
      "%m/%d/%y %H:%M:%S",
      "%m/%d/%y %H:%M:%S.%f",
      "%m/%d/%y %H:%M",
      "%Y-%m-%d"
    ],
    "DATE_FORMAT": "N j, Y",
    "DATE_INPUT_FORMATS": [
      "%Y-%m-%d",
      "%m/%d/%Y",
      "%m/%d/%y"
    ],
    "DECIMAL_SEPARATOR": ".",
    "FIRST_DAY_OF_WEEK": 0,
    "MONTH_DAY_FORMAT": "F j",
    "NUMBER_GROUPING": 3,
    "SHORT_DATETIME_FORMAT": "m/d/Y P",
    "SHORT_DATE_FORMAT": "m/d/Y",
    "THOUSAND_SEPARATOR": ",",
    "TIME_FORMAT": "P",
    "TIME_INPUT_FORMATS": [
      "%H:%M:%S",
      "%H:%M:%S.%f",
      "%H:%M"
    ],
    "YEAR_MONTH_FORMAT": "F Y"
  };

    django.get_format = function(format_type) {
      const value = django.formats[format_type];
      if (typeof value === 'undefined') {
        return format_type;
      } else {
        return value;
      }
    };

    /* add to global namespace */
    globals.pluralidx = django.pluralidx;
    globals.gettext = django.gettext;
    globals.ngettext = django.ngettext;
    globals.gettext_noop = django.gettext_noop;
    globals.pgettext = django.pgettext;
    globals.npgettext = django.npgettext;
    globals.interpolate = django.interpolate;
    globals.get_format = django.get_format;

    django.jsi18n_initialized = true;
  }
};

</script>
            <script src="/static/libs/jquery-3.4.1.min.220afd743d9e.js" type="text/javascript"></script>
        <script src="/static/libs/jquery-cookie.ce74395423fa.js" type="text/javascript"></script>
        <script src="/static/libs/jquery-taphold.9194ebbabcba.js" type="text/javascript"></script>
        <script src="/static/libs/jquery.unveil.09163333051e.js" type="text/javascript"></script>
        <script src="/static/libs/moment.0c0ed3a5291c.js" type="text/javascript"></script>
        <script src="/static/libs/select2/select2.e87ca4c3554f.js" type="text/javascript"></script>
        <script src="/static/common.b21e58346420.js" type="text/javascript"></script>
        <script type="text/javascript">
            moment.locale('en');
            set_date_locale('en');
            $(function () {
                $('img.unveil').unveil(200);
            });
        </script>
    <script type="text/javascript">
        $(document).ready(function () {
            $('.time-remaining').each(function () {
                count_down($(this));
            });

            $('.blog-sidebar').hide();
            $('#blog-tab').find('a').click(function (e) {
                e.preventDefault();
                $('#blog-tab').addClass('active');
                $('#event-tab').removeClass('active');
                $('.blog-content').show();
                $('.blog-sidebar').hide();
            });
            $('#event-tab').find('a').click(function (e) {
                e.preventDefault();
                $('#event-tab').addClass('active');
                $('#blog-tab').removeClass('active');
                $('.blog-content').hide();
                $('.blog-sidebar').show();
            });
        });
    </script>

        <script type="text/javascript">window.user = {};</script>



    <noscript>
        <style>
            #content {
                margin: 80px auto auto;
            }

            #navigation {
                top: 27px;
            }
        </style>
    </noscript>
</head>
<body class="window-visible">
<svg width="0" height="0" style="display: block">
    <defs>
        <clipPath id="rating-clip"><circle cx="8" cy="8" r="7"></circle></clipPath>
    </defs>
</svg>
<nav id="navigation" class="unselectable">
    <div id="nav-container">
        <a id="navicon" href="javascript:void(0)"><i class="fa fa-bars"></i></a>
        <ul id="nav-list">
            <li class="home-nav-element"><a href="/">    <img src="/static/icons/logo.f7cd4ccfffe8.png" alt="MCPT" height="44" onerror="this.src=&quot;/static/icons/logo.f7cd4ccfffe8.png&quot;; this.onerror=null" style="border: none">
</a></li>
            <li class="home-nav-element"><span class="nav-divider"></span></li>
            <li class="home-menu-item"><a href="/" class="nav-home">Home</a></li>
                <li>
                    <a href="/problems/" class="nav-problems">
                        Problems
                            <div class="nav-expand">&gt;</div>
                    </a>
<ul>                <li>
                    <a href="/submissions/" class="nav-submit">
                        Submissions
                    </a>
                </li>
</ul>                </li>
                <li>
                    <a href="/users/" class="nav-user">
                        Users
                    </a>
                </li>
                <li>
                    <a href="/contests/" class="nav-contest">
                        Contests
                            <div class="nav-expand">&gt;</div>
                    </a>
<ul>                <li>
                    <a href="/submissions/" class="nav-submit2">
                        Submissions
                    </a>
                </li>
</ul>                </li>
                <li>
                    <a href="https://learning.mcpt.ca/" class="nav-learning">
                        Learning
                    </a>
                </li>
                <li>
                    <a href="/about/" class="nav-more">
                        More
                            <div class="nav-expand">&gt;</div>
                    </a>
<ul>                <li>
                    <a href="/about/" class="nav-about">
                        About
                    </a>
                </li>
                <li>
                    <a href="/contact/" class="nav-contact">
                        Contact
                    </a>
                </li>
                <li>
                    <a href="/status/" class="nav-status">
                        Status
                    </a>
                </li>
                <li>
                    <a href="https://ctf.mcpt.ca" class="nav-ctf">
                        Capture the Flag
                    </a>
                </li>
                <li>
                    <a href="/lessons" class="nav-lessons">
                        Lessons
                    </a>
                </li>
                <li>
                    <a href="/faq/" class="nav-faq">
                        FAQ
                    </a>
                </li>
                <li>
                    <a href="/achievements/" class="nav-achieve">
                        Achievements
                    </a>
                </li>
                <li>
                    <a href="https://archive.mcpt.ca" class="nav-archived">
                        Site Archive
                    </a>
                </li>
</ul>                </li>
        </ul>

        <span id="user-links">
                <span class="anon">
                    <a href="/accounts/login/?next=/"><b>Log in</b></a>
                    &nbsp;or&nbsp;
                    <a href="/accounts/register/"><b>Sign up</b></a>
                </span>
        </span>
    </div>
    <div id="nav-shadow"></div>
</nav>
<div id="page-container">
    <noscript>
        <div id="noscript">This site works best with JavaScript enabled.</div>
    </noscript>
    <br>
    <main id="content">
        <div id="content-body">        <div style="display: flex">
    <div class="blog-content sidebox">
        <h3>Welcome to Mackenzie's Computer Programming Team! <i class="fa fa-exclamation"></i></h3>
        <div class="sidebox-content">
            <p style="margin: 0.5em 1em;"><b>Fill out <a href="https://forms.gle/XhUqFsrgt5VRYaqF7">this form</a> to officially register as a member of MCPT for the 2024-2025 school year!</b></p>
        </div>
    </div>
    <div class="blog-sidebar" style="display: none;">
        <div class="blog-sidebox sidebox">
            <h3>Our Google Classroom <i class="fa fa-book"></i></h3>
            <div class="sidebox-content">
                <p style="margin: 0.5em 1em">Join our Google classroom to stay up to date on upcoming events!</p>
                <a class="button" style="margin-bottom: 0.5rem; margin-left: 1em; margin-right: 1em;" href="https://classroom.google.com/c/Mzk3NTkyNTk0MjYw?cjc=2ubkkqi" target="_blank" rel="noreferrer noopener">Join Classroom</a>
            </div>
        </div>
    </div>
</div>
    <div id="mobile" class="tabs">
        <ul>
            <li id="blog-tab" class="tab active"><a href="#">
                <i class="tab-icon fa fa-info-circle"></i> Blog
            </a></li>
            <li id="event-tab" class="tab"><a href="#"><i class="tab-icon fa fa-rss"></i> Events</a></li>
        </ul>
    </div>
    <div id="blog-container">
        <div class="blog-content sidebox">
            <h3>News <i class="fa fa-terminal"></i></h3>
            <div class="sidebox-content">
                    <section class="post">
                        <h2 class="title">
                            <a href="/post/79-lyonhacks-iv-schedule">Lyonhacks IV schedule</a>
                        </h2>
                        <span class="time"><span class="post-authors"><span class="rating rate-none user"><a href="/user/anieni">anieni</a></span></span>                                <span data-iso="2024-04-28T18:34:00+00:00" class="time-with-rel" title="April 28, 2024, 6:34 p.m." data-format="posted {time}">posted on April 28, 2024, 6:34 p.m.</span>
                        </span><span class="comment-data">
                            <a href="/post/79-lyonhacks-iv-schedule#comments" class="comment-count-link">
                                <i class="fa fa-comments comment-icon"></i><span class="comment-count">0</span>
                            </a>
                        </span>
                        <div class="summary content-description">
                                <div><p>Attention LyonHackers! 📣 Here is what your coding-filled weekend will look like - the workshops hosted by our execs will help guide you to complete your projects, so don't miss out! ✍️</p>
<p></p><div style="max-width: 40%; display: block; margin-left:auto; margin-right: auto; padding-bottom: 10px;"><noscript>&lt;img src="/media/martor/aac56c80-5d7e-4a00-bb99-87d6de873dea.png" alt=""&gt;</noscript><img src="/media/martor/aac56c80-5d7e-4a00-bb99-87d6de873dea.png" alt="" data-src="/media/martor/aac56c80-5d7e-4a00-bb99-87d6de873dea.png" class="unveil">
</div></div>
</div>
                    </section>
                    <section class="post">
                        <h2 class="title">
                            <a href="/post/78-lyonhacks-iv">Lyonhacks IV</a>
                        </h2>
                        <span class="time"><span class="post-authors"><span class="rating rate-none user"><a href="/user/anieni">anieni</a></span></span>                                <span data-iso="2024-04-28T18:31:00+00:00" class="time-with-rel" title="April 28, 2024, 6:31 p.m." data-format="posted {time}">posted on April 28, 2024, 6:31 p.m.</span>
                        </span><span class="comment-data">
                            <a href="/post/78-lyonhacks-iv#comments" class="comment-count-link">
                                <i class="fa fa-comments comment-icon"></i><span class="comment-count">0</span>
                            </a>
                        </span>
                        <div class="summary content-description">
                                <div><p>Hey everyone! Due to some ✨ unforeseen circumstances ✨, LyonHacks IV has been <strong>postponed </strong>to May. This is your chance to gain programming skills, win prizes, and build that resume, so make sure to sign up!</p>
<p><strong>What is LyonHacks?</strong>: LyonHacks is MCPT’s very own 36-hour annual hackathon - a programming competition that challenges teams to design and pitch a software application to our panel of judges.</p>
<p><strong>When will it take place?</strong> 📅: LyonHacks IV will start on <strong>May 4th, 12:00 PM</strong> and end on <strong>May 5th, 11:59 PM</strong>.</p>
<p><strong>Where will it take place?</strong>📍: LyonHacks is held virtually this year. The opening ceremony, guest speakers, closing ceremony will all take place through Zoom.</p>
<p><strong>Who can participate?</strong> 👥: All <strong>current WLMAC students</strong> are welcome to participate! You will form your own team with a MAXIMUM size of 4 people (including yourself). When signing up on the google form, ensure that only ONE person in your team is submitting it.</p>
<p><strong>Are there prizes?</strong> 🏆: Yes! We have over $150 in prizes to give out!</p>
<p></p><div style="max-width: 40%; display: block; margin-left:auto; margin-right: auto; padding-bottom: 10px;"><noscript>&lt;img src="/media/martor/3afe48df-fe73-4ce0-9f2b-735820bcfebc.png" alt=""&gt;</noscript><img src="/static/blank.b44917055649.gif" alt="" data-src="/media/martor/3afe48df-fe73-4ce0-9f2b-735820bcfebc.png" class="unveil">
</div></div>
</div>
                    </section>
                    <section class="post">
                        <h2 class="title">
                            <a href="/post/77-2023-2024-hoodies">2023-2024 Hoodies!</a>
                        </h2>
                        <span class="time"><span class="post-authors"><span class="rating rate-none user"><a href="/user/anieni">anieni</a></span></span>                                <span data-iso="2024-04-09T17:56:55+00:00" class="time-with-rel" title="April 9, 2024, 5:56 p.m." data-format="posted {time}">posted on April 9, 2024, 5:56 p.m.</span>
                        </span><span class="comment-data">
                            <a href="/post/77-2023-2024-hoodies#comments" class="comment-count-link">
                                <i class="fa fa-comments comment-icon"></i><span class="comment-count">0</span>
                            </a>
                        </span>
                        <div class="summary content-description">
                                <div><p>Thanks to everyone, the hoodie colour has been decided! The 2023-2024 MCPT hoodie will be <strong>maroon</strong> 😍 Order them now at <a href="https://mcpt.ca/hoodies24">https://mcpt.ca/hoodies24</a> ! The form will close on <strong>Friday, April 12th, at 11:59pm</strong>, which is soon, so don't forget 🫵</p>
<p></p><div style="max-width: 40%; display: block; margin-left:auto; margin-right: auto; padding-bottom: 10px;"><noscript>&lt;img src="/media/martor/aff1f9e7-1cf2-4f5f-a678-a486c7fde7c0.png" alt=""&gt;</noscript><img src="/static/blank.b44917055649.gif" alt="" data-src="/media/martor/aff1f9e7-1cf2-4f5f-a678-a486c7fde7c0.png" class="unveil">
</div></div>
</div>
                    </section>
                    <section class="post">
                        <h2 class="title">
                            <a href="/post/76-february-2023-lcc">February 2024 LCC</a>
                        </h2>
                        <span class="time"><span class="post-authors"><span class="rating rate-none president"><a href="/user/marsflat">marsflat</a></span>, <span class="rating rate-none president"><a href="/user/Trent">Trent</a></span>, <span class="rating rate-none user"><a href="/user/anieni">anieni</a></span>, <span class="rating rate-none user"><a href="/user/alieolio">alieolio</a></span></span>                                <span data-iso="2024-02-15T03:34:00+00:00" class="time-with-rel" title="Feb. 15, 2024, 3:34 a.m." data-format="posted {time}">posted on Feb. 15, 2024, 3:34 a.m.</span>
                        </span><span class="comment-data">
                            <a href="/post/76-february-2023-lcc#comments" class="comment-count-link">
                                <i class="fa fa-comments comment-icon"></i><span class="comment-count">0</span>
                            </a>
                        </span>
                        <div class="summary content-description">
                                <div><p>Love is in the air everyone! Get ready to celebrate this year's Valentine's day with your most loved one - programming (definitely true 👍). Grab your keyboards  ⌨️  and chocolate 🍫 , and get ready to compete in MCPT's Valentine's day themed LCC!</p>
<p>This is the final LCC before CCC, so it's the perfect chance to do some last minute refinement on your competitive programming skills. The competition will be held on <strong>Thursday, February 15th</strong>, from <strong>5 PM</strong> to <strong>7:30 PM</strong>. Mark your calendars, spread the love, and get ready to spend a lovely evening with your loved one! 💘</p>
<p></p><div style="max-width: 40%; display: block; margin-left:auto; margin-right: auto; padding-bottom: 10px;"><noscript>&lt;img src="/media/martor/5e6ac273-22ee-461c-9304-349ebb69637e.png" alt=""&gt;</noscript><img src="/static/blank.b44917055649.gif" alt="" data-src="/media/martor/5e6ac273-22ee-461c-9304-349ebb69637e.png" class="unveil">
</div></div>
</div>
                    </section>
                    <section class="post">
                        <h2 class="title">
                            <a href="/post/75-valetines-food-day">Valetine's Food Day!</a>
                        </h2>
                        <span class="time"><span class="post-authors"><span class="rating rate-none user"><a href="/user/anieni">anieni</a></span></span>                                <span data-iso="2024-02-14T01:00:08+00:00" class="time-with-rel" title="Feb. 14, 2024, 1:00 a.m." data-format="posted {time}">posted on Feb. 14, 2024, 1:00 a.m.</span>
                        </span><span class="comment-data">
                            <a href="/post/75-valetines-food-day#comments" class="comment-count-link">
                                <i class="fa fa-comments comment-icon"></i><span class="comment-count">0</span>
                            </a>
                        </span>
                        <div class="summary content-description">
                                <div><p>Happy Valentine's everyone! 💌 MCPT is here to show you all love during tomorrow's FOOD DAY! Don't have a Valentine? 💔 Don't be too sad, because we're here to cheer you up with our <strong>$4 hotdog and pop combo</strong> ($3 for hot dog only)! 🥹 Come down to the cafeteria at lunch to support the club and grab a sweet bite.</p>
<p></p><div style="max-width: 40%; display: block; margin-left:auto; margin-right: auto; padding-bottom: 10px;"><noscript>&lt;img src="/media/martor/6c288448-3c0c-4b05-8a9b-204292ac99d6.png" alt=""&gt;</noscript><img src="/static/blank.b44917055649.gif" alt="" data-src="/media/martor/6c288448-3c0c-4b05-8a9b-204292ac99d6.png" class="unveil">
</div></div>
</div>
                    </section>
                    <section class="post">
                        <h2 class="title">
                            <a href="/post/74-ccc-late-registration">CCC Late Registration</a>
                        </h2>
                        <span class="time"><span class="post-authors"><span class="rating rate-none president"><a href="/user/marsflat">marsflat</a></span>, <span class="rating rate-none president"><a href="/user/Trent">Trent</a></span>, <span class="rating rate-none user"><a href="/user/anieni">anieni</a></span></span>                                <span data-iso="2024-01-20T03:44:00+00:00" class="time-with-rel" title="Jan. 20, 2024, 3:44 a.m." data-format="posted {time}">posted on Jan. 20, 2024, 3:44 a.m.</span>
                        </span><span class="comment-data">
                            <a href="/post/74-ccc-late-registration#comments" class="comment-count-link">
                                <i class="fa fa-comments comment-icon"></i><span class="comment-count">0</span>
                            </a>
                        </span>
                        <div class="summary content-description">
                                <div><p>Exams may be approaching 😨... but so is CCC! Good news for those of you who forgot to sign up (<em>tsk tsk</em>), you still have a chance to register using the form below (due <strong>January 31</strong>)! If you've already signed up, don't forget to pay the $10 fee which should be available now on SchoolCashOnline.</p>
<p>Another reminder that the CCC requirement includes participating in at least 3 LCCs and 7 competitive lessons. If you wish to be exempt from this requirement, fill out the form below.</p>
<blockquote><p>CCC late registration form: <a href="https://forms.gle/y8rTRrWKjELgoHMj8">https://forms.gle/y8rTRrWKjELgoHMj8</a></p>
<p>CCC requirements exemption form: <a href="https://forms.gle/Wn3QuZgWRnxpkNsx9">https://forms.gle/Wn3QuZgWRnxpkNsx9</a></p>
</blockquote>
<p>Good luck with your exams everyone‼️</p>
</div>
</div>
                    </section>
                    <section class="post">
                        <h2 class="title">
                            <a href="/post/73-ccc-reminder">CCC Reminder</a>
                        </h2>
                        <span class="time"><span class="post-authors"><span class="rating rate-none president"><a href="/user/marsflat">marsflat</a></span>, <span class="rating rate-none president"><a href="/user/Trent">Trent</a></span>, <span class="rating rate-none user"><a href="/user/anieni">anieni</a></span></span>                                <span data-iso="2024-01-09T03:59:00+00:00" class="time-with-rel" title="Jan. 9, 2024, 3:59 a.m." data-format="posted {time}">posted on Jan. 9, 2024, 3:59 a.m.</span>
                        </span><span class="comment-data">
                            <a href="/post/73-ccc-reminder#comments" class="comment-count-link">
                                <i class="fa fa-comments comment-icon"></i><span class="comment-count">0</span>
                            </a>
                        </span>
                        <div class="summary content-description">
                                <div><p>Welcome back MCPT... 🎉</p>
<p>This is a reminder for everyone to sign up for the upcoming CCC contest! 🧑‍💻 The deadline is only <strong>2</strong> days away on <strong>January 10th 11:59 PM</strong> (no exceptions)! Don't forget to pay the $10 fee due January 25 which will be on SchoolCashOnline AFTER signups close.</p>
<p>P.S. Make sure that you are eligible for CCC by participating in at least 3 LCCs and 7 competitive lessons. Those who have filled out the exemption form should go ahead and register using the form below, regardless of whether you got a response yet.</p>
<p>Signup form:</p>
<blockquote><p><a href="https://forms.gle/Tvdv1d9FjX8N8yx88">https://forms.gle/Tvdv1d9FjX8N8yx88</a></p>
</blockquote>
</div>
</div>
                    </section>
                    <section class="post">
                        <h2 class="title">
                            <a href="/post/72-2023-holiday-game-jam">2023 Holiday Game Jam</a>
                        </h2>
                        <span class="time"><span class="post-authors"><span class="rating rate-none user"><a href="/user/cheollie">cheollie</a></span>, <span class="rating rate-none user"><a href="/user/anieni">anieni</a></span></span>                                <span data-iso="2023-12-20T05:10:00+00:00" class="time-with-rel" title="Dec. 20, 2023, 5:10 a.m." data-format="posted {time}">posted on Dec. 20, 2023, 5:10 a.m.</span>
                        </span><span class="comment-data">
                            <a href="/post/72-2023-holiday-game-jam#comments" class="comment-count-link">
                                <i class="fa fa-comments comment-icon"></i><span class="comment-count">0</span>
                            </a>
                        </span>
                        <div class="summary content-description">
                                <div><p>There's 3 more days before the winter break ❄️ , but do you know what else that means? 👀 It's almost time for <strong>MCPT's Holiday Game Jam</strong>! ☃️</p>
<p>MCPT is hosting its third annual game jam over the winter break, spanning from <strong>December 26th at 10AM</strong> to <strong>December 30th at 10AM</strong> (just 96 hours!), where you can form a team of up to 4 Mackenzie students to <strong>create a game</strong> 🎮 and a short video pitch. Additionally, there are <strong>$120 worth of prizes</strong> ready to be awarded for the best games 🏆. Do not fear if you don't have any previous game development experience, as we'll also be hosting workshops, activities, and mentorship sessions! 😉</p>
<p>Don't miss out on this great opportunity to gain some game development experience while also learning, bonding, and having fun! Register your team by <strong>December 24th at 11:59PM</strong> to save your spot.</p>
<p><a href="https://forms.gle/6PyHWXFJjFRnqP9q9">https://forms.gle/6PyHWXFJjFRnqP9q9</a></p>
<p>For more information, visit:</p>
<p><a href="https://itch.io/jam/mackenzie-holiday-game-jam-iii">https://itch.io/jam/mackenzie-holiday-game-jam-iii</a></p>
<p></p><div style="max-width: 100%; display: block; margin-left:auto; margin-right: auto; padding-bottom: 10px;"><noscript>&lt;img src="/media/martor/ebd4867e-ce9b-440c-aa90-b713944425d8.png" alt=""&gt;</noscript><img src="/static/blank.b44917055649.gif" alt="" data-src="/media/martor/ebd4867e-ce9b-440c-aa90-b713944425d8.png" class="unveil">
</div></div>
</div>
                    </section>
                    <section class="post">
                        <h2 class="title">
                            <a href="/post/71-december-2023-lcc">December 2023 LCC</a>
                        </h2>
                        <span class="time"><span class="post-authors"><span class="rating rate-none user"><a href="/user/anieni">anieni</a></span>, <span class="rating rate-none user"><a href="/user/alieolio">alieolio</a></span>, <span class="rating rate-none user"><a href="/user/xela">xela</a></span></span>                                <span data-iso="2023-12-18T00:20:00+00:00" class="time-with-rel" title="Dec. 18, 2023, 12:20 a.m." data-format="posted {time}">posted on Dec. 18, 2023, 12:20 a.m.</span>
                        </span><span class="comment-data">
                            <a href="/post/71-december-2023-lcc#comments" class="comment-count-link">
                                <i class="fa fa-comments comment-icon"></i><span class="comment-count">0</span>
                            </a>
                        </span>
                        <div class="summary content-description">
                                <div><p>Ho! Ho! Ho! Happy (slightly early) holidays! 🎅</p>
<p>With winter break just around the corner, MCPT is excited to host the last LCC of 2023! Join us for a <em>holiday-themed</em> contest, where you will get a chance to win some presents (MCPT pins)! December's LCC will run on <strong>Thursday, December 21st</strong>, from <strong>5 PM to 7:30 PM</strong>. See you there!</p>
<p>P.S. Quick reminder that you must participate in at least 3 LCCs and 7 competitive lessons to participate in CCC.</p>
<p></p><div style="max-width: 40%; display: block; margin-left:auto; margin-right: auto; padding-bottom: 10px;"><noscript>&lt;img src="/media/martor/0e42f0cb-df24-47de-af91-1cc5b6876e3d.png" alt=""&gt;</noscript><img src="/static/blank.b44917055649.gif" alt="" data-src="/media/martor/0e42f0cb-df24-47de-af91-1cc5b6876e3d.png" class="unveil">
</div></div>
</div>
                    </section>
                    <section class="post">
                        <h2 class="title">
                            <a href="/post/69-november-2023-lcc">November 2023 LCC</a>
                        </h2>
                        <span class="time"><span class="post-authors"><span class="rating rate-none user"><a href="/user/anieni">anieni</a></span></span>                                <span data-iso="2023-11-27T00:31:00+00:00" class="time-with-rel" title="Nov. 27, 2023, 12:31 a.m." data-format="posted {time}">posted on Nov. 27, 2023, 12:31 a.m.</span>
                        </span><span class="comment-data">
                            <a href="/post/69-november-2023-lcc#comments" class="comment-count-link">
                                <i class="fa fa-comments comment-icon"></i><span class="comment-count">0</span>
                            </a>
                        </span>
                        <div class="summary content-description">
                                <div><p>Are you <em>snuggling</em> to get through these winter days? 🥶 Just wanna stay at home and <em>chill</em>ax? 🍵 Well then, settle down, grab a laptop, a nice cup of hot cocoa, your favourite blanket, and get ready for...</p>
<p>The second <strong>Lyon's Computing Competition</strong> (LCC) of the year, which will be coming up <strong>this Thursday</strong> (November 30) from <strong>5pm to 7:30pm</strong>! In case you forgot, it is a team programming competition with both a junior and a senior division for Mackenzie students. We're excited to announce that the top three teams for both the senior and junior competitions will receive <strong>limited edition MCPT stickers</strong> as a prize! So don't hesitate and give it your all 💪!</p>
<p>Also, a reminder that in order to participate in next year's CCC, you must participate in at least 3 LCCs. If you're in a new team, make sure to sign up with the link below by <strong>Wednesday, November 29th at 11:59pm</strong>. As this form is only for new teams, existing teams cannot be changed.
<a href="https://mcpt.ca/lcc/signup">https://mcpt.ca/lcc/signup</a></p>
<p></p><div style="max-width: 40%; display: block; margin-left:auto; margin-right: auto; padding-bottom: 10px;"><noscript>&lt;img src="/media/martor/d528d7f8-44e1-442b-a27e-d56ec3538c05.png" alt=""&gt;</noscript><img src="/static/blank.b44917055649.gif" alt="" data-src="/media/martor/d528d7f8-44e1-442b-a27e-d56ec3538c05.png" class="unveil">
</div></div>
</div>
                    </section>
            </div>
                <div class="bottom-pagination-bar"><ul class="pagination">
        <li class="disabled-page"><span>«</span></li>

            <li class="active-page"><a href="/">1</a></li>
            <li><a href="/blog/2">2</a></li>
            <li><a href="/blog/3">3</a></li>
            <li><a href="/blog/4">4</a></li>
            <li><a href="/blog/5">5</a></li>
            <li><a href="/blog/6">6</a></li>
            <li><a href="/blog/7">7</a></li>
            <li><a href="/blog/8">8</a></li>

        <li><a href="/blog/2">»</a></li>
</ul></div>
        </div>

        <div class="blog-sidebar" style="display: none;">


            <div class="blog-sidebox sidebox">
                <h3>Comment stream <i class="fa fa-comments"></i></h3>
                <div class="sidebox-content">
                    <ul>
                            <li>
                                <span style="padding-left:0.25em" class="poster">
                                    <span class="rating rate-none user"><a href="/user/AndyMan68">AndyMan68</a></span>
                                </span> →
                                <a href="/problem/icebergs#comment-261">Icebergs</a>
                            </li>
                            <li>
                                <span style="padding-left:0.25em" class="poster">
                                    <span class="rating rate-expert user"><a href="/user/htoshiro">htoshiro</a></span>
                                </span> →
                                <a href="/problem/ratedc1p3#comment-260">Rated Contest 1 P3 - Trap-ezoid</a>
                            </li>
                            <li>
                                <span style="padding-left:0.25em" class="poster">
                                    <span class="rating rate-none user"><a href="/user/greedo7">greedo7</a></span>
                                </span> →
                                <a href="/problem/dimsum#comment-259">Dim Sum!</a>
                            </li>
                            <li>
                                <span style="padding-left:0.25em" class="poster">
                                    <span class="rating rate-newbie user"><a href="/user/how_to_code">how_to_code</a></span>
                                </span> →
                                <a href="/contest/learningcontest23c3#comment-258">December 6th 2023 - ICS3U Learning Contest 3</a>
                            </li>
                            <li>
                                <span style="padding-left:0.25em" class="poster">
                                    <span class="rating rate-none user"><a href="/user/greedo7">greedo7</a></span>
                                </span> →
                                <a href="/problem/hudab#comment-257">:hudab:</a>
                            </li>
                            <li>
                                <span style="padding-left:0.25em" class="poster">
                                    <span class="rating rate-none user"><a href="/user/greedo7">greedo7</a></span>
                                </span> →
                                <a href="/problem/abaseproblem#comment-256">A Base Problem</a>
                            </li>
                            <li>
                                <span style="padding-left:0.25em" class="poster">
                                    <span class="rating rate-candidate-master user"><a href="/user/Iaminnocent4298">Iaminnocent4298</a></span>
                                </span> →
                                <a href="/contest/learningcontest23c2#comment-255">December 6th 2023 - ICS3U Learning Contest 2</a>
                            </li>
                            <li>
                                <span style="padding-left:0.25em" class="poster">
                                    <span class="rating rate-none president"><a href="/user/marsflat">marsflat</a></span>
                                </span> →
                                <a href="/problem/lcc23c2s2#comment-254">LCC '23 Contest 2 S2 - How the Cookie Uncrumbles</a>
                            </li>
                            <li>
                                <span style="padding-left:0.25em" class="poster">
                                    <span class="rating rate-newbie user"><a href="/user/Emera1d">Emera1d</a></span>
                                </span> →
                                <a href="/problem/lcc21c4s6#comment-253">LCC '21 Contest 4 J6/S6 - April Fools!</a>
                            </li>
                            <li>
                                <span style="padding-left:0.25em" class="poster">
                                    <span class="rating rate-newbie user"><a href="/user/Emera1d">Emera1d</a></span>
                                </span> →
                                <a href="/contest/learningcontest23c1#comment-252">October 30th 2023 - Learning Branch Contest 1</a>
                            </li>
                    </ul>
                    <span class="rssatom">
                        <a href="/feed/comment/rss/"><span><i class="fa fa-rss"></i></span> RSS</a>
                        /
                        <a href="/feed/comment/atom/">Atom</a>
                    </span>
                </div>
            </div>
            <div class="blog-sidebox sidebox">
                <h3>New problems <i class="fa fa-puzzle-piece"></i>
                </h3>
                <div class="sidebox-content">
                    <ul class="problem-list">
                            <li><a href="/problem/university">University Applicants</a></li>
                            <li><a href="/problem/lcc23c4j4">LCC '23 Contest 4 J4 - Help Me</a></li>
                            <li><a href="/problem/lcc23c4j3">LCC '23 Contest 4 J3 - Engineering Room</a></li>
                            <li><a href="/problem/ratedc2p4">Rated Contest 2 P4 - Ski Lifts</a></li>
                            <li><a href="/problem/segtreetest">Segment Tree Test</a></li>
                            <li><a href="/problem/lcc23c3s4">LCC '23 Contest 3 S4 - Snowmobile</a></li>
                            <li><a href="/problem/lcc23c3s5">LCC '23 Contest 3 S5 - Snowstorm</a></li>
                    </ul>
                    <span class="rssatom">
                        <a href="/feed/problems/rss/"><span><i class="fa fa-rss"></i></span> RSS</a>
                        /
                        <a href="/feed/problems/atom/">Atom</a>
                    </span>
                </div>
            </div>

        </div>
    </div>
</div>
    </main>



    <footer>
        <span id="footer-content">
            <br>
                <span id="quote"><abbr title="🤷">¯\_(ツ)_/¯</abbr></span> |
<a style="color: #808080"><b>Mackenzie's CPT Judge</b></a> |
<a style="color: #808080" href="/tos/">Terms of Service</a> |
<a style="color: #808080" href="https://github.com/MCPT/wlmoj">Source code</a>

<!--Quote control.-->
<style>
  #quote abbr {
    border: none;
    display: inline;
    text-decoration: none;
    color: #5b80b9;
  }
</style>
<script type="text/javascript">
  jQuery.getJSON("/static/quotes.json", function (quotes) {
    let quote = quotes[Math.floor(Math.random() * quotes.length)]
    document.getElementById("quote").innerHTML = (quote["tooltip"] ? `<abbr title="${quote["tooltip"]}">${quote["quote"]}</abbr>` : quote["quote"]);
  });
</script> |
            <form action="/i18n/setlang/" method="post" style="display: inline">
<input type="hidden" name="csrfmiddlewaretoken" value="wV0jeDI2E5oCsuWC89TyNTu80KaJD68OSc3hAQtsysjRbAEkfaEI4xIwXolXLiJk">            <input name="next" type="hidden" value="/">
            <select name="language" onchange="if (!window.__cfRLUnblockHandlers) return false; form.submit()" style="height: 1.5em">
                    <option value="ca">
                        català (ca)
                    </option>
                    <option value="de">
                        Deutsch (de)
                    </option>
                    <option value="el">
                        Ελληνικά (el)
                    </option>
                    <option value="en" selected="">
                        English (en)
                    </option>
                    <option value="es">
                        español (es)
                    </option>
                    <option value="fr">
                        français (fr)
                    </option>
                    <option value="hr">
                        Hrvatski (hr)
                    </option>
                    <option value="hu">
                        Magyar (hu)
                    </option>
                    <option value="ja">
                        日本語 (ja)
                    </option>
                    <option value="kk">
                        Қазақ (kk)
                    </option>
                    <option value="ko">
                        한국어 (ko)
                    </option>
                    <option value="pt">
                        Português (pt)
                    </option>
                    <option value="ro">
                        Română (ro)
                    </option>
                    <option value="ru">
                        Русский (ru)
                    </option>
                    <option value="sr-latn">
                        srpski (latinica) (sr-latn)
                    </option>
                    <option value="tr">
                        Türkçe (tr)
                    </option>
                    <option value="vi">
                        Tiếng Việt (vi)
                    </option>
                    <option value="zh-hans">
                        简体中文 (zh-hans)
                    </option>
                    <option value="zh-hant">
                        繁體中文 (zh-hant)
                    </option>
            </select>
          </form>
        </span>
    </footer>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/vcd15cbe7772f49c399c6a5babf22c1241717689176015" integrity="sha512-ZpsOmlRQV6y907TI0dKBHq9Md29nnaEIPlkf84rnaERnq6zvWvPUqr2ft8M1aS28oN72PdrCzSjY4U6VaAw1EQ==" data-cf-beacon="{&quot;rayId&quot;:&quot;8d8d30f27d30785c&quot;,&quot;version&quot;:&quot;2024.10.4&quot;,&quot;r&quot;:1,&quot;serverTiming&quot;:{&quot;name&quot;:{&quot;cfExtPri&quot;:true,&quot;cfL4&quot;:true,&quot;cfSpeedBrain&quot;:true,&quot;cfCacheStatus&quot;:true}},&quot;token&quot;:&quot;2ded19a997d449698f12e9637651d9c8&quot;,&quot;b&quot;:1}" crossorigin="anonymous"></script>

</body></html>