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
| from sqlalchemy import ForeignKey | |
| from sqlalchemy import Integer | |
| from sqlalchemy import String | |
| from sqlalchemy.orm import DeclarativeBase | |
| from sqlalchemy.orm import relationship | |
| from sqlalchemy import create_engine | |
| from sqlalchemy.orm import Session | |
| from sqlalchemy import Column | |
| # This script demonstrates a quiz bank with questions and answers. |
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 | |
| # please don't put nonsense temperatures here, I don't check | |
| mintemp=50 | |
| maxtemp=100 | |
| # found by running `sudo pwmconfig` | |
| minspeed=10 | |
| maxspeed=255 |
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
| FROM ubuntu:16.04 | |
| ARG DEBIAN_FRONTEND=noninteractive | |
| ENV TZ=America/Los_Angeles | |
| RUN apt-get update -qq \ | |
| && apt-get -y install vim git wget\ | |
| build-essential bison libc6-dev-i386 gcc-multilib g++-multilib byacc \ | |
| autoconf m4 automake gettext autopoint libtool |