gulp is a toolkit that will help you automate painful or time-consuming tasks in your development workflow. For web development (if that's your thing) it can help you by doing CSS preprocessing, JS transpiling, minification, live reloading, and much more.
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
class Table | |
attr_reader :legs | |
attr_accessor :color | |
def initialize(legs, material, color) | |
@legs = legs | |
@material = material | |
@color = color | |
end |
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
function createSquare(length, x, y){ | |
return { | |
length: length, | |
width: length, | |
x: x, | |
y: y, | |
diameter: function(){ | |
var length_squared = Math.pow(this.length, 2); | |
var width_squared = Math.pow(this.width, 2); |
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
- Terrel | |
- Zayn | |
- Anthony DeOrsey | |
- Max Hallset | |
- Stoner (lol 420) | |
- Issac Tullis |
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
Permission is hereby granted, free of charge, to any person obtaining a copy of this joke and associated contextual renderings (the "Goof"), to deal in the Goofs without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Goof, and to permit persons to whom the Goof is furnished to do so, subject to the following conditions: | |
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Goof. | |
THE GOOF IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE GOOF OR THE USE OR OTHER DEALINGS IN THE GOOF, UNLESS THE GOOF MAKES YOU A JERK, |
- Friday 3/25
- System Check: Restaurant Reviews
- Facilitation: JS Fundamentals
- Afternoon Challenge: Help Jerry AND Nebula
- Weekend Challenge: Dark Nebula
- Weekend Readings:
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
T: | |
Justin: Questions | |
Chelsea: Questions | |
Nick: Dev | |
Drod: Curriculum | |
Jenn: Prep / Questions Backup | |
W: | |
Justin: Questions | |
Chelsea: Dev |
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
Mon - D1 | |
QQ: JE, NA | |
QB: JAR | |
CW: JH | |
OH: DRF | |
Prep: | |
Dev: CN | |
Tue - D2 | |
QQ: JH, JE |
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
- Remove Readings from Assignments Dropdown | |
- Add "Assigned Readings" section to assignments (differentiate from "submittable" assignments) | |
- Assign prompt on Individual lesson pages for Admins | |
- "Attendance" -> EH | |
- Edit page for Assignments | |
- MASS ASSIGNMENT ++++ |
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
First, we want to establish the idea that a computer language is not just a way of getting a computer to perform operations but rather that it is a novel formal medium for expressing ideas about methodology. Thus, programs must be written for people to read, and only incidentally for machines to execute. Second, we believe that the essential material to be addressed by a subject at this level is not the syntax of particular programming-language constructs, nor clever algorithms for computing particular functions efficiently, nor even the mathematical analysis of algorithms and the foundations of computing, but rather the techniques used to control the intellectual complexity of large software systems |