- A
- M
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
| /* | |
| * Programming Quiz: What do I Wear? (3-7) | |
| */ | |
| // change the values of `shirtWidth`, `shirtLength`, and `shirtSleeve` to test your code | |
| var shirtWidth = 26; | |
| var shirtLength = 33; | |
| var shirtSleeve = 9.63; | |
| if ((18 <= shirtWidth < 20) && (28 <= shirtLength < 29) && (8.13 <= shirtSleeve < 8.38)) { |
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
| /* | |
| * Programming Quiz - Checking Your Balance (3-5) | |
| */ | |
| // change the values of `balance`, `checkBalance`, and `isActive` to test your code | |
| var balance = 0; | |
| var checkBalance = false; | |
| var isActive = true; | |
| if (checkBalance === true) { | |
| if (balance > 0 && isActive === true) { |
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
| # See /usr/share/postfix/main.cf.dist for a commented, more complete version | |
| # Debian specific: Specifying a file name will cause the first | |
| # line of that file to be used as the name. The Debian default | |
| # is /etc/mailname. | |
| #myorigin = /etc/mailname | |
| smtpd_banner = $myhostname ESMTP $mail_name (Ubuntu) | |
| biff = no |
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
| var alley = { | |
| firstName: "Albert", | |
| lastName: "Coder", | |
| phoneNumber: "(650) 777-7777", | |
| email: "bob.jones@example.com" | |
| }; | |
| var sukh = { | |
| firstName: "Sukhi", | |
| lastName: "D", |
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
| -- MySQL dump 10.9 | |
| -- | |
| -- Host: localhost Database: materialsDB | |
| -- ------------------------------------------------------ | |
| -- Server version 4.1.18-log | |
| /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; | |
| /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; | |
| /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; | |
| /*!40101 SET NAMES utf8 */; |
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
| $res = $dbr->select( | |
| array( 'material', 'boiling_point' ), | |
| array( 'material_name','value' ), | |
| array( | |
| 'mat_id>0' | |
| ), | |
| __METHOD__, | |
| array(), | |
| array( 'boiling_point' => array( 'INNER JOIN', array( | |
| 'wiki_material.id=mat_id' ) ) ) |