You can refer to this old SQL workshop for documentation on the sample sqlite database. Play close attention to the Online SQL Interpreter, also located here. That's similar to part of what we want to build!
This file contains 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
CANVAS_STABLE_VERSION=2024-08-28 | |
PGHOST= | |
PGPORT= | |
PGUSER= | |
PGPASSWORD= | |
PGDB= | |
RCE_APP_HOST="/rce" |
This file contains 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
// METABASE_API_KEY='' METABASE_URL='' COLLECTION_ID='' node index.js | |
const { writeFileSync, readFileSync, cpSync, mkdirSync, existsSync } = require('fs'); | |
const tar = require('tar'); | |
const path = require('path'); | |
const request = require('request-promise-native'); | |
const { METABASE_API_KEY, METABASE_URL, COLLECTION_ID } = process.env; | |
const SERIALIZATION_API_URL = `${METABASE_URL}/api/ee/serialization`; | |
const exportCollection = async (collectionId) => { |
This file contains 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
<script charset="utf-8" type="text/javascript" src="//js.hsforms.net/forms/embed/v2.js"></script> | |
<script> | |
hbspt.forms.create({ | |
region: "na1", | |
portalId: "24084423", | |
formId: "6a3edefc-d6eb-4eec-a23c-8a39d5ac65df", | |
onFormReady: async ($form) => { | |
const recaptcha = $form.querySelector('.hs-recaptcha'); | |
if (recaptcha) recaptcha.style.display = "none"; | |
$form.insertAdjacentHTML('beforebegin', ` |
This file contains 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
FROM phusion/passenger-full:latest as build | |
ARG CANVAS_STABLE_VERSION | |
ARG PGDB | |
ARG PGPORT | |
ARG PGHOST | |
ARG PGUSER | |
ARG PGPASSWORD | |
ARG SMTP_HOST | |
ARG SMTP_PORT |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
<%namespace name='static' file='/static_content.html'/> | |
<%! | |
from django.utils.translation import ugettext as _ | |
from student.models import anonymous_id_for_user | |
from opaque_keys.edx.keys import CourseKey | |
from hashlib import sha256 | |
from datetime import date | |
%> | |
<% | |
# set doc language direction |
This file contains 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
<div class="matrix"> | |
<div class="d1 c1 de" style="left:6%;">circl<span>e</span>codingaca<span>d</span>emy</div> | |
<div class="d3 f1" style="left:12%;">circl<span>e</span>codingaca<span>d</span>emy</div> | |
<div class="d1 f2 c1" style="left:18%;">circl<span>e</span>codingaca<span>d</span>emy</div> | |
<div class="d2 f1" style="left:24%;">circl<span>e</span>codingaca<span>d</span>emy</div> | |
<div class="d4 c3 de" style="left:30%;">circl<span>e</span>codingaca<span>d</span>emy</div> | |
<div class="d2 c1" style="left:36%;">circl<span>e</span>codingaca<span>d</span>emy</div> | |
<div class="d3 f2 c1" style="left:36%;">circl<span>e</span>codingaca<span>d</span>emy</div> | |
<div class="d1 c1" style="left:42%;">circl<span>e</span>codingaca<span>d</span>emy</div> | |
<div class="d3 de" style="left:48%;">circl<span>e</span>codingaca<span>d</span>emy</div> |
This file contains 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
{ | |
"date_updated": "2012-04-18", | |
"area_codes": [ | |
{ | |
"area_code": 201, | |
"city": "Jersey city, NJ", | |
"lat": 40.728157499999988, | |
"lng": -74.077641700000001 | |
}, | |
{ |
This file contains 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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
<title>Document</title> | |
<style> | |
html { |
NewerOlder