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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>HTML Canvas Video</title> | |
| <style> | |
| video{ | |
| border: 4px solid cornflowerblue; | |
| } | |
| canvas{ |
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
| name: Continuous deploy | |
| on: | |
| push: | |
| branches: [master] | |
| jobs: | |
| serverless-deploy: | |
| runs-on: ubuntu-latest |
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
| a4b.amazonaws.com | |
| acm-pca.amazonaws.com | |
| acm.amazonaws.com | |
| alexa-appkit.amazon.com | |
| alexa-connectedhome.amazon.com | |
| amazonmq.amazonaws.com | |
| apigateway.amazonaws.com | |
| appflow.amazonaws.com | |
| application-autoscaling.amazonaws.com | |
| appstream.application-autoscaling.amazonaws.com |
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
| const PdfMake = require("pdfmake"); | |
| const fonts = { | |
| Helvetica: { | |
| normal: "Helvetica", | |
| bold: "Helvetica-Bold", | |
| italics: "Helvetica-Oblique", | |
| bolditalics: "Helvetica-BoldOblique", | |
| }, | |
| }; |
Hidden dependencies
Sarah Lim, Northwestern University
Update, September 2019: This Gist detailed an early idea which formed the basis for a major research project. For more information, you can read the resulting full paper, which received Best Paper Honorable Mention at UIST 2018. A tool based on this research is now available on Firefox Nightly.
What are hidden dependencies?
Hidden dependencies between CSS properties are a common source of beginner confusion. For instance, a user might write the following code in order to vertically align some text within a <div>:
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
| <template> | |
| <div class="c-code-block"> | |
| <div class="c-code-block__meta" contenteditable="false" v-if="editable"> | |
| <icon-btn | |
| class="c-code-block__action-icon" | |
| name="more" | |
| :dropdown-props="{ closeOnClick: false }" | |
| ref="icon" | |
| > | |
| <template v-slot:dropdown> |
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 (window, angular) { | |
| 'use strict'; | |
| var moduleName = "ngMaterialDatePicker"; | |
| var VIEW_STATES = { | |
| DATE: 0, | |
| HOUR: 1, | |
| MINUTE: 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
| #oby's program question 3. | |
| import sys | |
| from random import randint | |
| import math | |
| number_of_characters = 2 | |
| stop_condition = 1 | |
| while stop_condition is 1: | |
| print ('what is the name of character 1, type it and press enter when done') |
NewerOlder

