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
M400 ; wait for in-progress moves | |
M220 S100 ; reset speed factor override percentage | |
M221 S100 ; reset extrude factor override percentage | |
G91 ; set positioning to relative | |
G1 F2400 E-3 ; retract to prevent stringing | |
G0 F3000 Z20 ; move z axis up | |
G90 ; set positioning to absolute | |
G1 X0 Y{machine_dim_y} F3000 ; present print | |
M106 S0 ; turn off fan | |
M104 S0 ; turn off hotend |
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
import { toPath } from './toPath'; | |
/** | |
* This is a drop-in replacement for _lodash/get_: | |
* | |
* Gets the value at _path_ of _object_. | |
* If the resolved value is _undefined_, the _defaultValue_ is returned in its place. | |
* | |
* @param {Object} object: The object to query. | |
* @param {Array|string} path: The path of the property to get. |
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
/* | |
-- FILE: SQLFinalExamMB.sql | |
-- AUTHOR: Marcus Bizal | |
-- DATE: 2015-07-29 | |
-- | |
-- NOTE: These queries use the Northwind sample database. | |
*/ | |
-- BEGIN SETUP -- | |
USE master; |
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
/* | |
-- FILE: SQLAssignment6MB.sql | |
-- AUTHOR: Marcus Bizal | |
-- DATE: 2015-07-22 | |
*/ | |
-- SETUP | |
USE master; | |
GO |
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
/* | |
-- FILE: SQLAssignment5MB.sql | |
-- AUTHOR: Marcus Bizal | |
-- DATE: 2015-07-14 | |
-- | |
-- NOTE: These queries use the Northwind sample database. | |
*/ | |
-- 1. | |
-- Find out how many orders were shipped late. An order is shipped late if the shipped date is later than the required date. Call the expression Shipped Late. |
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
/* | |
-- FILE: SQLAssignment4MB.sql | |
-- AUTHOR: Marcus Bizal | |
-- DATE: 2015-07-09 | |
-- | |
-- NOTE: These queries use the Northwind sample database. | |
*/ | |
-- 1. | |
-- Show the average price, lowest price and highest price for all products. Name the columns to match the function being used. |